/[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 1847 by bh, Tue Oct 21 10:50:07 2003 UTC revision 1984 by bh, Thu Nov 27 15:57:39 2003 UTC
# Line 1  Line 1 
1    2003-11-27  Bernhard Herzog  <[email protected]>
2    
3            Corect some bounding box projection problems
4    
5            * Thuban/Model/proj.py (Projection.InverseBBox): New. Inverse
6            version of ForwardBBox
7            (Projection._transform_bbox): New. common implementation of
8            ForwardBBox and InverseBBox
9            (Projection.ForwardBBox): Use _transform_bbox.
10    
11            * test/test_proj.py (TestProjection.test): Add test for
12            InverseBBox
13    
14            * Thuban/Model/layer.py (Layer.LatLongBoundingBox)
15            (Layer.ShapesBoundingBox, RasterLayer.LatLongBoundingBox): Use the
16            new InverseBBox method to determine the unprojected bounding box
17            (Layer.ShapesInRegion): Use the ForwardBBox method to project the
18            bbox.
19    
20            * test/test_layer.py (TestLayer.test_point_layer_with_projection):
21            Removed.
22            (TestLayer.test_arc_layer_with_projection): New. This test is
23            better able to test whether bounding boxes are projected correctly
24            than test_point_layer_with_projection
25    
26    2003-11-25  Bernhard Herzog  <[email protected]>
27    
28            * Thuban/UI/about.py (About.__init__): Make sure we have ASCII
29            source code.
30    
31    2003-11-25  Bernhard Herzog  <[email protected]>
32    
33            * Thuban/Model/layer.py (Layer.__getattr__): Removed. It was only
34            there for backwards compatibility and all code relying on that
35            should have been updated by now.
36    
37    2003-11-25  Bernhard Herzog  <[email protected]>
38    
39            * test/test_load.py (TestClassification.test): Add the missing
40            round trip test.
41            (TestClassification.file_contents): Update to the newest file
42            format
43    
44    2003-11-25  Bernhard Herzog  <[email protected]>
45    
46            Add very experimental (and possibly dangerous) extension to draw
47            polygons:
48    
49            * Extensions/drawshape/README: New. Brief installation
50            instructions
51    
52            * Extensions/drawshape/drawshape.py: New. Implementation of the
53            drawshape extensions
54    
55            * Extensions/drawshape/patch.diff: Patch to apply before the
56            extension can be used.
57    
58    2003-11-24  Bernhard Herzog  <[email protected]>
59    
60            * Thuban/Model/data.py (ShapefileStore._open_shapefile)
61            (ShapefileStore.__init__): Factor opening the shapefile into a
62            separate method (the new _open_shapefile). This makes the code a
63            bit more readable but the real reason is that it makes some evil
64            hacks easier. :-)
65    
66    2003-11-24  Bernhard Herzog  <[email protected]>
67    
68            * Thuban/Model/load.py (SessionLoader.check_attrs): If no
69            converter is specified for an attribute assume it's a string
70            containing only Latin1 characters. Update doc-string accordingly.
71            This change should fix many places where unicode objects might
72            accidentally enter Thuban.
73    
74            * test/test_load.py (TestNonAsciiColumnName): New test to check
75            what happens with column names in DBF files that contain non-ascii
76            characters
77    
78    2003-11-21  Bernhard Herzog  <[email protected]>
79    
80            Enable the experimental attribute editing again and introduce a
81            command line switch to actually activate it
82    
83            * Thuban/UI/main.py (options): New. Container for options set on
84            the commmand line
85            (main): Add the --enable-attribute-editing flag.
86    
87            * Thuban/UI/identifyview.py (IdentifyView.__init__): If attribute
88            editing is enabled use the grid ctrl which allows editing of the
89            values
90    
91            * Thuban/Model/transientdb.py (AutoTransientTable.write_record):
92            New. Just delegate this to the underlying table.
93    
94    2003-11-20  Bernhard Herzog  <[email protected]>
95    
96            * test/test_proj.py (ProjFileReadTests.test_read_unreadable_file):
97            Skip this test if run under non-posix systems since it only works
98            there
99    
100    2003-11-19  Bernhard Herzog  <[email protected]>
101    
102            * Thuban/Model/resource.py: Rework the way gdal support is
103            determined so that we can give a reason in the about why gdal is
104            not supported.
105            (gdal_support_status): New. Variable holding a string with the
106            reason for no gdal support
107    
108            * Thuban/UI/about.py (About.__init__): Add the reason why gdal is
109            not supported to the message
110    
111    2003-11-19  Bernhard Herzog  <[email protected]>
112    
113            Remove the old table interface and its test cases
114    
115            * Thuban/Model/table.py (OldTableInterfaceMixin): Removed.
116            (DBFTable, MemoryTable): Do not derive from OldTableInterfaceMixin
117            anymore
118    
119            * Thuban/Model/transientdb.py (TransientTableBase)
120            (AutoTransientTable): Do not derive from OldTableInterfaceMixin
121            anymore
122    
123            * test/test_table.py: Removed since the old interface it tests is
124            gone.
125    
126            * test/runtests.py (main): The old table interface is gone and
127            with it the deprecation warnings so remove the code that turns
128            these warnings into errors
129    
130    2003-11-19  Bernhard Herzog  <[email protected]>
131    
132            * test/test_table.py: Revert to revision 1.5 again. Changing the
133            tests to use the new table interface is completely wrong since the
134            whole purpose of the tests in this module is to test the old
135            interface.
136    
137    2003-11-18  Bernhard Herzog  <[email protected]>
138    
139            * Thuban/Model/postgisdb.py (PostGISConnection.MatchesParameters):
140            New. Test whether the connection matches a set of connection
141            parameters
142    
143            * Thuban/UI/dbdialog.py (DBFrame.conns_changed): Fix doc-string
144            (DBFrame.OnAdd): Use the new MatchesParameters method when looking
145            for existing connections with the same parameters and break out of
146            the loop correctly.
147    
148            * test/test_postgis_db.py (TestBriefDescription)
149            (TestPostGISSimple.test_brief_description): Rename
150            TestBriefDescription to TestPostGISSimple and the test method to
151            test_brief_description so that we can add more test methods.
152            (TestPostGISSimple.test_matches_parameters): New. Test the new
153            MatchesParameters method
154    
155    2003-11-18  Bernhard Herzog  <[email protected]>
156    
157            * Thuban/Lib/connector.py (Publisher): Introduce a new flag,
158            _was_destroyed, to indicate whether an publisher instance has
159            already been destroyed.
160            (Publisher.Unsubscribe): Only disconnect if the publisher has not
161            been destroyed yet.
162            (Publisher.Destroy): Set the _was_destroyed flag to true.
163    
164            * test/test_connector.py
165            (TestPublisher.test_unsubscribe_after_destroy): New. Test that
166            calling Unsubscribe after Destroy doesn't raise an exception
167    
168    2003-11-14  Bernhard Herzog  <[email protected]>
169    
170            * Thuban/UI/identifyview.py (IdentifyView.selected_shape): Fix
171            typo in doc-string
172    
173    2003-11-13  Bernhard Herzog  <[email protected]>
174    
175            Quote table and column names properly for postgis.
176    
177            * Thuban/Model/postgisdb.py (quote_identifier): New. Function to
178            quote an identifier for use in an sql statement
179            (PostGISColumn.__init__): Add the quoted_name attribute
180            (PostGISTable.__init__): New instance variable quoted_tablename
181            (PostGISTable._fetch_table_information): Use the quoted table
182            name. New isntance variable quoted_geo_col with a quoted version
183            of geometry_column
184            (PostGISTable.NumRows, PostGISTable.RowIdToOrdinal)
185            (PostGISTable.RowOrdinalToId): Use the quoted table name
186            (PostGISTable.ReadValue, PostGISTable.ValueRange)
187            (PostGISTable.UniqueValues, PostGISTable.SimpleQuery)
188            (PostGISShapeStore.BoundingBox, PostGISShapeStore.Shape)
189            (PostGISShapeStore.AllShapes, PostGISShapeStore.ShapesInRegion):
190            Use quoted table and column names
191    
192            * test/test_postgis_db.py (TestPostGISSpecialCases)
193            (TestPostGISIgnoredColumns): Rename the class to
194            TestPostGISSpecialCases because that better describes the new
195            cases
196            (TestPostGISSpecialCases.test_unsupported_types)
197            (TestPostGISSpecialCases.test): Rename the method to
198            test_unsupported_types because we need a more descriptive name now
199            that there are more methods
200            (TestPostGISSpecialCases.test_table_name_quoting)
201            (TestPostGISSpecialCases.test_column_name_quoting)
202            (TestPostGISSpecialCases.test_shapestore_name_quoting): New test
203            cases to test quoting of table and column names in PostGISTable
204            and PostGISShapeStore
205    
206            * test/postgissupport.py
207            (skip_if_addgeometrycolumn_does_not_use_quote_ident): New. Skip if
208            AddGeometryColumn desn't support table or column names with sapces
209            or double quotes
210    
211    2003-11-12  Jan-Oliver Wagner <[email protected]>
212    
213            * Extensions/wms/__init__.py: New: Init to make this
214            directory a package.
215    
216            * Extensions/wms/wms.py: New: Provide layers via OGC WMS.
217    
218    2003-11-11  Bernhard Herzog  <[email protected]>
219    
220            * Thuban/Model/resource.py (EPSG_DEPRECATED_PROJ_FILE): New.
221            Constant for the file woth deprecated epsg projections
222            (get_system_proj_file): Update doc-string
223    
224            * Thuban/UI/projdialog.py (ProjFrame.build_dialog): Add a space
225            above the EPS widgets, introduce a check box for the deprecated
226            eps projections and a label for the epsg widgets
227            (ProjFrame._OnShowEPSG): Handle the deprecated EPSG projections
228            too
229    
230    2003-11-11  Bernhard Herzog  <[email protected]>
231    
232            Avoid warnings when run under Python 2.3
233    
234            * Thuban/UI/baserenderer.py (BaseRenderer.draw_point_shape)
235            (BaseRenderer.draw_label_layer): Coordinates must be ints.
236    
237            * Thuban/UI/renderer.py (MapRenderer.make_point): Turn this into a
238            real method so that we can convert to int.
239            (MapRenderer.label_font): The font size mist be an int.
240    
241            * Thuban/UI/common.py (Color2wxColour): The color values must be
242            ints. Also, remove the unnecessary asserts.
243    
244            * test/test_load_0_8.py (TestUnicodeStrings.file_contents)
245            (TestUnicodeStrings.test): Python source code should not contain
246            non-ascii characters unless an encoding is specified in the file.
247            Therefore use \x escapes in the string literals for non-ascii
248            characters.
249    
250    2003-11-11  Bernhard Herzog  <[email protected]>
251    
252            * Thuban/Model/resource.py (get_system_proj_file): Add a filename
253            parameter so that this function can be used for all proj files in
254            Resource/Projections
255            (DEFAULT_PROJ_FILE, EPSG_PROJ_FILE): New. Predefined filenames for
256            get_system_proj_file
257    
258            * Thuban/UI/projdialog.py (ProjFrame.__init__): Instead of one
259            ProjFile self.__sysProjFile use a dictionary of system ProjFile
260            objects self._sys_proj_files
261            (ProjFrame.build_dialog): Adapt to the new changes in the
262            ProjectionList constructor. Add a check button to toggle whether
263            EPSG projections are shown
264            (ProjFrame._OnShowEPSG): New. Handler for the epsg check button
265            events.
266            (ProjFrame.load_user_proj, ProjFrame.load_system_proj): Only show
267            the busy cursor if the files have not yet been loaded by the
268            dialog.
269            (ProjFrame.load_system_proj): Add a parameter for the name of the
270            proj file. Maintain the dictionary of system projections
271            self._sys_proj_files
272    
273            * Thuban/UI/projlist.py (ProjectionList): Merge the system_projs,
274            user_projs parameters into one parameter proj_files which is a
275            list of proj files.
276            (ProjectionList._subscribe_proj_files)
277            (ProjectionList._unsubscribe_proj_files): New. Move
278            subscription/unsubscription of projfile messages to separate
279            methods
280            (ProjectionList.Destroy): The unsubscribe is now done in
281            _unsubscribe_proj_files
282            (ProjectionList.update_projections): We now have a list of proj
283            file objects
284            (ProjectionList.SetProjFiles): New method to set a new list of
285            proj file objects
286    
287            * test/test_proj.py (ProjFileReadTests.test_get_system_proj_file):
288            Specify explicitly which system proj file to load.
289    
290    2003-11-11  Bernhard Herzog  <[email protected]>
291    
292            * Thuban/Model/load.py (SessionLoader.Destroy): New. Clear all
293            instance variables to cut cyclic references. The GC would have
294            collected the loader eventually but it can happen that it doesn't
295            run at all until thuban is closed (2.3 but not 2.2 tries a bit
296            harder and forces a collection when the interpreter terminates)
297            (load_session): Call the handler's Destroy method to make sure
298            that it gets garbage collected early. Otherwise it will be
299            collected very late if at all and it holds some references to e.g.
300            shapestores and the session which can lead to leaks (of e.g. the
301            temporary files)
302    
303            * test/test_load.py (TestSingleLayer.test_leak): New. test for the
304            resource leak in load_session
305    
306    2003-11-10  Bernhard Herzog  <[email protected]>
307    
308            * Thuban/UI/baserenderer.py: Add a way to specify how layers in
309            extensions are to be rendered.
310            (_renderer_extensions): New. List with renderer for layers in
311            extensions
312            (add_renderer_extension): New. Add a renderer extension
313            (init_renderer_extensions): New. Init the renderer extensions
314            (BaseRenderer.render_map_incrementally): Search
315            _renderer_extensions for how to draw unknown layer types
316            (BaseRenderer.draw_raster_data): Add format parameter so that
317            formats other than BMP can be drawn
318            (BaseRenderer.draw_raster_layer): Pass an explicit format to
319            draw_raster_data
320    
321            * Thuban/UI/renderer.py (raster_format_map): New. Mapping form the
322            strings of the format parameter of draw_raster_data method to wx
323            constants
324            (MapRenderer.draw_raster_data): Add the format parameter and use
325            raster_format_map to map it to the right wxwindows constant for
326            wxImageFromStream
327    
328            * test/test_baserenderer.py (SimpleRenderer.draw_raster_data): Add
329            the format parameter and record it
330            (TestBaseRenderer.test_raster_no_projection): check the format
331            paramter of the draw_raster_data method
332            (TestBaseRenderer.test_renderer_extension): New. Test the renderer
333            extension facility
334    
335    2003-11-07  Bernhard Herzog  <[email protected]>
336    
337            Tweak the usage of the sqlite database to make common use cases
338            more responsive. In most cases copying the data to the sqlite
339            database takes so long that using sqlite doesn't have enough
340            advantages.
341    
342            * Thuban/Model/transientdb.py (TransientTableBase.ValueRange): Add
343            comments about performance and query the min and max in separate
344            statements because only that way will indexes be used.
345            (TransientTableBase.UniqueValues): Add some comments about
346            performance.
347            (AutoTransientTable.ValueRange, AutoTransientTable.UniqueValues):
348            Do not copy the data to the transient DB but use the transient
349            copy if it exists. See the new comments for the performance trade
350            offs
351    
352            * test/test_transientdb.py
353            (TestTransientTable.test_auto_transient_table): Make sure that the
354            data is copied to the transient database at some point.
355    
356    2003-11-03  Bernhard Herzog  <[email protected]>
357    
358            * Thuban/Model/data.py (ShapefileStore.ShapesInRegion): Bind some
359            globals to locals so that it's a bit faster
360    
361    2003-11-03  Bernhard Herzog  <[email protected]>
362    
363            * Thuban/UI/baserenderer.py
364            (BaseRenderer.draw_shape_layer_incrementally): Use the ReadValue
365            method. ReadValue is faster than ReadRowAsDict since it only reads
366            one cell especially now that the dbf file objects actually
367            implement it.
368    
369            * Thuban/Model/table.py (DBFTable.ReadValue): Use the new
370            read_attribute method of the dbf objects
371    
372    2003-11-03  Bernhard Herzog  <[email protected]>
373    
374            * Extensions/profiling/profiling.py (popup_dialog_box): New config
375            variable to indicate whether the result should be shown in a
376            dialog box
377            (profile_screen_renderer, time_screen_renderer): Only show a
378            dialog box if popup_dialog_box is true.
379            (profile_screen_renderer): Flush stdout after the printing the
380            first part of the "profiling..." message
381    
382            * Thuban/UI/baserenderer.py
383            (BaseRenderer.draw_shape_layer_incrementally): Cache the pens and
384            brushes for the groups so that they're not created over and over
385            again
386    
387            * Thuban/Model/classification.py (Classification.__getattr__)
388            (Classification._compile_classification)
389            (Classification._clear_compiled_classification): New. Methods to
390            manage a 'compiled' representation of the classification groups
391            which is created on demand
392            (Classification.InsertGroup, Classification.RemoveGroup)
393            (Classification.ReplaceGroup): reset the compiled representation
394            (Classification.FindGroup): Use the compiled representation to
395            find the matching group
396            (ClassGroupRange.GetRangeTuple): New. Return the range as a tuple
397    
398    2003-10-31  Bernhard Herzog  <[email protected]>
399    
400            * Thuban/Model/classification.py (Classification.SetDefaultGroup):
401            Send a CLASS_CHANGED message
402            (Classification.RemoveGroup): Send a CLASS_CHANGED message and do
403            not return the removed group since it wasn't used.
404    
405            * test/test_classification.py
406            (TestClassification.test_set_default_group): New. Test the
407            SetDefaultGroup method
408            (TestClassification.test_insert_group): New. Test the InsertGroup
409            method
410            (TestClassification.test_remove_group): New. Test the RemoveGroup
411            method
412            (TestClassification.test_replace_group): New. Test the
413            ReplaceGroup method
414    
415    2003-10-31  Bernhard Herzog  <[email protected]>
416    
417            * test/test_classification.py (TestClassification.setUp):
418            Subscribe to the CLASS_CHANGED messages
419            (TestClassification.tearDown): New. Destroy the classification
420            properly
421            (TestClassification.test_defaults): Add tests for the default line
422            width and whether no messages were sent yet
423            (TestClassification.test_set_default_properties): Add tests for
424            messages and setting the default line width
425            (TestClassification.test_add_singleton)
426            (TestClassification.test_add_range)
427            (TestClassification.test_multiple_groups): Add tests for messages
428    
429    2003-10-31  Bernhard Herzog  <[email protected]>
430    
431            Some more refactoring in preparation for new tests:
432    
433            * test/test_classification.py (TestClassification.setUp): New.
434            Instantiate the classification here. Update the test methods
435            accordingly.
436            (TestClassification.test_multiple_groups): Make sure that the two
437            singletons matching 1 are considered different.
438    
439    2003-10-31  Bernhard Herzog  <[email protected]>
440    
441            * test/test_classification.py (red, green, blue): New. These
442            constants were used in several cases. Update the relevant methods.
443            (TestClassification.test_defaults)
444            (TestClassification.test_set_default_properties)
445            (TestClassification.test_add_singleton)
446            (TestClassification.test_add_range)
447            (TestClassification.test_multiple_groups)
448            (TestClassification.test_deepcopy): New. These were formerly all
449            part of the single method test.
450            (TestClassification.test_deepcopy): Removed.
451            (TestClassIterator): Removed. The test case is now a method of
452            TestClassification since it tests part of the public interface of
453            Classification
454            (TestClassification.test_iterator): New. Used to be
455            TestClassIterator effectively
456    
457    2003-10-31  Jan-Oliver Wagner <[email protected]>
458    
459            GUIfied the functions of the profiling extension.
460    
461            * /Extensions/profiling/__init__.py: New: Init to make this
462            directory a package.
463    
464            * Extensions/profiling/profiling.py: Moved menu entries to
465            the Extensions menu. Applied _() for strings.
466            (profile_screen_renderer): Catch the detailed printout and present
467            it in a dialog.
468            (time_screen_renderer): Raise a dialog to present the result instead
469            of printing it to stdout.
470    
471    2003-10-31  Bernhard Herzog  <[email protected]>
472    
473            * test/test_classification.py (TestClassGroupProperties)
474            (TestClassGroup, TestClassGroupDefault, TestClassGroupRange)
475            (TestClassGroupSingleton, TestClassIterator, TestClassification):
476            Split TestClassification into several classes, one for each class
477            being tested. TestClassification itself now only tests
478            Classification. This split makes changes to the tests a bit easier
479    
480    2003-10-31  Bernhard Herzog  <[email protected]>
481    
482            * Extensions/profiling/profiling.py: New. Extension to measure
483            Thuban performance
484    
485    2003-10-31  Frank Koormann <[email protected]>
486    
487            Added two items to legend popup menu: Remove Layer and Show Layer Table
488    
489            * Thuban/UI/legend.py (LegendPanel._OnRemoveLayer,
490            LegendPanel._OnShowTable): New event handlers, call the corresponding
491            mainwindow methods.
492            (LegendTree._OnRightClick): Added items to popup menu.
493    
494    2003-10-30  Bernhard Herzog  <[email protected]>
495    
496            * Thuban/UI/dialogs.py (ThubanFrame.__init__): Handle
497            EVT_WINDOW_DESTROY
498            (ThubanFrame.OnDestroy): New. Handler for EVT_WINDOW_DESTROY. Does
499            nothing but is convenient for the derived classes.
500    
501            * Thuban/UI/tableview.py
502            (TableFrame.OnDestroy, LayerTableFrame.OnDestroy): New.
503            Unsubscribe the messages here not in OnClose because that might
504            get called multiple times. Fixes RT #2196
505            (TableFrame.OnClose, LayerTableFrame.OnClose): Removed. Not needed
506            anymore.
507    
508            * README: Update the minimum requirement for wxPython. Since we
509            now use the EVT_WINDOW_DESTROY event, we need at least 2.4.0.4,
510            the version in which that was introduced for all platforms
511    
512    2003-10-30  Frank Koormann <[email protected]>
513    
514            * Thuban/UI/join.py (JoinDialog.OnJoin): Wrapped the major parts of
515            the join process in a ThubanBeginBusyCursor, ThubanEndBusyCursor
516            frame.
517    
518    2003-10-30  Jan-Oliver Wagner <[email protected]>
519    
520            Improved APR import extension, added further EPSG definitions
521            and some cleanup regarding string class.
522    
523            * test/test_proj.py (TestProjection.test_get_projection_units_geo):
524            Added test for alias 'longlat'.
525    
526            * Resources/Projections/epsg-deprecated.proj: New. Contains
527            deprecated EPSG definitions.
528    
529            * Extensions/importAPR/odb.py (ODBBaseObject.TreeInfo): Added
530            the variable names for objects.
531    
532            * Extensions/importAPR/apr.py (APR_BLnSym, APR_BMkSym, APR_BShSym): New.
533            Copied from importAPR and provided with documentation.
534    
535            * Extensions/importAPR/importAPR.py (APR_BLnSym, APR_BMkSym, APR_BShSym):
536            Moved to apr.py.
537            (APR_View): Added object ref 'ITheme'.
538    
539            * Thuban/Lib/fileutil.py, Thuban/UI/proj4dialog.py: Replaced string
540            split function by corresponding use of the string class method.
541    
542            * Thuban/Model/xmlwriter.py: Replaced string replace function by
543            corresponding string method.
544    
545    2003-10-29  Bernhard Herzog  <[email protected]>
546    
547            * Thuban/UI/baserenderer.py
548            (BaseRenderer.draw_shape_layer_incrementally): Speed up the
549            special case of a classification that only has the default group
550    
551    2003-10-27  Bernhard Herzog  <[email protected]>
552    
553            * po/fr.po, po/es.po: Updated translations from Daniel Calvelo
554    
555            * po/de.po: Update.
556    
557            * Thuban/UI/application.py
558            (ThubanApplication.ShowExceptionDialog): Handle translation of the
559            dialog message properly
560    
561    2003-10-27  Bernhard Herzog  <[email protected]>
562    
563            Rework how localization works so that we use wx's translation
564            functions when running Thuban as a normal application but not when
565            we don't need any UI, such as in the test suite. See the comment
566            in Thuban/__init__.py for details
567    
568            * Thuban/__init__.py (_): Add one level of indirection to make the
569            translation handling more flexible and to make it possible to use
570            either wx's translation services or not.
571            (gettext_identity, translation_function_installed)
572            (install_translation_function): New function to help with this
573    
574            * Thuban/UI/__init__.py: Install the wx specific translation
575            function if it's OK to do that
576    
577            * test/support.py (initthuban): Install a dummy translation
578            function so that importing Thuban.UI doesn't install a wx specific
579            one for which would need to import wxPython
580    
581    2003-10-27  Bernhard Herzog  <[email protected]>
582    
583            * HOWTO-Release: Source archives should be created first and the
584            binary packages should be created from the source archives.
585            There's an official debian package now so there's no need to test
586            the rpm on debian anymore
587    
588    2003-10-27  Bernhard Herzog  <[email protected]>
589    
590            Several rendering changes:
591    
592             - Render the selection into a separate bitmap so that only that
593               bitmap needs to be redrawn when the selection changes
594    
595             - Render incrementally showing previews and allowing interaction
596               before rendering is complete
597    
598             - Update the renderer interface a bit. Most parameters of
599               RenderMap are now parameters of the constructor
600    
601            * Thuban/UI/baserenderer.py (BaseRenderer.__init__): Add the map
602            and the update region as parameters. Update the doc-string
603            (BaseRenderer.render_map_incrementally): New. Generator function
604            to renders the map incrementally
605            (BaseRenderer.render_map): Remove the map argument (it's now in
606            the constructor) and simply iterate over the
607            render_map_incrementally generator to draw the map.
608            (BaseRenderer.draw_shape_layer_incrementally)
609            (BaseRenderer.draw_shape_layer): Renamed to
610            draw_shape_layer_incrementally and changed into a generator that
611            yields True every 500 shapes. Used by render_map_incrementally to
612            render shape layers incrementally
613    
614            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Removed the
615            map and region parameters which are now in the constructor
616            (ScreenRenderer.RenderMapIncrementally): New. Public frontend for
617            the inherited render_map_incrementally.
618            (BaseRenderer.draw_shape_layer): Removed.
619            (ScreenRenderer.draw_selection_incrementally): New. The selection
620            drawing part of the removed draw_shape_layer as a generator
621            (ScreenRenderer.layer_shapes): Update because of the region
622            parameter change
623            (ExportRenderer.__init__): New. Extend the inherited constructor
624            with the destination region for the drawing
625            (ExportRenderer.RenderMap): Removed the map and region parameters
626            which are now in the constructor
627    
628            * Thuban/UI/view.py (MapCanvas.PreviewBitmap): New. Return a
629            bitmap suitable for a preview in a tool
630            (CanvasPanTool.MouseMove): Use the PreviewBitmap method to get the
631            bitmap
632            (MapPrintout.draw_on_dc): Adapt to new renderer interface
633            (MapCanvas.OnPaint): Handle drawing the selection bitmap if it
634            exists
635            (MapCanvas.OnIdle): Update the logic to deal with incremental
636            rendering and the selection bitmap
637            (MapCanvas._do_redraw): Handle the instantiation of the render
638            iterator and the redraws during rendering
639            (MapCanvas._render_iterator): New. Generator to incrementally
640            redraw both bitmaps
641            (MapCanvas.Export): Adapt to new renderer interface.
642            (MapCanvas.full_redraw): Reset the selection bitmap and the
643            renderer iterator too
644            (MapCanvas.redraw_selection): New. Force a redraw of the selection
645            bitmap
646            (MapCanvas.shape_selected): Only redraw the selection bitmap
647    
648            * test/test_baserenderer.py
649            (TestBaseRenderer.test_polygon_no_projection)
650            (TestBaseRenderer.test_raster_no_projection)
651            (TestBaseRenderer.test_point_map_projection)
652            (TestBaseRenderer.test_point_layer_and_map_projection)
653            (TestBaseRenderer.test_point_layer_projection)
654            (TestBaseRenderer.test_point_with_classification): Adapt to new
655            renderer interface
656    
657    2003-10-24  Bernhard Herzog  <[email protected]>
658    
659            * libraries/thuban/wxproj.cpp (draw_polygon_shape)
660            (point_in_polygon_shape, shape_centroid): Raise an exception if
661            the shape can't be read. Previously invalid shape ids would lead
662            to a segfault.
663    
664            * test/test_wxproj.py (TestShapeCentroid.test_invalid_shape_id):
665            New. test whether an exception is raised for invalid shape ids
666    
667    2003-10-24  Jan-Oliver Wagner <[email protected]>
668    
669            * Thuban/Model/proj.py (Projection.GetProjectedUnits): Added 'longlat'
670            as alias for 'latlong'.
671    
672            * Thuban/UI/projdialog.py (ProjFrame.__init__): Added 'longlat'
673            as alias for 'latlong'.
674    
675    2003-10-24  Jan-Oliver Wagner <[email protected]>
676    
677            * Thuban/UI/projdialog.py (ProjFrame.proj_selection_changed): Set
678            the projection even for the UnknownPanel.
679            (UnknownProjPanel.__init__): Define the text and create the textctrl
680            widget.
681            (UnknownProjPanel._DoLayout): Replaced static text widget by the
682            textctrl created in __init__.
683            (UnknownProjPanel.SetProjection): Set the text for the text ctrl
684            including the parameters of the projection.
685            
686    2003-10-24  Jan-Oliver Wagner <[email protected]>
687    
688            * Resources/Projections/epsg.proj: New. This is a list of
689            EPSG codes with parameters for proj. The list has been
690            generated using devtools/create_epsg.py based on the
691            file nad/epsg of the proj 4.4.7 package. Four projection
692            definitions have been deleted as they are not accepted by proj:
693            "CH1903+ / LV95", "Bern 1898 (Bern) / LV03C", "CH1903 / LV03"
694            and "HD72 / EOV".
695    
696    2003-10-22  Bernhard Herzog  <[email protected]>
697    
698            Some more tweaks to the projection dialog which should fix RT
699            #1886.
700    
701            * Thuban/UI/projlist.py (ProjectionList.Destroy): Unsubscribe from
702            the ProjFile's messages and call the base class methods correctly
703            (ProjectionList.SelectProjection): Set the wxLIST_STATE_FOCUSED
704            flag on the newly selected item too. Otherwise some other item is
705            focused and the first time the focus is moved with the keyboard
706            the selection moves in unexpected ways.
707    
708            * Thuban/UI/projdialog.py (ProjFrame.__init__): Do not set the
709            focus on the OK button, only on the projection list. That way the
710            list really has the focus initially
711            (ProjFrame.OnClose): Call the projection list's Destroy method to
712            make it unsubscribe all messages
713    
714    2003-10-21  Bernhard Herzog  <[email protected]>
715    
716            Rework the projection dialog to fix a few bugs, including RT 2166
717            and most of 2168
718    
719            * Thuban/UI/projlist.py: New. The class ProjectionList is a
720            special wxListCtrl to show a list of projections in a more MVC
721            fashion
722    
723            * Thuban/UI/projdialog.py (ProjFrame): Substantial changes
724            throughout the class. The main change is to use the ProjectionList
725            class instead of a normal wxListBox. Also, add an explicit
726            "Unknown" projection to the projection choice control.
727            (ProjPanel.__init__): Add an "unknown" ellipsoid
728            (TMPanel.__init__, LCCPanel.__init__): Tweak the order of
729            instantiation of the panel's controls to make the tab-order more
730            natural
731    
732    2003-10-21  Bernhard Herzog  <[email protected]>
733    
734            * test/test_load.py (TestSingleLayer.file_contents)
735            (TestSingleLayer.test): Add non-ascii characters to the titles of
736            session, map and layer. This is effectively a port of the
737            TestUnicodeStrings test in test_load_0_8.py which for some reason
738            was only added there.
739    
740            * test/test_load_0_9.py (TestSingleLayer.file_contents)
741            (TestSingleLayer.test): Same as in test_load.py: add non-ascii
742            characters to the titles of session, map and layer,.
743    
744  2003-10-21  Bernhard Herzog  <[email protected]>  2003-10-21  Bernhard Herzog  <[email protected]>
745    
746          Add EPSG projection handling to .thuban files          Add EPSG projection handling to .thuban files

Legend:
Removed from v.1847  
changed lines
  Added in v.1984

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26