/[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 2358 by jan, Tue Sep 28 19:58:51 2004 UTC revision 2482 by bernhard, Sat Dec 18 02:36:59 2004 UTC
# Line 1  Line 1 
1    2004-12-18  Bernhard Reiter <[email protected]>
2    
3            svgexport 1.0.0: Treats holes and islands nicely. Documentation added.
4    
5            * Extensions/svgexport/test/test_svgmapwriter.py:
6            Added new tests: test_export_polygon_with_hole()
7            and test_polygon_with_hole().
8    
9            * Extensions/svgexport/svgmapwriter.py
10            (draw_polygon_shape()): Uses DrawPath correctly now.
11    
12            * Doc/manual/thuban-manual.xml: Added documentation for stable
13            extention svgexport.    
14            * Doc/manual/thuban-manual-de.xml: Copied English section about
15            svexport over.
16    
17            * Extensions/svgexport/__init__.py: Bumped version number to 1.0.0.
18    
19            * Extensions/svgexport/svgsaver.py,maplegend.py:
20            Moved from experimental to stable extension menu.
21    
22            * Extensions/svgexport/TODO: updated.
23    
24    
25    2004-12-18  Bernhard Reiter <[email protected]>
26    
27            Added Extensions/svgexport/TODO
28    
29    2004-12-18  Bernhard Reiter <[email protected]>
30    
31            Refactored in svgexport:
32            DrawPath replaces DrawPolygon; added newline in front of "M" in paths.
33    
34            * Extensions/svgexport/svgmapwriter.py
35            Added verbosity level 3 to print out polygon points.
36            (class Point): added __repr__
37            (class Brush, __str__()): Added space after ,.
38            (DrawPolygon): Renamed to DrawPath()
39            (DrawPath): Takes list of polygons as input now, adds \n before "M"s.
40            (DrawLines): Using DrawPath now.
41    
42            * Extensions/svgexport/test/test_svgmapwriter.py:
43            Replaced DrawPolygon() calls with DrawPath() and put the first argument
44            inside another list. Adapted test data with a newline before "M".
45    
46    2004-12-18  Bernhard Reiter <[email protected]>
47            
48            Refactored svgexport tests: 9 double tests runs eliminated;
49            code size reduced by 8 lines.
50    
51            * Extensions/svgexport/test/test_svgmapwriter.py:
52            (class TestWithDC): Renamed to BaseTestWithDC, moved to top.
53            (class BaseWithDCtools): New, subclass from BaseTestWithDC.
54            (class TestDrawSplines): now subclass from BaseTestWithDCtools,
55            this fixed the double running of the nine tests of TestVirtualDC.
56            (class TestVirtualDC): Using self.dc and self.file from setUp().
57    
58    2004-12-17  Bernhard Herzog  <[email protected]>
59    
60            Two windows specific fixes ported from thuban-1�0-branch:
61    
62            * Thuban/UI/about.py (unicodeToLocale): Use getdefaultlocale
63            instead of getlocale because getlocale doesn't return a usable
64            encoding name on a german windows 2000
65    
66            * setup.py: windows build: Removed the absolute path names and
67            made all prfixes relative to the directory containing setup.py.
68            Makes it a little easier to adapt to a different system.
69    
70    2004-12-16  Bernhard Herzog  <[email protected]>
71    
72            Add support for PostGIS tables with LINESTRING geometries.
73            Fixes RT#2299
74    
75            * Thuban/Model/postgisdb.py (shapetype_map): Add LINESTRING
76    
77            * test/postgissupport.py
78            (PostgreSQLServer.get_default_static_data_db): Rename the "roads"
79            table to "roads-multi" because it now uses MULTILINESTRING
80            geometries and introduce a new "roads" table that uses LINESTRING
81            (coords_to_multilinestring): Make the doc string more precise
82            (coords_to_linestring): New.  Create a LINESTRING WKT
83            representatin
84            (wkt_converter): Add coords_to_linestring
85            (upload_shapefile): Rephrase the doc-string a bit.
86    
87            * test/test_postgis_db.py (TestPostGISShapestoreArc)
88            (LineStringTests)
89            (TestPostGISShapestoreLineString)
90            (TestPostGISShapestoreMultiLineString): Split
91            TestPostGISShapestoreArc into a base class LineStringTests and two
92            derived classes TestPostGISShapestoreLineString for LINESTRING
93            geometries and TestPostGISShapestoreMultiLineString for
94            MULTILINESTRING geometries.  Most test methods are in the base
95            class with the exception of tests that explicitly check the raw
96            format.
97    
98    2004-12-16  Bernhard Herzog  <[email protected]>
99    
100            Make the test suite work with PostGIS 0.8.2 and PostgreSQL 7.4
101    
102            * test/postgissupport.py (find_postgis_sql): Different postgis
103            versions put the postgis.sql file into slightly different places
104            so we have to look in both.  The updated doc string describes this
105            is more detail.
106    
107            * test/test_postgis_db.py
108            (TestPostGISSpecialCases.test_column_name_quoting): The return
109            value of UniqueValues is unsorted, so it has to be sorted for
110            comparison.
111    
112    2004-12-16  Bernhard Herzog  <[email protected]>
113    
114            Fix for RT#2237
115    
116            * Thuban/UI/projdialog.py (ProjFrame._show_proj_panel): If the
117            panel to be shown is the UnknownProjPanel disable the OK and Try
118            buttons.  Otherwise enable them.
119            (ProjFrame.__GetProjection): The UnknownProjPanel returns None for
120            the parameters.  In that case __GetProjection also returns None
121            now.
122    
123    2004-12-15  Bernhard Herzog  <[email protected]>
124    
125            * Thuban/UI/classgen.py (GenQuantilesPanel.__init__): Set the
126            minimum number of classes to 2.  The calculate_quantiles needs at
127            least two and raises an exception otherwise.  
128            Fixes RT#2549
129    
130    2004-12-15  Bernhard Herzog  <[email protected]>
131    
132            * test/postgissupport.py (PostgreSQLServer.execute_sql): Extend to
133            so that it returns a result for select statements.
134            (PostgreSQLServer.server_version): New.  Return the version of the
135            server software.
136            (PostgreSQLServer.require_authentication): The format of
137            pg_hba.conf has changed between PostgrSQL 7.2 and 7.3.  Check the
138            server version and generate the file in the correct format
139    
140    2004-12-15  Bernhard Herzog  <[email protected]>
141    
142            * test/postgissupport.py (PostgreSQLServer.is_running): Fix typo
143            in the doc string and rephrase it a little.
144    
145    2004-12-15  Frank Koormann <[email protected]>
146    
147            * test/test_load.py (TestAltPath.checkSession): New, extended checks if
148            session has been loaded successfully. The check is called by the relevant
149            tests after executing load_session().
150    
151    2004-12-13  Bernhard Herzog  <[email protected]>
152    
153            Make sure the region used to determine which shapes are visible
154            actually matches the region on the printed page.  If this isn't
155            done properly some shapes might not be printed.  
156            Fixes RT #2692
157    
158            * Thuban/UI/view.py (MapPrintout.draw_on_dc): The region for the
159            renderer has to be at the same position as the mapregion
160    
161            * Thuban/UI/renderer.py (ExportRenderer.RenderMap): self.region
162            has to be moved by (self.shiftx, self.shifty) too.
163    
164    2004-12-13  Bernhard Herzog  <[email protected]>
165    
166            * libraries/pyprojection/Projection.i: Work around a bug in the
167            generated python code which leads to exception in the __del__
168            method when the constructor fails.  See the comments in the code
169            for more details.
170    
171            * libraries/pyprojection/Projection.py: Updated from Projection.i
172            with SWIG.
173    
174    2004-12-13  Bernhard Herzog  <[email protected]>
175    
176            * test/test_load.py (TestAltPath.test_01_single_path_error_fix)
177            (TestAltPath.test_02_path_error_fix_from_list)
178            (TestAltPath.test_05_path_error_fix_from_list_changed)
179            (TestAltPath.test_06_path_error_fix_from_list_fails): self.session
180            is destroyed in tearDown, so there's no need to do it in a test
181            case.
182    
183            * Thuban/Model/load.py (SessionLoader.open_shapefile): Remove a
184            debug print
185    
186    2004-12-13  Bernhard Herzog  <[email protected]>
187    
188            * Extensions/svgexport/test/test_svgmapwriter.py
189            (TestDrawSplines.setUp): Do not use super with the unittest
190            classes because in Python 2.2 they're still old-style classes.
191    
192    2004-12-13  Frank Koormann <[email protected]>
193    
194        Alternative Path feature: When loading a (moved) session where
195            shapefiles cannot be found, ask the user. Use the specified path
196            if further shapefiles are missing. However, ask the usr for confirmation
197            in such cases.
198    
199            * test/test_load.py (TestAltPath): New, tests for alternative path feature
200            in load_session()
201            (Shapefile_CallBack): Helper, implements controllable callback.
202    
203            * Thuban/UI/application.py (ThubanApplication.OnInit):
204            Added "alt_path" to self.path
205            (ThubanApplication.OpenSession): Added shapefile_callback as second
206            callback similar to db_connection_callback.
207            (ThubanApplication.run_alt_path_dialog): New, implementaion of
208            shapefile_callback. In addition to raising the dialog the control of
209            self.path('alt_path') is implemented here.
210    
211            * Thuban/Model/load.py (SessionLoader.__init__): Added shapefile_callback.
212            (SessionLoader.open_shapefile): Open shapefile, eventually with
213            alternative path. This wrapps the "theSession.OpenShapefile(filename)"
214            formerly used in start_fileshapesource()/start_layer().
215            (SessionLoader.start_fileshapesource): Call open_shapefile().
216            (SessionLoader.start_layer): Call open_shapefile().
217            (load_session): Added shapefile_callback.
218    
219            * Thuban/UI/altpathdialog.py: New, implements dialogs for alternative path
220            feature (search / check).
221            
222            * Doc/manual/thuban-manual.xml: Added documentation of new feature.
223    
224    2004-12-11  Bernhard Reiter <[email protected]>
225    
226             svgexport 0.9.2: Point size supports for maps.
227    
228            * Extensions/svgexport/svgmapwriter.py: Added import of SHAPETYPE_POINT
229            (def draw_point_shape): new parameter size defaults to 2 as before.
230            (draw_shape_layer_incrementally): Moved draw_func log line higher.
231            Added draw_func call with size when dealing with a point layer.
232    
233            * Extensions/svgexport/__init__.py: bumped version to 0.9.2.
234            
235    2004-12-11  Bernhard Reiter <[email protected]>
236    
237            Made sure that newlines are inserted in the svg path d attributes
238            to raise the chance that the line length will be below 255 characters,
239            as recommended by REC SVG 1.1 in section 8.3.1.
240    
241            * Extensions/svgexport/svgmapwriter.py(DrawPolygon):
242            Adding \n before L's and changed whitespace handling.
243    
244            * Extensions/svgexport/test/test_svgmapwriter.py:
245            Adapted tests to new whitespace handling of DrawPolygon.
246    
247    2004-12-11  Bernhard Reiter <[email protected]>
248    
249            * Doc/technotes/coding_guidelines.txt: easy typo fixed.
250    
251            * Extensions/svgexport/test/test_svgmapwriter.py:
252            Removed test_drawbezier in favour of new test_drawspline3 and
253            test_drawspline4 within new class TestDrawSplines(TestVirtualDC).
254            All only to test DrawSpline.
255    
256            * Extensions/svgexport/svgmapwriter.py(DrawSpline):
257            New implementation now really using the strange algorithm of
258            xfig 3.1's approximated splines and its conversion to postscript
259            with one twist: SVG can do quadratic beziers, so skipped translation
260            to cubic beziers.
261            (TestWithDC): Typo in comment fixed.
262    
263    2004-12-09  Martin Schulze  <[email protected]>
264    
265            * Thuban/Model/classgen.py: Added missing character encoding
266    
267            * Extensions/wms/properties.py (OpenWMSProperties): removed
268    
269            * Extensions/wms/parser.py (WMSCapabilitiesParser.error): Dropped
270            support for get_srs_discrepancies() since there are no
271            discrepancies anymore (was a thinko)
272    
273            * Extensions/wms/layer.py (WMSLayer.GetMapImg): Improved graphic
274            format priority now that more formats are supported globally by
275            the render engine.
276    
277    2004-12-08  Silke Reimer <[email protected]>
278            * Extensions/ogr/ogrshapes.py: Substituted ogr-method CloseRings
279            because it is not available in all versions of ogr
280    
281    2004-12-08  Bernhard Reiter <[email protected]>
282            * Extensions/ogr/__init__.py: Added empty __init__.py to heal
283            global tests until a real one is commited.
284    
285    2004-12-07 Nina H�ffmeyer <[email protected]>
286    
287            * /Extensions/ogr/: Adding a new extension to read shapefiles with
288            ogr. It is planned to add other vector formats.
289    
290            * /test/runtests.py: Adding tests from /Extensions/ogr/test/.
291    
292    2004-12-07  Jan-Oliver Wagner <[email protected]>
293    
294            * /Extensions/svgexport/test/test_svgmapwriter.py: Reverting
295            part of a (non-)fix to renable that the tests are always
296            executed.
297    
298    2004-12-07  Bernhard Reiter <[email protected]>
299    
300            * Extensions/svgexport/test/test_svgmapwriter.py:
301            Added test_drawbezier() to test DrawSpline().
302    
303            * Extensions/svgexport/svgmapwriter.py(DrawSpline):
304            Really implemented bezier drawing.
305    
306            * Extensions/svgexport/__init__.py: Bumped version of svgexport
307            to 0.9.1 because now the legend examples lines styles
308            will be drawing with beziers.
309    
310    2004-12-05  Martin Schulze  <[email protected]>
311    
312            * Thuban/UI/renderer.py (raster_format_map): Added PNG, TIFF and
313            GIF as supported bitmap image formats (helpful for the WMS extension)
314    
315    2004-11-30  Martin Schulze  <[email protected]>
316    
317            * Extensions/wms/test/test_ogclib.py (TestOGCLib.test_compareURLs):
318            Improved the test for the internal compare method
319    
320    2004-11-27  Jan-Oliver Wagner <[email protected]>
321    
322            * Thuban/UI/about.py (About.__init__): Added
323            Norbert Solymosi for hungarian translation and Ole Rahn
324            as contrbutor. Moved Bernhard Reiter from Contributor
325            to Developer.
326    
327    2004-11-27  Bernhard Reiter <[email protected]>
328    
329            * Extensions/svgexport/test/test_svgmapwriter.py:
330            Removed Jan from author list as he did not change enough significant
331            lines yet.
332    
333            * Extensions/svgexport/__init__.py: Added Bernhard as author
334            of the Extension.
335    
336    2004-11-27  Jan-Oliver Wagner <[email protected]>
337    
338            * po/hu.po: New. Hungarian translation. Contributed
339            by Norbert Solymosi.
340    
341    2004-11-26  Bernhard Herzog  <[email protected]>
342    
343            * Extensions/svgexport/test/test_svgmapwriter.py
344            (Testobjectexport.test_transparent_polygon): Commented out some
345            debug prints
346    
347    2004-11-24  Jan-Oliver Wagner <[email protected]>
348    
349            Fix broken tests for svg extension and added svg legend
350            to Experimental menu.
351    
352            * Extensions/svgexport/test/test_svgmapwriter.py: Fix to have
353            the test run correctly even if the extension is a package.
354            Also removed the "import Thuban" which makes no sense.
355    
356            * Extensions/svgexport/__init__.py: Fix to have the extensions'
357            test module also be executed from the global test routine.
358            This is done by looking for the absense of the DISPLAY variable.
359    
360            * Extensions/svgexport/maplegend.py: Moved the menu entry from Extensions
361            to Experimental menu since this module has yet not reached a stable
362            status (ie. 1.0).
363    
364    2004-11-22  Bernhard Reiter <[email protected]>
365    
366            * Extensions/svgexport/svgmapwriter.py:
367            Added verbose variable and some logging depending on it.
368            (class VirtualDC(XMLWriter)): Minor improvement in the polygon loop,
369            because counting i is not necessary.
370            (class Pen, class Brush): Added simple __str__ methods.
371            (SVGRenderer.draw_polygone_shape): Fix #2698 (transparent polygons are
372            not exported to svg file) Note: holes still unhandled.
373    
374            * Extensions/svgexport/test/test_svgmapwriter.py:
375                    Made a baseclass TestWithDC for test needed a DC.
376                    Added tests for bug #2698 (transparent polygons are not
377                    exported to svg file):
378                    Testobjectexport.test_transparent_polygon()
379    
380            * Thuban/Model/base.py (UnsetModified):
381            Fixed some typos in docstring.
382    
383            * Thuban/UI/baserenderer.py (BaseRenderer.draw_polygon_shape()):
384            Added hints on the used algorithm for handling holes.
385    
386    2004-11-20  Jan-Oliver Wagner <[email protected]>
387    
388            Some face lifting for the examples.
389    
390            * Examples/__init__.py: Make this directory a package.
391    
392            * Examples/simple_extensions/__init__.py: Make this directory a package.
393    
394            * Examples/simple_extensions/hello_world.py: Moved entry from Extensions
395            menu to Examples menu.
396    
397            * Examples/simple_extensions/simple_command.py: Some more comments,
398            minor changes.
399    
400            * Examples/simple_extensions/simple_tool.py: Minor changes.
401    
402    2004-11-20  Jan-Oliver Wagner <[email protected]>
403    
404            Changed way of extension registry for wms and added extension
405            registry for umn_mapserver extension.
406    
407            * Extensions/wms/__init__.py: Added registry entry and the importing
408            of the actual wms module. Included a test for the required PyOGCLib.
409    
410            * Extensions/wms/wms.py: Removed registry entry (moved to __init__.py).
411    
412            * Extensions/umn_mapserver/__init__.py: Added registry entry and the
413            importing of the actual umn mapserver management modules.
414            Included a test for the required Python MapScript.
415    
416    2004-11-20  Jan-Oliver Wagner <[email protected]>
417    
418            Changed way of extension registry for importAPR, bboxdump
419            and added extension registry for svgexport.extension registry for
420            svgexport.
421    
422            * Extensions/importAPR/__init__.py: Added registry entry and the importing
423            of the actual importAPR module.
424    
425            * Extensions/importAPR/importAPR.py: Removed registry entry (moved to
426            __init__.py).
427    
428            * Extensions/bboxdump/__init__.py: Added registry entry and the importing
429            ����of the actual bboxdump module.
430    
431            * Extensions/bboxdump/bboxdump.py: Removed registry entry (moved to
432            ����__init__.py).
433    
434            * Extensions/svgexport/__init__.py: Added registry entry and the importing
435            of the svgsaver module.
436    
437            * Extensions/svgexport/svgsaver.py: Moved the menu entry from Extensions
438            to Experimental menu since this module has yet not reached a stable
439            status (ie. 1.0).
440    
441    2004-11-18  Jan-Oliver Wagner <[email protected]>
442    
443            Now the hit test considers the size of point symbols.
444    
445            * Thuban/UI/viewport.py (ViewPort._hit_point): Added optional parameter
446            'size' defaulting to the previously fixed value 5.
447            Extended doc-string.
448            (Viewport._find_shape_in_layer): Resolved FIXME regarding flexibility
449            for symbols.
450            Now the size of the largest point symbol is determined to find out
451            about whether the point has been hit.
452            This fixes the problem that only clicks inside a fixed distance of
453            5 where found.
454    
455    2004-11-17  Jan-Oliver Wagner <[email protected]>
456    
457            Another open issue fixed regarding sizeable symbols: correct rendering of
458            selected symbols.
459    
460            * Thuban/UI/renderer.py (ScreenRenderer.draw_selection_incrementally):
461            Added consideration of the specific size of point symbols.
462            The property for each point symbol is retrieved and the size applied
463            for the rendering method.
464            Added doc-string.
465    
466    2004-11-16  Jan-Oliver Wagner <[email protected]>
467    
468            Changed way of Extension Registry for gns2shp and profiling.
469    
470            * Extensions/gns2shp/gns2shp.py: Removed registry entry (moved to
471            __init__.py).
472    
473            * Extensions/gns2shp/__init__.py: Added registry entry and the importing
474            of the actual gns2shp module.
475    
476            * Extensions/profiling/profiling.py: Removed registry entry (moved to
477            __init__.py).
478    
479            * Extensions/profiling/__init__.py: Added registry entry and the importing
480            of the actual profiling module.
481    
482    2004-10-28  Bernhard Reiter <[email protected]>
483    
484            * Extensions/svgexport/: Minor improvements to doc strings.
485    
486    2004-10-07  Jan-Oliver Wagner <[email protected]>
487    
488            Further elements for sizable point objects now
489            making this feature usable though not yet complete.
490    
491            * Thuban/Model/save.py (SessionSaver.write_classification): Write
492            attribute 'size' for cldata when the shape layer is of point type.
493            This also now make the test_load.py tests happy.
494    
495            * Thuban/Model/classgen.py (CustomRamp.GetProperties): Added size
496            gradient.
497    
498            * Thuban/UI/classifier.py (ID_SELPROP_SPINCTRL): Renamed to
499            ID_SELPROP_SPINCTRL_LINEWIDTH.
500            (ID_SELPROP_SPINCTRL_LINEWIDTH): New Id replaces ID_SELPROP_SPINCTRL.
501            (ID_SELPROP_SPINCTRL_SIZE): New Id.
502            (SelectPropertiesDialog.__init__): Added a second spin control
503            for the size in case the corresponding layer is of point type.
504            (SelectPropertiesDialog._OnSpin): Renamed to _OnSpinLineWidth.
505            (SelectPropertiesDialog._OnSpinLineWidth): New. Former _OnSpin.
506            (SelectPropertiesDialog._OnSpinSize): New. Set size of property
507            and refresh preview.
508    
509    
510    
511    2004-10-04  Martin Schulze  <[email protected]>
512    
513            * Extensions/wms/test/test_parser.py
514            (TestWMSCapabilitiesParser.test_compareLists): Added missing
515            self-test for compareLists()
516            (TestWMSCapabilitiesParser.test_compareDicts): Added missing
517            self-test for compareDicts()
518            (TestWMSCapabilitiesParser.test_compareLists): Adding more tests
519            to verify the test routine fails with non-equal arguments
520            (TestWMSCapabilitiesParser.test_compareDicts): Adding more tests
521            to verify the test routine fails with non-equal arguments
522    
523    2004-10-03  Jan-Oliver Wagner <[email protected]>
524    
525            First elements for sizeable point objects.
526    
527            * Resources/XML/thuban-1.1.dtd: Added size attribute to cldata.
528    
529            * Data/iceland_sample_size.thuban: New. Sample for sized point objects.
530    
531            * test/test_load.py (ClassificationTest.TestLayers): Added SetSize in case
532            of a corresponding argument is given.
533            (TestSymbolSize): New. Test the size attribute of cldata.
534    
535            * Thuban/Model/classification.py: Removed some trailing whitespaces.
536            (ClassGroupProperties.__init__): Set default size.
537            (ClassGroupProperties.SetProperties): Set the size.
538            (ClassGroupProperties.GetSize): New. Return the size.
539            (ClassGroupProperties.SetSize): New. Set the size.
540            (ClassGroupProperties__eq__): Compare also size.
541            (ClassGroupProperties__repr__): Print also size.
542    
543            * Thuban/Model/load.py (SessionLoader.start_cldata): Also parse
544            the size attribute.
545    
546            * Thuban/UI/classifier.py (ClassDataPreviewer.Draw): Added doc-string.
547            Also, now there is a return value that indicates whether the drawing
548            size exceeded the given rect extent and if so the new extent.
549            Finally, point objects are drawn depending on the size. If either
550            the width or height is exceeded, the new extent is returned.
551            (ClassRenderer.Draw): Now when calling the previewer drawing function,
552            evaluate the return value and, if not None, adapt the grid widget size
553            accordingly and redraw again.
554    
555            * Thuban/UI/baserenderer.py (BaseRenderer.draw_shape_layer_incrementally):
556            If the draw function is for points, call it with the size as additional
557            parameter.
558            (BaseRenderer.draw_point_shape): Added additional, optional parameter for
559            the size. Compute the radius using the size.
560    
561            * Extensions/importAPR/apr.py (APR_BMkSym.GetThubanProp): Now
562            that Thuban supports size, apply this correctly.
563    
564            * Extensions/importAPR/importAPR.py: Bumped version to 0.1.1.
565    
566    2004-10-03  Jan-Oliver Wagner <[email protected]>
567    
568            * Doc/manual/thuban-manual-de.xml: Started translation of
569            Map chapter.
570    
571    2004-10-01  Martin Schulze  <[email protected]>
572    
573            * Extensions/wms/properties.py (wmsProperties.__init__): Extended
574            argument for general use through properties-dialog selector
575            
576            * Thuban/UI/classifier.py: Register properties dialog classes for
577            both provided layer classes/types.
578    
579            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): The
580            map can be retrieved through the parent which is passed to the
581            constructor anyway and doesn't require an argument of its own,
582            required for the unification of arguments for general use through
583            properties-dialog selector.
584            (MainWindow.OpenOrRaiseDialog): Move the logic for checking
585            whether a dialog is already opened (and raising it to the users
586            attention) and creating a new dialog into a function of its own
587            (MainWindow.OpenLayerProperties): Use the new OpenOrRaiseDialog()
588            method
589            (MainWindow.OpenLayerProperties): Utilise the new ClassMapper for
590            global registration of properties dialog classes (which are indeed
591            layer-specific).
592    
593            * Thuban/UI/classifier.py (Classifier.__init__): Unify arguments
594            for general use through properties-dialog selector, the map can be
595            retrieved through the parent and doesn't require an argument of
596            its own.
597    
598            * Extensions/wms/wms.py: Register the properties dialog class for
599            the provided WMS layer
600    
601  2004-09-28  Jan-Oliver Wagner <[email protected]>  2004-09-28  Jan-Oliver Wagner <[email protected]>
602    
603          New feature: Registry for Extensions.          New feature: Registry for Extensions.

Legend:
Removed from v.2358  
changed lines
  Added in v.2482

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26