/[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 1655 by bh, Mon Aug 25 16:05:33 2003 UTC revision 1705 by jan, Wed Sep 3 07:03:06 2003 UTC
# Line 1  Line 1 
1    2003-09-03  Jan-Oliver Wagner <[email protected]>
2    
3            Introducing a new exception dialog that allows to exit the
4            application immediately.
5            This fixes bug #2060: https://intevation.de/rt/webrt?serial_num=2060
6    
7            * Thuban/UI/exceptiondialog.py: New. A special exception dialog.
8    
9            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
10            Made strings available to translations. Exchanged the simple
11            ScrolledMessageDialog by the new ExceptionDialog.
12    
13    2003-09-01  Bernhard Herzog  <[email protected]>
14    
15            * NEWS: New. Summary of changes and release notes.
16    
17            * MANIFEST.in: Add NEWS
18    
19    2003-09-01  Bernhard Herzog  <[email protected]>
20    
21            * MANIFEST.in: Correct the include statement for the mo-files and
22            include the documentation too.
23    
24            * setup.py (data_files): Add the .mo files
25            (setup call): Up to version 0.9.0
26    
27    2003-09-01  Bernhard Herzog  <[email protected]>
28    
29            * Thuban/UI/dbdialog.py (ChooseDBTableDialog.__init__): Change the
30            parameter list to just parent and session
31            (ChooseDBTableDialog.__set_properties): Removed. Setting the
32            selection of empty list boxes is not allowed (and produces C++
33            assertion errors) and the rest of the setup is better done in
34            __init__ anyway.
35            (ChooseDBTableDialog.OnCancel, ChooseDBTableDialog.OnOK)
36            (ChooseDBTableDialog.OnLBDClick, DBDialog.OnOK): Use the Python
37            builtins True/False for booleans to avoid warnings from wxPython
38    
39            * Thuban/UI/mainwindow.py (MainWindow.AddDBLayer): Adapt to new
40            ChooseDBTableDialog constructor parameters.
41    
42    2003-09-01  Bernhard Herzog  <[email protected]>
43    
44            * Thuban/Model/postgisdb.py
45            (PostGISTable): Extend doc-string
46            (PostGISTable._fetch_table_information): Set the column index
47            correctly, pretending ignored columns don't exist.
48    
49            * test/test_postgis_db.py (TestPostGISIgnoredColumns): New tests
50            for postgis tables with data types not yet supported by thuban.
51    
52    2003-08-29  Bernhard Herzog  <[email protected]>
53    
54            * HOWTO-Release: Tweak item about running the tests.
55    
56    2003-08-29  Jan-Oliver Wagner <[email protected]>
57    
58            * /Doc/manual/thuban-manual.xml: updated to version 1.0pre2.
59    
60    2003-08-29  Bernhard Herzog  <[email protected]>
61    
62            Add some missing parameters to projections. Proj complains about
63            them on windows but for some reason not on Linux.
64    
65            * test/test_save.py (SaveSessionTest.testLayerProjection): Add
66            missing required projection parameters
67    
68            * test/test_proj.py (TestProjFile.test): Add missing required
69            projection parameters
70    
71            * test/test_load_0_8.py (TestLayerProjection.file_contents)
72            (TestLayerProjection.test): Add missing required projection
73            parameters and tests for them
74    
75            * test/test_load.py (TestLayerProjection.file_contents)
76            (TestLayerProjection.test): Add missing required projection
77            parameters and tests for them
78    
79            * test/test_layer.py (TestLayer.test_base_layer): Add missing
80            required projection parameters
81    
82    2003-08-29  Bernhard Herzog  <[email protected]>
83    
84            * libraries/pyprojection/Projection.i: Use pj_get_errno_ref to
85            access the pj_errno because directly accessing pj_errno doesn't
86            work on windows if the proj library is in a DLL
87    
88            * libraries/pyprojection/Projection_wrap.c: Update from Projection.i
89    
90    2003-08-28  Bernhard Herzog  <[email protected]>
91    
92            * test/test_proj.py: Import things from Thuban after calling
93            initthuban
94    
95            * test/test_load.py (LoadSessionTest.filenames): New class
96            variable with the filename attributes to normalize
97            (LoadSessionTest.check_format): Pass self.filenames to
98            sax_eventlist to normalize the filename attributes
99    
100            * test/xmlsupport.py: Add cvs keywords
101            (SaxEventLister.__init__): New parameter filenames which indicates
102            attributes that contain filenames
103            (SaxEventLister.startElementNS): Normalize the filename attributes
104            with os.path.normpath
105            (sax_eventlist): New parameter filenames to pass through to
106            SaxEventLister
107    
108            * test/test_derivedshapestore.py: Make this file callable as a
109            program to execute the tests
110            (TestDerivedShapeStoreExceptions.test_table_with_wrong_size): Bind
111            the session to self.session so that it gets destroyed properly
112    
113            * test/test_layer.py (TestLayer.tearDown): Call the session's
114            Destroy method
115    
116            * test/test_map.py (TestMapBase.tearDown): Destroy self.session
117            too if it exists
118            (TestMapAddLayer.test_add_layer): Bind the session to self.session
119            so that it gets destroyed properly
120    
121            * test/postgissupport.py (reason_for_not_running_tests): Add a
122            test for the existence of popen2.Popen4.
123    
124            * test/test_save.py (SaveSessionTest.tearDown): New. Provide a
125            reliable way to destroy the sessions created in the test cases
126            (SaveSessionTest.test_dbf_table): Bind the session to self.session
127            so that it gets destroyed properly
128            (SaveSessionTest.testLayerProjection): Bind the session to
129            self.session so that it gets destroyed properly
130    
131            * test/test_session.py (UnreferencedTablesTests.tearDown): Make
132            sure that the session is destroyed properly
133    
134            * test/test_shapefilestore.py: Make this callable as a program to
135            execute the tests
136    
137            * test/test_scalebar.py: Remove unnecessary import of _ from
138            Thuban
139    
140            * test/support.py (print_garbage_information): Call initthuban
141            here because it may be called indirectly from test cases that test
142            test support modules which do not use anything from thuban itself
143            (ThubanTestProgram.runTests): Remove unnecessary debug print
144    
145    2003-08-28  Bernhard Herzog  <[email protected]>
146    
147            * Thuban/version.py (longversion): Update to 0.9
148    
149            * Thuban/UI/mainwindow.py: Remove some unused imports
150    
151            * README: Add section about required additional software. Add date
152            and revision CVS keywords
153    
154            * HOWTO-Release: Add item about the translations. Add date and
155            revision CVs keywords and change formatting to match README a bit
156            better
157    
158            * po/de.po: Update for 0.9
159    
160            * test/README: Tweak the wording a little because many tests are
161            not really unittest.
162    
163    2003-08-27  Bernhard Herzog  <[email protected]>
164    
165            As preparation for the 0.9 release, switch thuban files to a
166            non-dev namespace
167    
168            * Thuban/Model/save.py (SessionSaver.write_session): Write files
169            with the http://thuban.intevation.org/dtds/thuban-0.9.dtd
170            namespace
171    
172            * Thuban/Model/load.py (SessionLoader.__init__): Accept the
173            http://thuban.intevation.org/dtds/thuban-0.9.dtd namespace too
174    
175            * test/test_save.py (SaveSessionTest.dtd)
176            (SaveSessionTest.testEmptySession)
177            (SaveSessionTest.testSingleLayer)
178            (SaveSessionTest.testLayerProjection)
179            (SaveSessionTest.testRasterLayer)
180            (SaveSessionTest.testClassifiedLayer)
181            (SaveSessionTest.test_dbf_table)
182            (SaveSessionTest.test_joined_table)
183            (SaveSessionTest.test_save_postgis): Update for new namespace
184    
185            * test/test_load.py (LoadSessionTest.dtd, TestSingleLayer)
186            (TestLayerVisibility.file_contents, TestLabels.file_contents)
187            (TestLayerProjection.file_contents)
188            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
189            (TestPostGISLayer.file_contents)
190            (TestPostGISLayerPassword.file_contents)
191            (TestLoadError.file_contents, TestLoadError.test): Update for new
192            namespace
193    
194    2003-08-27  Bernhard Herzog  <[email protected]>
195    
196            Make the table interface distinguish between row ids (an integer
197            that uniquely identifies a row) and row ordinals (a simple row
198            count from 0 to NumRows() - 1)
199    
200            * Thuban/Model/postgisdb.py (PostGISTable.RowIdToOrdinal)
201            (PostGISTable.RowOrdinalToId): New methods to conver between row
202            ids and row ordinals
203            (PostGISTable.ReadRowAsDict, PostGISTable.ReadValue): New keyword
204            parameter row_is_ordinal to indicate whether the row parameter is
205            the row id or the ordinal
206    
207            * Thuban/Model/transientdb.py (TransientTableBase.RowIdToOrdinal)
208            (TransientTableBase.RowOrdinalToId)
209            (AutoTransientTable.RowIdToOrdinal)
210            (AutoTransientTable.RowOrdinalToId): Same new methods as in
211            PostGISTable.
212            (TransientTableBase.ReadRowAsDict, TransientTableBase.ReadValue)
213            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ReadValue):
214            Same new parameter as in PostGISTable.
215    
216            * Thuban/Model/table.py (DBFTable.RowIdToOrdinal)
217            (DBFTable.RowOrdinalToId, MemoryTable.RowIdToOrdinal)
218            (MemoryTable.RowOrdinalToId): Same new methods as in PostGISTable.
219            (DBFTable.ReadValue, DBFTable.ReadRowAsDict)
220            (MemoryTable.ReadValue, MemoryTable.ReadRowAsDict): Same new
221            parameter as in PostGISTable.
222    
223            * Thuban/UI/tableview.py (DataTable.RowIdToOrdinal)
224            (DataTable.RowOrdinalToId): New methods to convert between row ids
225            and row ordinals.
226            (TableGrid.SelectRowById): New method to select a row based on its
227            ID as opposed to its ordinal
228            (DataTable.GetValue, TableGrid.OnRangeSelect)
229            (TableGrid.OnSelectCell, LayerTableGrid.select_shapes)
230            (QueryTableFrame.OnQuery, QueryTableFrame.get_selected)
231            (LayerTableFrame.__init__): Convert between row ids and row
232            ordinals as appropriate
233    
234            * test/postgissupport.py (PostGISDatabase.__init__): Add
235            doc-string.
236            (PostGISDatabase.initdb): The optional third item in a tuple in
237            tables is now a (key, value) list with additional arguments to
238            pass to upload_shapefile
239            (upload_shapefile): New parameter gid_offset to allow gids that
240            are not the same as the shapeids in the shapefile
241            (PostgreSQLServer.get_default_static_data_db): Use the new
242            gid_offset to make the gids in landmarks 1000 higher than the
243            shapeids in the shapefile
244    
245            * test/test_viewport.py
246            (TestViewportWithPostGIS.test_find_shape_at_point): Adapt to the
247            new shapeids in the landmarks table
248    
249            * test/test_transientdb.py
250            (TestTransientTable.run_iceland_political_tests)
251            (TestTransientTable.test_transient_joined_table): Add tests for
252            the new table methods and new keywords arguments.
253    
254            * test/test_postgis_db.py
255            (TestPostGISTable.test_read_row_as_dict_row_count_mode)
256            (TestPostGISTable.test_read_value_row_count_mode)
257            (TestPostGISTable.test_row_id_to_ordinal)
258            (TestPostGISTable.test_row_oridnal_to_id): New test for the new
259            table methods and the new arguments
260            (TestPostGISShapestorePoint.test_shapes_in_region)
261            (TestPostGISShapestorePoint.test_shape_raw_data)
262            (TestPostGISShapestorePoint.test_shape_points)
263            (TestPostGISShapestorePoint.test_shape_shapeid)
264            (TestPostGISShapestorePoint.test_all_shapes)
265            (TestPostGISTable.test_simple_query)
266            (TestPostGISTable.test_simple_query)
267            (TestPostGISTable.test_simple_query)
268            (TestPostGISTable.test_read_value)
269            (TestPostGISTable.test_read_row_as_dict): Adapt to the new
270            shapeids in the landmarks table
271    
272            * test/test_memory_table.py
273            (TestMemoryTable.test_read_row_as_dict_row_count_mode)
274            (TestMemoryTable.test_read_value_row_count_mode)
275            (TestMemoryTable.test_row_id_to_ordinal)
276            (TestMemoryTable.test_row_oridnal_to_id): New test for the new
277            table methods and the new arguments
278    
279            * test/test_dbf_table.py
280            (TestDBFTable.test_read_row_as_dict_row_count_mode)
281            (TestDBFTable.test_read_value_row_count_mode)
282            (TestDBFTable.test_row_id_to_ordinal)
283            (TestDBFTable.test_row_oridnal_to_id): New test for the new table
284            methods and the new arguments
285    
286    2003-08-26  Bernhard Herzog  <[email protected]>
287    
288            * Thuban/Model/postgisdb.py (PostGISShapeStore.BoundingBox): Use a
289            more postgis specific but much faster method to get the bounding
290            box
291    
292    2003-08-26  Bernhard Herzog  <[email protected]>
293    
294            * Thuban/Model/postgisdb.py (PostGISTable.Title)
295            (PostGISShapeStore.AllShapes): Add these missing methods.
296            (PostGISShapeStore.ShapesInRegion): No need to raise
297            StopIteration. We can simply return
298    
299            * test/test_postgis_db.py (TestPostGISTable.test_title)
300            (TestPostGISShapestorePoint.test_all_shapes): New tests for the
301            new methods
302    
303    2003-08-25  Bernhard Herzog  <[email protected]>
304    
305            * Thuban/Model/postgisdb.py (shapetype_map): Add MUTLIPOLYGON.
306    
307            * test/test_postgis_db.py (PolygonTests): New class containing
308            those tests from TestPostGISShapestorePolygon that can also be
309            used to test MUTLIPOLYGON tables
310            (TestPostGISShapestorePolygon): Most tests are now in PolygonTests
311            so derive from that
312            (TestPostGISShapestoreMultiPolygon): New class with tests for
313            MUTLIPOLYGON tables
314    
315            * test/postgissupport.py (PostGISDatabase.initdb): Allow the
316            tables argument to have tuples with three items to override the
317            WKT type used.
318            (PostgreSQLServer.get_default_static_data_db): Use the above to
319            create a polygon table with MUTLIPOLYGONs
320            (point_to_wkt, coords_to_point, polygon_to_wkt, coords_to_polygon)
321            (arc_to_wkt, coords_to_multilinestring): Rename from *_to_wkt to
322            coords_to*
323            (coords_to_multipolygon): New. Convert to MUTLIPOLYGON
324            (wkt_converter): New. Map WKT types to converters
325            (upload_shapefile): New parameter force_wkt_type to use a
326            different WKT type than the default
327    
328  2003-08-25  Bernhard Herzog  <[email protected]>  2003-08-25  Bernhard Herzog  <[email protected]>
329    
330          * Thuban/UI/application.py          * Thuban/UI/application.py

Legend:
Removed from v.1655  
changed lines
  Added in v.1705

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26