/[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 1483 by bh, Thu Jul 24 17:53:21 2003 UTC revision 1609 by bh, Tue Aug 19 12:51:32 2003 UTC
# Line 1  Line 1 
1    2003-08-19  Bernhard Herzog  <[email protected]>
2    
3            * test/test_viewport.py (ViewPortTest): We don't use the
4            facilities of FileTestMixin so don't derive from it.
5            (TestViewportWithPostGIS): New class with tests for using a
6            viewport on a map with postgis layers.
7    
8    2003-08-19  Bernhard Herzog  <[email protected]>
9    
10            Add the db connection management to the session.
11    
12            * Thuban/Model/session.py (Session.__init__): New instance
13            variable db_connections
14            (Session.AddDBConnection, Session.DBConnections)
15            (Session.HasDBConnections, Session.CanRemoveDBConnection)
16            (Session.RemoveDBConnection): New methods to manage and query the
17            db connections managed by the session
18            (Session.OpenDBShapeStore): New method to open a shapestore from a
19            db connection
20    
21            * Thuban/Model/messages.py (DBCONN_REMOVED, DBCONN_ADDED): New
22            messages for the db connection handling in the session
23    
24            * test/test_postgis_session.py: New. test cases for the session's
25            db connection handling with postgis connections
26    
27    2003-08-19  Bernhard Herzog  <[email protected]>
28    
29            Add very basic postgis database support and the corresponding test
30            cases. The test cases require a PostgreSQL + postgis installation
31            but no existing database. The database will be created
32            automatically by the test cases
33    
34            * test/README: Add note about skipped tests and the requirements
35            of the postgis tests.
36    
37            * Thuban/Model/postgisdb.py: New. Basic postgis database support.
38    
39            * test/test_postgis_db.py: New. Test cases for the postgis
40            support.
41    
42            * Thuban/Model/wellknowntext.py: New. Parser for well-known-text
43            format
44    
45            * test/test_wellknowntext.py: New. Test cases for the
46            wellknowntext parser
47    
48            * test/postgissupport.py: New. Support module for tests involving
49            a postgis database.
50    
51            * test/support.py (execute_as_testsuite): Shut down the postmaster
52            if it's still running after the tests
53    
54            * Thuban/Model/data.py (RAW_WKT): New constant for raw data in
55            well known text format
56    
57    2003-08-19  Jan-Oliver Wagner <[email protected]>
58    
59            * Examples/simple_extensions/hello_world.py: New. Raises a Hello World
60            message dialog.
61    
62    2003-08-18  Bernhard Herzog  <[email protected]>
63    
64            * test/support.py (ThubanTestResult.printErrors): Indent the
65            reason for the skips in the output to make it a bit more readable.
66            (execute_as_testsuite): New helper function to run a test suite
67            and print some more information.
68            (run_tests): Use execute_as_testsuite to run the tests
69    
70            * test/runtests.py (main): Use execute_as_testsuite to run the
71            tests
72    
73    2003-08-18  Bernhard Herzog  <[email protected]>
74    
75            Fix some bugs in Thuban and the test suite that were uncovered by
76            changes introduced in Python 2.3:
77    
78            * Thuban/Model/table.py (DBFTable.__init__): Make sure the
79            filename is an absolute name
80    
81            * Thuban/Model/layer.py (RasterLayer.__init__): Make sure the
82            filename is an absolute name
83    
84            * test/test_save.py (SaveSessionTest.testRasterLayer): Use a
85            unique filename to save to and use the correct relative filename
86            in the expected output.
87            (SaveSessionTest.test_dbf_table): Use the correct relative
88            filename in the expected output.
89    
90            * test/test_layer.py (TestLayer.test_raster_layer): Update the
91            test to check whether the filename is absolute.
92    
93    2003-08-18  Jan-Oliver Wagner <[email protected]>
94    
95            * Thuban/UI/about.py (About.__init__): Added Silke Reimer.
96    
97    2003-08-15  Bernhard Herzog  <[email protected]>
98    
99            Change the way shapes are returned by a shape store. The
100            ShapesInRegion method returns an iterator over actual shape
101            objects instead of a list of shape ids.
102    
103            * Thuban/Model/data.py (ShapefileShape.ShapeID): New. Return shape
104            id.
105            (ShapefileStore.ShapesInRegion): Return an iterator over the
106            shapes which yields shape objects instead of returning a list of
107            shape ids
108            (ShapefileStore.AllShapes): New. Return an iterator over all
109            shapes in the shape store
110            (DerivedShapeStore.AllShapes): New. Like in ShapefileStore
111    
112            * Thuban/Model/layer.py (Layer.ShapesInRegion): Update
113            doc-string.
114    
115            * Thuban/UI/baserenderer.py
116            (BaseRenderer.layer_ids, BaseRenderer.layer_shapes): Rename to
117            layer_shapes and make it return an iterator containg shapes
118            instead of a list of ids.
119            (BaseRenderer.draw_shape_layer): Update doc-string; Adapt to
120            layer_shapes() change
121    
122            * Thuban/UI/renderer.py (ScreenRenderer.layer_ids)
123            (ScreenRenderer.layer_shapes): Rename as in BaseRenderer
124    
125            * Thuban/UI/viewport.py (ViewPort._find_shape_in_layer): Adapt to
126            changes in the ShapesInRegion return value.
127            (ViewPort._get_hit_tester): Remove commented out code
128    
129            * test/mockgeo.py (SimpleShapeStore.ShapesInRegion): Adapt to the
130            new return value.
131            (SimpleShapeStore.AllShapes): New. Implement this method too.
132    
133            * test/test_layer.py (TestLayer.test_arc_layer)
134            (TestLayer.test_polygon_layer, TestLayer.test_point_layer)
135            (TestLayer.test_point_layer_with_projection)
136            (TestLayer.test_derived_store): Adapt to changes in the
137            ShapesInRegion return value.
138    
139            * test/test_shapefilestore.py
140            (TestShapefileStoreArc.test_shapes_in_region)
141            (TestShapefileStorePolygon.test_shapes_in_region)
142            (TestShapefileStorePoint.test_shapes_in_region): Adapt to changes
143            in the ShapesInRegion return value.
144            (TestShapefileStorePoint.test_all_shapes)
145            (TestShapefileStoreArc.test_shape_shapeid): New tests for the new
146            methods
147    
148            * test/test_derivedshapestore.py
149            (TestDerivedShapeStore.test_shapes_in_region): Adapt to changes in
150            the ShapesInRegion return value.
151            (TestDerivedShapeStore.test_all_shapes)
152            (TestDerivedShapeStore.test_shape_shapeid): New tests for the new
153            methods
154    
155    2003-08-15  Bernhard Herzog  <[email protected]>
156    
157            Make the renderers deal correctly with raw vs. python level
158            representation of shape geometries
159    
160            * Thuban/UI/baserenderer.py (BaseRenderer.low_level_renderer):
161            Return a flag useraw in addition to the callable and the parameter
162            to indicate whether the callable can deal with the raw shape data
163            or uses the higher level python lists of coordinates. The callable
164            now should accept either the raw data or the return value of the
165            shape's Points() method.
166            (BaseRenderer.draw_shape_layer): Adapt to the low_level_renderer
167            change
168            (BaseRenderer.projected_points): Instead of the shape id use the
169            points list as parameter.
170            (BaseRenderer.draw_polygon_shape, BaseRenderer.draw_arc_shape)
171            (BaseRenderer.draw_point_shape): Adapt to projected_points()
172            change and accept the points list as parameter instead of the
173            shape id.
174    
175            * Thuban/UI/renderer.py (MapRenderer.low_level_renderer): Return
176            the useraw flag as required by the BaseRenderer
177            (ScreenRenderer.draw_shape_layer): Adapt to low-level renderer
178            changes.
179    
180            * test/test_baserenderer.py
181            (TestBaseRenderer.test_point_with_classification): New test for
182            rendering a map with classifications.
183    
184    2003-08-15  Bernhard Herzog  <[email protected]>
185    
186            * Thuban/UI/viewport.py (ViewPort.find_shape_at)
187            (ViewPort._find_shape_in_layer, ViewPort._find_shape_in_layer)
188            (ViewPort._get_hit_tester, ViewPort.projected_points)
189            (ViewPort._hit_point, ViewPort._hit_arc, ViewPort._hit_polygon)
190            (ViewPort._find_label_at): Split the find_shape_at method into
191            several new methods and use the functions in the hit-test module.
192    
193            * Thuban/UI/hittest.py: New module with Python-level hit-testing
194            functions
195    
196            * test/test_hittest.py: New. Test for the new hittest module
197    
198    2003-08-15  Bernhard Herzog  <[email protected]>
199    
200            * Thuban/Model/layer.py (Layer.ShapesInRegion): Apply the layer
201            projection to all corners of the bounding box to get a better
202            approximation of the projected bounding box
203    
204            * test/test_layer.py (TestLayer.test_point_layer_with_projection):
205            New. Test coordinate handling of a layer with a projection.
206            Catches the bug fixed in Layer.ShapesInRegion
207    
208    2003-08-15  Bernhard Herzog  <[email protected]>
209    
210            Move some of the mock objects in test_baserenderer into their own
211            module so they can easily be used from other tests
212    
213            * test/mockgeo.py: New test helper module with some mock objects
214            for geometry related things like shapes, shapestores and
215            projections.
216    
217            * test/test_mockgeo.py: New. Tests for the new helper module
218    
219            * test/test_baserenderer.py: Some of the mock-objects are in
220            mockgeo now.
221    
222    2003-08-12  Jan-Oliver Wagner <[email protected]>
223    
224            * Thuban/UI/about.py (About.__init__): Added Bj�rn Broscheit.
225    
226    2003-08-12  Bernhard Herzog  <[email protected]>
227    
228            * po/de.po: New. German translations by Bjoern Broscheit
229    
230    2003-08-12  Bernhard Herzog  <[email protected]>
231    
232            * Thuban/UI/projdialog.py (UnknownProjPanel._DoLayout): Translated
233            strings have to be one string literal.
234    
235    2003-08-11  Bernhard Herzog  <[email protected]>
236    
237            * test/support.py (FloatComparisonMixin.assertPointListEquals):
238            New. This method was used in various derived classes, but it's
239            better to have it here.
240    
241            * test/test_shapefilestore.py
242            (ShapefileStoreTests.assertPointListEquals): Removed. It's now in
243            FloatComparisonMixin
244    
245            * test/test_layer.py (TestLayer.assertPointListEquals): Removed.
246            It's now in FloatComparisonMixin
247    
248            * test/test_derivedshapestore.py
249            (TestDerivedShapeStore.assertPointListEquals): Removed. It's now
250            in FloatComparisonMixin
251    
252    2003-08-11  Bernhard Herzog  <[email protected]>
253    
254            * Thuban/UI/join.py (JoinDialog.OnJoin): Add missing space to
255            error message
256    
257    2003-08-08  Jan-Oliver Wagner <[email protected]>
258    
259            * Doc/manual/thuban-manual.xml: Now use authorgroup. Added revhistory
260            with version number.
261            Changed title to reflect version number of Thuban.
262    
263    2003-08-08  Jan-Oliver Wagner <[email protected]>
264    
265            * Thuban/UI/about.py (About.__init__): Reworked the hall of fame. Now
266            the list corresponds to the "About" web page.
267    
268    2003-08-08  Bernhard Herzog  <[email protected]>
269    
270            * Thuban/UI/projdialog.py (UTMProposeZoneDialog.dialogLayout):
271            Make sure translated strings are recognized as one string literal.
272    
273            * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog.dialogLayout):
274            Make sure translated strings are recognized as one string literal.
275    
276            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Make sure
277            translated strings are recognized as one string literal.
278    
279            * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
280            sure translated strings are recognized as one string literal.
281    
282    2003-08-07  Bernhard Herzog  <[email protected]>
283    
284            * Thuban/Model/data.py (DerivedShapeStore.RawShapeFormat): New.
285            Simply delegates to the original shapestore.
286    
287            * test/test_derivedshapestore.py
288            (TestDerivedShapeStore.test_raw_format): New. Test case for
289            DerivedShapeStore.RawShapeFormat
290    
291    2003-08-07  Bernhard Herzog  <[email protected]>
292    
293            Add raw data interface to shape objects.
294    
295            * Thuban/Model/data.py (ShapefileShape, Shape): Rname the shape
296            class to ShapefileShape which now holds shapefile specific
297            information.
298            (ShapefileShape.compute_bbox): Simplified to not cache any
299            information. The way this method is used that shouldn't matter
300            performance wise.
301            (ShapefileShape.RawData): New. Return the shapeid which is the raw
302            data format for shapes from shapefiles.
303            (ShapefileStore.RawShapeFormat): New. Return the raw datatype used
304            in the shape objects returned by a shapestore. For a
305            ShapefileStore this is always RAW_SHAPEFILE.
306            (RAW_PYTHON, RAW_SHAPEFILE): Constants for the RawShapeFormat
307            method.
308    
309            * test/test_shapefilestore.py
310            (TestShapefileStore.test_raw_format): New test to test the raw
311            format feature of shapes.
312    
313            * Thuban/Model/layer.py: Remove the unused import of Shape from
314            data. It was only there for interface compatibility but it's not
315            used inside of Thuban and the generic Shape class has gone away.
316    
317            * Thuban/UI/renderer.py (MapRenderer.low_level_renderer): Check
318            the raw data format and only use an optimized version of its a
319            shapefile.
320    
321    2003-08-07  Bernhard Herzog  <[email protected]>
322    
323            * test/test_baserenderer.py (SimpleShape): Shape class for the
324            tests.
325            (SimpleShapeStore.Shape): Use SimpleShape instead of
326            Thuban.Model.data.Shape to make the tests independed of the coming
327            changes.
328    
329    2003-08-07  Bernhard Herzog  <[email protected]>
330    
331            * test/support.py (SkipTest, ThubanTestResult, ThubanTestRunner)
332            (ThubanTestProgram): New classes that extend the respective
333            classes from unittest. These new version support skipping tests
334            under certain expected conditions. In the Thuban test suite we
335            uses this for tests that require the optional gdal support.
336            (run_tests): Use ThubanTestProgram instead of the unittest.main()
337    
338            * test/runtests.py (main): Use the new ThubanTestRunner instead of
339            the normal one from unittest
340    
341            * test/test_layer.py (TestLayer.test_raster_layer): If this test
342            is not run because gdal support isn't available report this to the
343            runner.
344    
345            * test/test_baserenderer.py
346            (TestBaseRenderer.test_raster_no_projection): Do not run this test
347            if gdal support isn't available and report this to the runner.
348    
349    2003-08-06  Bernhard Herzog  <[email protected]>
350    
351            Rearrange the renderers a bit, partly in preparation for changes
352            required for the postgis merge, partly to make it more testable.
353            Also make the representation of coordinates in Shapes more
354            consistent.
355    
356            * Thuban/UI/renderer.py (MapRenderer): Most of the code/methods in
357            this class is now in BaseRenderer. This class is now practically
358            only a specialization of BaseRenderer for rendering to an actual
359            wx DC.
360            (ScreenRenderer.draw_shape_layer): Use self.low_level_renderer()
361            to get the shapetype specific rendering functions.
362    
363            * Thuban/UI/baserenderer.py: New file with the basic rendering
364            logic. The code in this file is completely independend of wx.
365            (BaseRenderer): Class with the basic rendering logic
366    
367            * test/test_baserenderer.py: New. Test cases for BaseRenderer
368    
369            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
370            error_on_redraw to guard agains endless loops and stack overflows
371            when there's a bug in the rendering code that raises exceptions.
372            (MapCanvas.OnIdle, MapCanvas._do_redraw): Split the actual
373            rendering into a separate method _do_redraw so that error handling
374            is a bit easier. When an exception occurs, set error_on_redraw to
375            true. When it's true on entry to OnIdle do nothing and return
376            immediately.
377    
378            * Thuban/Model/data.py (ShapefileStore.Shape): For consistency, a
379            Shape object will always have the coordinates as a list of list of
380            coordinate pairs (tuples).
381            (Shape.compute_bbox): Adapt to new representation.
382    
383            * Thuban/UI/viewport.py (ViewPort.find_shape_at)
384            (ViewPort.LabelShapeAt): Adapt to new coordinate representation in
385            Shape objects.
386    
387            * test/test_shapefilestore.py
388            (ShapefileStoreTests.assertFloatTuplesEqual)
389            (ShapefileStoreTests.assertPointListEquals): Rename to
390            assertPointListEquals and change purpose to checking equality of
391            the lists returned by Shape.Points().
392            (TestShapefileStoreArc.test_shape)
393            (TestShapefileStorePolygon.test_shape)
394            (TestShapefileStorePoint.test_shape): Use the new
395            assertPointListEquals instead of assertFloatTuplesEqual
396    
397            * test/test_layer.py (TestLayer.assertFloatTuplesEqual)
398            (TestLayer.assertPointListEquals): Rename to assertPointListEquals
399            and change purpose to checking equality of the lists returned by
400            Shape.Points().
401            (TestLayer.test_arc_layer, TestLayer.test_arc_layer)
402            (TestLayer.test_polygon_layer, TestLayer.test_point_layer)
403            (TestLayer.test_derived_store): Use the new assertPointListEquals
404            instead of assertFloatTuplesEqual
405    
406            * test/test_derivedshapestore.py
407            (TestDerivedShapeStore.assertFloatTuplesEqual)
408            (TestDerivedShapeStore.assertPointListEquals): Rename to
409            assertPointListEquals and change purpose to checking equality of
410            the lists returned by Shape.Points().
411            (TestDerivedShapeStore.test_shape): Use the new
412            assertPointListEquals instead of assertFloatTuplesEqual
413    
414    2003-08-06  Jan-Oliver Wagner <[email protected]>
415    
416            * Thuban/UI/projdialog.py (UTMPanel._OnPropose): Added test for
417            a bounding box. A dialog is raised in case, no bounding box
418            is found. This fixes bug #2043:
419            https://intevation.de/rt/webrt?serial_num=2043
420    
421    2003-08-05  Bernhard Herzog  <[email protected]>
422    
423            * Thuban/Model/color.py (Color.__repr__): Make the repr of a color
424            object look like a Color instantiation. Formerly it looked like a
425            tuple.
426    
427            * test/test_color.py (TestColor.test_repr)
428            (TestColor.test_equality, TestColor.test_inequality): New. test
429            some more apects of the Color class
430            (TestTransparent.test_repr, TestTransparent.test_hex)
431            (TestTransparent.test_equality): New. Test cases for the
432            Transparent object.
433    
434    2003-08-04  Jan-Oliver Wagner <[email protected]>
435    
436            * Doc/manual/thuban-manual.xml: a number of small improvements.
437            The resulting file is the version submitted for GREAT-ER II.
438    
439    2003-08-01  Bernhard Herzog  <[email protected]>
440    
441            * Thuban/UI/resource.py, Thuban/UI/projdialog.py,
442            Thuban/UI/join.py, Thuban/UI/classgen.py, Thuban/UI/about.py,
443            Thuban/Model/resource.py: Insert cvs keywords and doc-strings.
444    
445            * Thuban/UI/common.py: Insert cvs keywords and doc-strings.
446            (Color2wxColour, wxColour2Color, ThubanBeginBusyCursor)
447            (ThubanEndBusyCursor): Add doc-strings
448    
449    2003-08-01  Bernhard Herzog  <[email protected]>
450    
451            First step towards PostGIS integration. More abstraction by movin
452            more code from the layer to the shapestore. More methods of the
453            layer are now simply delegated to the equivalent method of the
454            shapestore. The SHAPETYPE_* constants are now in data not in
455            layer.
456    
457            * Thuban/Model/data.py (SHAPETYPE_POLYGON, SHAPETYPE_ARC)
458            (SHAPETYPE_POINT, Shape): Move these constants and classes from
459            layer.py to data.py
460            (ShapefileStore.__init__): More Initialization for the new methods
461            and functionality.
462            (ShapefileStore.ShapeType, ShapefileStore.NumShapes)
463            (ShapefileStore.BoundingBox, ShapefileStore.ShapesInRegion)
464            (ShapefileStore.Shape): New methods that were formerly implemented
465            in the layer.
466            (DerivedShapeStore.Shape, DerivedShapeStore.ShapesInRegion)
467            (DerivedShapeStore.ShapeType, DerivedShapeStore.NumShapes)
468            (DerivedShapeStore.BoundingBox): New. DerivedShapeStore
469            equivalents of the new shape methods. These versions are simply
470            delegated to the original shapstore.
471    
472            * Thuban/Model/layer.py (SHAPETYPE_POLYGON, SHAPETYPE_ARC)
473            (SHAPETYPE_POINT, Shape): Removed. They're now in data.py
474            (Layer.SetShapeStore): Removed the initializatin of instance
475            variables that were needed for the stuff that's now in
476            ShapefileStore
477            (Layer.BoundingBox, Layer.NumShapes, Layer.ShapeType)
478            (Layer.Shape, Layer.ShapesInRegion): Simply delegate to the
479            shapestore.
480    
481            * Thuban/UI/classifier.py, Thuban/UI/renderer.py,
482            Thuban/UI/viewport.py: Import the SHAPETYPE_* constants from data
483            instead of layer.
484    
485            * test/test_shapefilestore.py: New. Tests for ShapefileStore.
486    
487            * test/test_derivedshapestore.py: New. Tests for DerivedShapeStore.
488    
489            * test/test_layer.py: Import the SHAPETYPE_* constants from data
490            instead of layer.
491            (TestLayer.test_derived_store): Remove the test for the exception
492            when instantiating the DerivedShapeStore with an incompatible
493            table which is now in test_derivedshapestore.py. Add some more
494            tests of the layer methods to determine whether they work for a
495            DerivedShapeStore as well.
496    
497    2003-07-31  Jonathan Coles   <[email protected]>
498    
499            * Doc/manual/thuban-manual.xml: Fix the list of required packages
500            by just listing the name and where they can be found.
501    
502    2003-07-31  Frank Koormann   <[email protected]>
503    
504            * Doc/manual/thuban-manual.xml:
505            Changed the screenshot elements to figure.
506            Changed some variablelist elements to itemizedlist.
507            Added section on GDAL formats.
508    
509    2003-07-31  Jonathan Coles   <[email protected]>
510    
511            * Doc/manual/thuban-manual.xml: Added a few sentences about
512            the Fix Border Color option when generating classes.
513    
514    2003-07-30  Jonathan Coles   <[email protected]>
515    
516            * Thuban/Model/classgen.py: Add docstrings. Rename specific
517            Ramp instances to use lower_case_style.
518    
519            * Thuban/UI/classgen.py: Use renamed Ramp instances.
520            
521            * Thuban/UI/classifier.py: Add docstrings.
522    
523            * Thuban/UI/dock.py: Add docstrings.
524    
525            * test/test_classgen.py: Use renamed Ramp instances.
526    
527    2003-07-30  Bernhard Herzog  <[email protected]>
528    
529            * Thuban/Lib/connector.py (QueueingPublisher): Removed. This class
530            was never used in Thuban.
531    
532    2003-07-30  Bernhard Herzog  <[email protected]>
533    
534            * Thuban/UI/join.py (JoinDialog.__init__): Use the table's Title()
535            method directly instead of going through the transient_table
536            method. This faster because transient_table may force the copy of
537            a DBF file into the transient database and setting a table's title
538            doesnm't affect the title of the associated transient table, so
539            this fixes RT #2042
540    
541            * Thuban/UI/main.py (__version__): Don't import the already
542            removed show_exception_dialog.
543    
544    2003-07-29  Jonathan Coles   <[email protected]>
545    
546            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
547            Put back this method and remove the equivalent function since we
548            are setting the exception hook from within this class (OnInit).
549    
550    2003-07-29  Jonathan Coles   <[email protected]>
551    
552            * Doc/manual/images/5_2_custom_ramp.png,
553            Doc/manual/images/5_2_quantiles.png,
554            Doc/manual/images/5_2_uniform_dist.png,
555            Doc/manual/images/5_2_unique_values.png,
556            Doc/manual/images/8_int_error.png: New screen shots.
557    
558            * Doc/manual/thuban-manual.xml: Fixed typos and wording, clarified
559            some points, and added more screen shots.
560    
561    2003-07-29  Bernhard Herzog  <[email protected]>
562    
563            * Thuban/Model/data.py: Remove the now unused import of warnings
564    
565    2003-07-29  Bernhard Herzog  <[email protected]>
566    
567            * Thuban/Model/data.py (SimpleStore): Removed. This class has been
568            deprecated since before the 0.8 release and isn't used in Thuban
569            itself anymore.
570    
571            * Thuban/Model/transientdb.py: Remove some unnecessary imports
572    
573    2003-07-29  Jonathan Coles   <[email protected]>
574    
575            * Thuban/UI/application.py (ThubanApplication.OnInit): set the
576            python exception hook here so that we are sure to catch any
577            Thuban exception that happen during initialization.
578    
579            * Thuban/UI/main.py (main): Don't set the exception hook here,
580            it will get set in ThubanApplication.OnInit.
581    
582    2003-07-29  Jonathan Coles   <[email protected]>
583                                                                                
584            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
585            Removed and called it show_exception_dialog() so that the exception
586            handler can be set before the class is created.
587                                                                                
588            * Thuban/UI/main.py (main): Install the exception handler before
589            a ThubanApplication is created.
590                                                                                    
591    2003-07-29  Bernhard Herzog  <[email protected]>
592    
593            * po/it.po: New. Italian translation by Maurizio Napolitano
594    
595            * po/ru.po: New. Russian translation by Alex Shevlakov
596    
597    2003-07-29  Frank Koormann   <[email protected]>
598    
599            * Doc/manual/thuban-manual.xml: Extended section on supported
600            projections.
601            
602    2003-07-29  Frank Koormann   <[email protected]>
603    
604            * Doc/manual/thuban-manual.xml: gaspell-checked.
605    
606    2003-07-29  Jonathan Coles   <[email protected]>
607    
608            * Doc/manual/images/3_5_legend.png: Added border to improve look
609            on white background.
610    
611    2003-07-29  Jonathan Coles   <[email protected]>
612    
613            * Doc/manual/thuban-manual.xml: Fixed grammar and typos. Added
614            descriptions for the legend toolbar.
615    
616            * Doc/manual/images/4_2_raster_layer_properties.png: Removed
617            cursor from dialog box.
618    
619    2003-07-28  Jonathan Coles   <[email protected]>
620    
621            * Doc/manual/thuban-manual.xml: More screenshots and more chapters.
622    
623            * Doc/manual/images/2_4_session_tree.png,
624            Doc/manual/images/3_5_legend.png, Doc/manual/images/3_rename_map.png,
625            Doc/manual/images/4_2_layer_properties.png,
626            Doc/manual/images/4_2_raster_layer_properties.png,
627            Doc/manual/images/5_3_genclass.png,
628            Doc/manual/images/5_classification.png,
629            Doc/manual/images/6_projection.png,
630            Doc/manual/images/7_1_table_view.png,
631            Doc/manual/images/7_2_5_join.png: New screenshots.
632    
633    2003-07-24  Jonathan Coles   <[email protected]>
634    
635            * Doc/manual/thuban-manual.xml: Chapter on Projection Management.
636    
637    2003-07-24  Jonathan Coles   <[email protected]>
638    
639            * Doc/manual/thuban-manual.xml: Added EPS images and wrote
640            chapter on Layer Management.
641    
642            * Doc/manual/Makefile: New. Makefile to generate all formats for the
643            manual and images.
644    
645  2003-07-24  Bernhard Herzog  <[email protected]>  2003-07-24  Bernhard Herzog  <[email protected]>
646    
647          * Thuban/Model/range.py, Thuban/version.py: Remove the #! line as          * Thuban/Model/range.py, Thuban/version.py: Remove the #! line as

Legend:
Removed from v.1483  
changed lines
  Added in v.1609

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26