1 |
|
2004-11-27 Bernhard Reiter <[email protected]> |
2 |
|
|
3 |
|
* Extensions/svgexport/test/test_svgmapwriter.py: |
4 |
|
Removed Jan from author list as he did not change enough significant |
5 |
|
lines yet. |
6 |
|
|
7 |
|
* Extensions/svgexport/__init__.py: Added Bernhard as author |
8 |
|
of the Extension. |
9 |
|
|
10 |
|
2004-11-27 Jan-Oliver Wagner <[email protected]> |
11 |
|
|
12 |
|
* po/hu.po: New. Hungarian translation. Contributed |
13 |
|
by Norbert Solymosi. |
14 |
|
|
15 |
|
2004-11-26 Bernhard Herzog <[email protected]> |
16 |
|
|
17 |
|
* Extensions/svgexport/test/test_svgmapwriter.py |
18 |
|
(Testobjectexport.test_transparent_polygon): Commented out some |
19 |
|
debug prints |
20 |
|
|
21 |
|
2004-11-24 Jan-Oliver Wagner <[email protected]> |
22 |
|
|
23 |
|
Fix broken tests for svg extension and added svg legend |
24 |
|
to Experimental menu. |
25 |
|
|
26 |
|
* Extensions/svgexport/test/test_svgmapwriter.py: Fix to have |
27 |
|
the test run correctly even if the extension is a package. |
28 |
|
Also removed the "import Thuban" which makes no sense. |
29 |
|
|
30 |
|
* Extensions/svgexport/__init__.py: Fix to have the extensions' |
31 |
|
test module also be executed from the global test routine. |
32 |
|
This is done by looking for the absense of the DISPLAY variable. |
33 |
|
|
34 |
|
* Extensions/svgexport/maplegend.py: Moved the menu entry from Extensions |
35 |
|
to Experimental menu since this module has yet not reached a stable |
36 |
|
status (ie. 1.0). |
37 |
|
|
38 |
|
2004-11-22 Bernhard Reiter <[email protected]> |
39 |
|
|
40 |
|
* Extensions/svgexport/svgmapwriter.py: |
41 |
|
Added verbose variable and some logging depending on it. |
42 |
|
(class VirtualDC(XMLWriter)): Minor improvement in the polygon loop, |
43 |
|
because counting i is not necessary. |
44 |
|
(class Pen, class Brush): Added simple __str__ methods. |
45 |
|
(SVGRenderer.draw_polygone_shape): Fix #2698 (transparent polygons are |
46 |
|
not exported to svg file) Note: holes still unhandled. |
47 |
|
|
48 |
|
* Extensions/svgexport/test/test_svgmapwriter.py: |
49 |
|
Made a baseclass TestWithDC for test needed a DC. |
50 |
|
Added tests for bug #2698 (transparent polygons are not |
51 |
|
exported to svg file): |
52 |
|
Testobjectexport.test_transparent_polygon() |
53 |
|
|
54 |
|
* Thuban/Model/base.py (UnsetModified): |
55 |
|
Fixed some typos in docstring. |
56 |
|
|
57 |
|
* Thuban/UI/baserenderer.py (BaseRenderer.draw_polygon_shape()): |
58 |
|
Added hints on the used algorithm for handling holes. |
59 |
|
|
60 |
|
2004-11-20 Jan-Oliver Wagner <[email protected]> |
61 |
|
|
62 |
|
Some face lifting for the examples. |
63 |
|
|
64 |
|
* Examples/__init__.py: Make this directory a package. |
65 |
|
|
66 |
|
* Examples/simple_extensions/__init__.py: Make this directory a package. |
67 |
|
|
68 |
|
* Examples/simple_extensions/hello_world.py: Moved entry from Extensions |
69 |
|
menu to Examples menu. |
70 |
|
|
71 |
|
* Examples/simple_extensions/simple_command.py: Some more comments, |
72 |
|
minor changes. |
73 |
|
|
74 |
|
* Examples/simple_extensions/simple_tool.py: Minor changes. |
75 |
|
|
76 |
|
2004-11-20 Jan-Oliver Wagner <[email protected]> |
77 |
|
|
78 |
|
Changed way of extension registry for wms and added extension |
79 |
|
registry for umn_mapserver extension. |
80 |
|
|
81 |
|
* Extensions/wms/__init__.py: Added registry entry and the importing |
82 |
|
of the actual wms module. Included a test for the required PyOGCLib. |
83 |
|
|
84 |
|
* Extensions/wms/wms.py: Removed registry entry (moved to __init__.py). |
85 |
|
|
86 |
|
* Extensions/umn_mapserver/__init__.py: Added registry entry and the |
87 |
|
importing of the actual umn mapserver management modules. |
88 |
|
Included a test for the required Python MapScript. |
89 |
|
|
90 |
|
2004-11-20 Jan-Oliver Wagner <[email protected]> |
91 |
|
|
92 |
|
Changed way of extension registry for importAPR, bboxdump |
93 |
|
and added extension registry for svgexport.extension registry for |
94 |
|
svgexport. |
95 |
|
|
96 |
|
* Extensions/importAPR/__init__.py: Added registry entry and the importing |
97 |
|
of the actual importAPR module. |
98 |
|
|
99 |
|
* Extensions/importAPR/importAPR.py: Removed registry entry (moved to |
100 |
|
__init__.py). |
101 |
|
|
102 |
|
* Extensions/bboxdump/__init__.py: Added registry entry and the importing |
103 |
|
����of the actual bboxdump module. |
104 |
|
|
105 |
|
* Extensions/bboxdump/bboxdump.py: Removed registry entry (moved to |
106 |
|
����__init__.py). |
107 |
|
|
108 |
|
* Extensions/svgexport/__init__.py: Added registry entry and the importing |
109 |
|
of the svgsaver module. |
110 |
|
|
111 |
|
* Extensions/svgexport/svgsaver.py: Moved the menu entry from Extensions |
112 |
|
to Experimental menu since this module has yet not reached a stable |
113 |
|
status (ie. 1.0). |
114 |
|
|
115 |
|
2004-11-18 Jan-Oliver Wagner <[email protected]> |
116 |
|
|
117 |
|
Now the hit test considers the size of point symbols. |
118 |
|
|
119 |
|
* Thuban/UI/viewport.py (ViewPort._hit_point): Added optional parameter |
120 |
|
'size' defaulting to the previously fixed value 5. |
121 |
|
Extended doc-string. |
122 |
|
(Viewport._find_shape_in_layer): Resolved FIXME regarding flexibility |
123 |
|
for symbols. |
124 |
|
Now the size of the largest point symbol is determined to find out |
125 |
|
about whether the point has been hit. |
126 |
|
This fixes the problem that only clicks inside a fixed distance of |
127 |
|
5 where found. |
128 |
|
|
129 |
|
2004-11-17 Jan-Oliver Wagner <[email protected]> |
130 |
|
|
131 |
|
Another open issue fixed regarding sizeable symbols: correct rendering of |
132 |
|
selected symbols. |
133 |
|
|
134 |
|
* Thuban/UI/renderer.py (ScreenRenderer.draw_selection_incrementally): |
135 |
|
Added consideration of the specific size of point symbols. |
136 |
|
The property for each point symbol is retrieved and the size applied |
137 |
|
for the rendering method. |
138 |
|
Added doc-string. |
139 |
|
|
140 |
|
2004-11-16 Jan-Oliver Wagner <[email protected]> |
141 |
|
|
142 |
|
Changed way of Extension Registry for gns2shp and profiling. |
143 |
|
|
144 |
|
* Extensions/gns2shp/gns2shp.py: Removed registry entry (moved to |
145 |
|
__init__.py). |
146 |
|
|
147 |
|
* Extensions/gns2shp/__init__.py: Added registry entry and the importing |
148 |
|
of the actual gns2shp module. |
149 |
|
|
150 |
|
* Extensions/profiling/profiling.py: Removed registry entry (moved to |
151 |
|
__init__.py). |
152 |
|
|
153 |
|
* Extensions/profiling/__init__.py: Added registry entry and the importing |
154 |
|
of the actual profiling module. |
155 |
|
|
156 |
|
2004-10-28 Bernhard Reiter <[email protected]> |
157 |
|
|
158 |
|
* Extensions/svgexport/: Minor improvements to doc strings. |
159 |
|
|
160 |
|
2004-10-07 Jan-Oliver Wagner <[email protected]> |
161 |
|
|
162 |
|
Further elements for sizable point objects now |
163 |
|
making this feature usable though not yet complete. |
164 |
|
|
165 |
|
* Thuban/Model/save.py (SessionSaver.write_classification): Write |
166 |
|
attribute 'size' for cldata when the shape layer is of point type. |
167 |
|
This also now make the test_load.py tests happy. |
168 |
|
|
169 |
|
* Thuban/Model/classgen.py (CustomRamp.GetProperties): Added size |
170 |
|
gradient. |
171 |
|
|
172 |
|
* Thuban/UI/classifier.py (ID_SELPROP_SPINCTRL): Renamed to |
173 |
|
ID_SELPROP_SPINCTRL_LINEWIDTH. |
174 |
|
(ID_SELPROP_SPINCTRL_LINEWIDTH): New Id replaces ID_SELPROP_SPINCTRL. |
175 |
|
(ID_SELPROP_SPINCTRL_SIZE): New Id. |
176 |
|
(SelectPropertiesDialog.__init__): Added a second spin control |
177 |
|
for the size in case the corresponding layer is of point type. |
178 |
|
(SelectPropertiesDialog._OnSpin): Renamed to _OnSpinLineWidth. |
179 |
|
(SelectPropertiesDialog._OnSpinLineWidth): New. Former _OnSpin. |
180 |
|
(SelectPropertiesDialog._OnSpinSize): New. Set size of property |
181 |
|
and refresh preview. |
182 |
|
|
183 |
|
|
184 |
|
|
185 |
|
2004-10-04 Martin Schulze <[email protected]> |
186 |
|
|
187 |
|
* Extensions/wms/test/test_parser.py |
188 |
|
(TestWMSCapabilitiesParser.test_compareLists): Added missing |
189 |
|
self-test for compareLists() |
190 |
|
(TestWMSCapabilitiesParser.test_compareDicts): Added missing |
191 |
|
self-test for compareDicts() |
192 |
|
(TestWMSCapabilitiesParser.test_compareLists): Adding more tests |
193 |
|
to verify the test routine fails with non-equal arguments |
194 |
|
(TestWMSCapabilitiesParser.test_compareDicts): Adding more tests |
195 |
|
to verify the test routine fails with non-equal arguments |
196 |
|
|
197 |
|
2004-10-03 Jan-Oliver Wagner <[email protected]> |
198 |
|
|
199 |
|
First elements for sizeable point objects. |
200 |
|
|
201 |
|
* Resources/XML/thuban-1.1.dtd: Added size attribute to cldata. |
202 |
|
|
203 |
|
* Data/iceland_sample_size.thuban: New. Sample for sized point objects. |
204 |
|
|
205 |
|
* test/test_load.py (ClassificationTest.TestLayers): Added SetSize in case |
206 |
|
of a corresponding argument is given. |
207 |
|
(TestSymbolSize): New. Test the size attribute of cldata. |
208 |
|
|
209 |
|
* Thuban/Model/classification.py: Removed some trailing whitespaces. |
210 |
|
(ClassGroupProperties.__init__): Set default size. |
211 |
|
(ClassGroupProperties.SetProperties): Set the size. |
212 |
|
(ClassGroupProperties.GetSize): New. Return the size. |
213 |
|
(ClassGroupProperties.SetSize): New. Set the size. |
214 |
|
(ClassGroupProperties__eq__): Compare also size. |
215 |
|
(ClassGroupProperties__repr__): Print also size. |
216 |
|
|
217 |
|
* Thuban/Model/load.py (SessionLoader.start_cldata): Also parse |
218 |
|
the size attribute. |
219 |
|
|
220 |
|
* Thuban/UI/classifier.py (ClassDataPreviewer.Draw): Added doc-string. |
221 |
|
Also, now there is a return value that indicates whether the drawing |
222 |
|
size exceeded the given rect extent and if so the new extent. |
223 |
|
Finally, point objects are drawn depending on the size. If either |
224 |
|
the width or height is exceeded, the new extent is returned. |
225 |
|
(ClassRenderer.Draw): Now when calling the previewer drawing function, |
226 |
|
evaluate the return value and, if not None, adapt the grid widget size |
227 |
|
accordingly and redraw again. |
228 |
|
|
229 |
|
* Thuban/UI/baserenderer.py (BaseRenderer.draw_shape_layer_incrementally): |
230 |
|
If the draw function is for points, call it with the size as additional |
231 |
|
parameter. |
232 |
|
(BaseRenderer.draw_point_shape): Added additional, optional parameter for |
233 |
|
the size. Compute the radius using the size. |
234 |
|
|
235 |
|
* Extensions/importAPR/apr.py (APR_BMkSym.GetThubanProp): Now |
236 |
|
that Thuban supports size, apply this correctly. |
237 |
|
|
238 |
|
* Extensions/importAPR/importAPR.py: Bumped version to 0.1.1. |
239 |
|
|
240 |
|
2004-10-03 Jan-Oliver Wagner <[email protected]> |
241 |
|
|
242 |
|
* Doc/manual/thuban-manual-de.xml: Started translation of |
243 |
|
Map chapter. |
244 |
|
|
245 |
|
2004-10-01 Martin Schulze <[email protected]> |
246 |
|
|
247 |
|
* Extensions/wms/properties.py (wmsProperties.__init__): Extended |
248 |
|
argument for general use through properties-dialog selector |
249 |
|
|
250 |
|
* Thuban/UI/classifier.py: Register properties dialog classes for |
251 |
|
both provided layer classes/types. |
252 |
|
|
253 |
|
* Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): The |
254 |
|
map can be retrieved through the parent which is passed to the |
255 |
|
constructor anyway and doesn't require an argument of its own, |
256 |
|
required for the unification of arguments for general use through |
257 |
|
properties-dialog selector. |
258 |
|
(MainWindow.OpenOrRaiseDialog): Move the logic for checking |
259 |
|
whether a dialog is already opened (and raising it to the users |
260 |
|
attention) and creating a new dialog into a function of its own |
261 |
|
(MainWindow.OpenLayerProperties): Use the new OpenOrRaiseDialog() |
262 |
|
method |
263 |
|
(MainWindow.OpenLayerProperties): Utilise the new ClassMapper for |
264 |
|
global registration of properties dialog classes (which are indeed |
265 |
|
layer-specific). |
266 |
|
|
267 |
|
* Thuban/UI/classifier.py (Classifier.__init__): Unify arguments |
268 |
|
for general use through properties-dialog selector, the map can be |
269 |
|
retrieved through the parent and doesn't require an argument of |
270 |
|
its own. |
271 |
|
|
272 |
|
* Extensions/wms/wms.py: Register the properties dialog class for |
273 |
|
the provided WMS layer |
274 |
|
|
275 |
|
2004-09-28 Jan-Oliver Wagner <[email protected]> |
276 |
|
|
277 |
|
New feature: Registry for Extensions. |
278 |
|
|
279 |
|
* Thuban/UI/extensionregistry.py: This module defines a registry for |
280 |
|
Extensions. |
281 |
|
|
282 |
|
* Thuban/UI/about.py (About.__init__): Added description |
283 |
|
of the registered extensions with all of the information. |
284 |
|
|
285 |
|
* Thuban/Model/extension.py (Extension): Improved doc-string. |
286 |
|
|
287 |
|
* Extensions/gns2shp/gns2shp.py, Extensions/importAPR/importAPR.py, |
288 |
|
Extensions/bboxdump/bboxdump.py, Extensions/profiling/profiling.py, |
289 |
|
Extensions/wms/wms.py: Added registration of the extension. |
290 |
|
|
291 |
|
2004-09-27 Bernhard Reiter <[email protected]> |
292 |
|
|
293 |
|
More fixes to svgexport to make used ids unique and |
294 |
|
conforming to XML's Name production. |
295 |
|
|
296 |
|
* Extensions/svgexport/test/test_svgmapwriter.py: Added new tests |
297 |
|
test_xml_id_constraints(), test_make_ide_nosetbaseid() and |
298 |
|
test_make_id_nonintegersetid(). Switched SetID and SetBaseID. |
299 |
|
Added Bernhard R. as author. |
300 |
|
* Extensions/svgexport/svgmapwriter.py (make_id): Using "_" as |
301 |
|
concatenation char now (makes test_make_ide_nosetbaseid() valid). |
302 |
|
Also transform second id part with "%d" and catch the TypeError |
303 |
|
to raise SVGMapWriterError (making test_make_id_nonintegersetid() ok). |
304 |
|
Corrected typo inBernhard's author line. |
305 |
|
(SetBaseID): Return the transformed base id. Transform characters |
306 |
|
which are not alnum() or in ".-_" to binascii.b2a_hex(). Added |
307 |
|
import binascii. If to be set string starts with "xml" or so, add "t". |
308 |
|
(draw_shape_layer_incrementally): use the returned value of SetBaseID |
309 |
|
for used_baseids checks. |
310 |
|
|
311 |
|
2004-09-25 Bernhard Herzog <[email protected]> |
312 |
|
|
313 |
|
* test/test_layer.py (TestLayer.test_arc_layer_with_projection): |
314 |
|
Remove a debug print and some tab characters. |
315 |
|
|
316 |
|
2004-09-25 Bernhard Reiter <[email protected]> |
317 |
|
|
318 |
|
* Extensions/svgexport/svgmapwriter.py: Added Bernhard R. as Author. |
319 |
|
(SetBaseID, SetID, make_id): Improved docstring comments to explain |
320 |
|
the interaction of the three functions and the XML id contrains. |
321 |
|
|
322 |
|
|
323 |
|
2004-09-23 Jan-Oliver Wagner <[email protected]> |
324 |
|
|
325 |
|
* Doc/ThubanModel.xmi: New. UML file for Thuban Model |
326 |
|
Module. |
327 |
|
|
328 |
|
* Doc/README: Added info on ThubanModel.xmi. |
329 |
|
|
330 |
|
2004-09-23 Jan-Oliver Wagner <[email protected]> |
331 |
|
|
332 |
|
* Doc/README: New. Some info about how to generate technical |
333 |
|
documentation from the source code. |
334 |
|
This text was send to the Thuban developer mailing list on |
335 |
|
September 21st 2004 by Bernhard Reiter. |
336 |
|
|
337 |
|
2004-09-21 Bernhard Reiter <[email protected]> |
338 |
|
|
339 |
|
Improved the svgexport to only use unique ids. Will issues |
340 |
|
an error message dialoge when two layer names are the same. |
341 |
|
ShapeIDs are now added with a dash within the svg ids. |
342 |
|
|
343 |
|
* Extensions/svgexport/svgmapwriter.py (SVGMapWriterError): New. |
344 |
|
* Extensions/svgexport/test/test_svgmapwriter.py: Added imports |
345 |
|
(TestSVGRenderer): New test class with test_make_in() and |
346 |
|
test_check_for_layer_name_clash() |
347 |
|
* Extensions/svgexport/svgmapwriter.py (SVGRenderer): Fixed __init__() |
348 |
|
and draw_shape_layer_incrementally() to not use a baseid twice, |
349 |
|
satisfying test_check_for_layer_name_clash() |
350 |
|
(VirtualDC.make_id): Use a dash between baseit and id, satisfies |
351 |
|
test_make_in(). |
352 |
|
* Extensions/svexport/svgsaver.py: Import SVGMapWriterError, wxOK |
353 |
|
and wxICON_HAND. |
354 |
|
(write_to_svg): Put dc and rendering in a try statement and on |
355 |
|
catching SVGmapWriterError notify the user and delete the target file. |
356 |
|
|
357 |
|
2004-09-20 Bernhard Reiter <[email protected]> |
358 |
|
|
359 |
|
* Model/base.by, Model/layer.py: Fixed typos in docstrings. |
360 |
|
|
361 |
|
2004-09-03 Jan Sch�ngel <[email protected]> |
362 |
|
|
363 |
|
* Extensions/umn_mapserver/mapfile(MF_Class.add_thubanstyle): Fix a |
364 |
|
small bug with the line color. Now the line color will now only set |
365 |
|
if it is set in Thuban an not Transparent. |
366 |
|
|
367 |
|
* Extensions/umn_mapserver/mf_export(tblayer_to_map): Fixed a bug with |
368 |
|
deleting the layers from mapfile. Now all layers will delete backwards |
369 |
|
from the last. |
370 |
|
|
371 |
|
2004-08-20 Silke Reimer <[email protected]> |
372 |
|
|
373 |
|
* Thuban/Model/layer.py: |
374 |
|
Fixes bug in projection handling: Otherwise very large region might not |
375 |
|
have valid values in the layer's projection. |
376 |
|
|
377 |
|
2004-08-20 Silke Reimer <[email protected]> |
378 |
|
|
379 |
|
* Thuban/UI/about.py: |
380 |
|
small changes to be consistent with coding style. |
381 |
|
|
382 |
|
2004-08-13 Martin Schulze <[email protected]> |
383 |
|
|
384 |
|
* Extensions/wms/test/test_ogclib.py (TestOGCLib.compare_URLs): |
385 |
|
Adjusted a comment |
386 |
|
|
387 |
|
2004-08-11 Silke Reimer <[email protected]> |
388 |
|
|
389 |
|
* Thuban/UI/about.py: Small changes to encoding related stuff to avoid |
390 |
|
too many and too enhanced imports of locale |
391 |
|
|
392 |
|
2004-08-10 Silke Reimer <[email protected]> |
393 |
|
|
394 |
|
* Thuban/UI/about.py: Fixed encoding problem of about dialog: Added |
395 |
|
function unicodeToLocale() to convert special characters to users |
396 |
|
locale encoding |
397 |
|
|
398 |
|
2004-08-10 Jan-Oliver Wagner <[email protected]> |
399 |
|
|
400 |
|
* Doc/technotes/coding_guidelines.txt: Added rule 'Method names start with |
401 |
|
lower case letter' |
402 |
|
|
403 |
|
2004-08-09 Jan Sch�ngel <[email protected]> |
404 |
|
|
405 |
|
* ChangeLog: Rewrite the last ChangeLog entry to follow |
406 |
|
the standard way. |
407 |
|
|
408 |
|
* Extensions/umn_mapserver/mapfile: Moved the import AnnotationLayer to |
409 |
|
the function where it is needed, because it don't works if it stands |
410 |
|
at the beginning. |
411 |
|
(MF_Layer.__init__): Removed the extra numclassed variable. Now |
412 |
|
numclasses from the mapscript will be used. |
413 |
|
(MF_Layer.get_index): New. Return the index of the layer in mapfile. |
414 |
|
(MF_Layer.set_classes): New. A Classlist will be set to the layer. |
415 |
|
(MF_Layer.set_metadata): New. A Metadata mapscript object will set. |
416 |
|
(MF_Layer.remove_allclasses): New. All class of the layer will remove. |
417 |
|
(MF_Map.create_new_layer): New. A new Layer is created and associated |
418 |
|
with the mapscript object. |
419 |
|
(MF_Map.set_layerorder): New. The Layer order like in thuban is set in |
420 |
|
the mapscript. |
421 |
|
(MF_Map.add_thubanlayer): Now a new layerobj is created if no one is |
422 |
|
linked to the layer in thuban, else the layerobject linked to the |
423 |
|
thubanlayer will be used. |
424 |
|
AnnotationLayer will now store the filename of the shapefile. |
425 |
|
(MF_Map.remove_layer): If a layer is removed the associated object |
426 |
|
must be set new. |
427 |
|
|
428 |
|
* Extensions/umn_mapserver/mf_export.py(tb_layer_to_map): Add all |
429 |
|
layers which are exists in thuban to the mapobj. All removed Layers |
430 |
|
will be removed from the mapobj. |
431 |
|
Added comments to all functions. |
432 |
|
(thuban_to_map): No layer will be removed here. |
433 |
|
|
434 |
|
* Extensions/umn_mapserver/mf_handle.py |
435 |
|
(_has_umn_mapobj_and_selectedlayer): Activating the layer menu. Now |
436 |
|
Layersettings for the mapserver kann be edited. |
437 |
|
|
438 |
|
* Extensions/umn_mapserver/mf_import.py: Now all layers which are |
439 |
|
imported, will be linked with the associated MF_Layer. |
440 |
|
(import_mapfile): All layers, which are not selected, will be removed. |
441 |
|
Disable the "import layer from mapfile" menu option. |
442 |
|
|
443 |
|
* Extensions/umn_mapserver/sample/iceland.map: Set the status of the |
444 |
|
Annotation Layer from DEFAULT to OFF. The DEFAULT setting turns the |
445 |
|
layer on permanently. |
446 |
|
|
447 |
|
2004-08-03 Jan Sch�ngel <[email protected]> |
448 |
|
|
449 |
|
* Extensions/umn_mapserver/mapfile.py(MF_Metadata.remove_allmetadata): |
450 |
|
New. This function removes all metadata |
451 |
|
(MF_Layer.set_group): New. Set the group setting. |
452 |
|
(MF_Layer.get_group): New. Get the group setting. |
453 |
|
(MF_Map): Removed the extra numlayers variable, used the mapscript |
454 |
|
parameter instead. |
455 |
|
(MF_Map.get_numlayers): New. This get numlayers. |
456 |
|
(MF_Map.remove_all_layers): New. Removes all layers from the mapobj. |
457 |
|
(MF_Map.add_thubanlayer): Replaced the exception handling by a check |
458 |
|
if the object is an instance. Also added the annotation layer here to |
459 |
|
export, but only the layer is created in the mapfile. |
460 |
|
|
461 |
|
* Extensions/umn_mapserver/mf_export.py(export_mapfile): Removed |
462 |
|
the check if a mapobj exist, because its not needed anymore. The |
463 |
|
export function is only available if a mapobj exist. |
464 |
|
Use the new function to remove all layers. |
465 |
|
|
466 |
|
* Extensions/umn_mapserver/mf_handle.py(Layer_Dialog): Added a group |
467 |
|
option and the metadata button. The layer dialog is temporary disabled. |
468 |
|
(Metadata_CustomDataTable): Added some functions to show the grid |
469 |
|
correct. |
470 |
|
|
471 |
|
* Extensions/umn_mapserver/mf_import.py: Moved the code for showing |
472 |
|
the number of layer from import_mapfile to this function. |
473 |
|
(AnnotationLayer): New. This Class shows the Annotation layer in |
474 |
|
thuban. The layer don't do anything. It's only to show the layer |
475 |
|
and to save the layer order. |
476 |
|
(add_annotationlayer): New. Import an annotation layer to thuban. |
477 |
|
(select_layer2import): New. Import only layers to thuban and not |
478 |
|
the other settings like projection or scalebar. |
479 |
|
(create_new_mapfile): Moved the _has_umn_mapobj function and the |
480 |
|
create_new_mapfile functions from mf_handle.py to mf_import.py. |
481 |
|
|
482 |
|
* Extensions/umn_mapserver/sample/iceland.map: Added the group |
483 |
|
parameter to the roads and cultural layers. Also added a new |
484 |
|
Annotation Layer for the cultural points. |
485 |
|
|
486 |
|
* Extensions/umn_mapserver/sample/iceland.html: Added the select |
487 |
|
option for the annotation layer. |
488 |
|
|
489 |
|
* Extensions/umn_mapserver/sample/index.html: Added the start |
490 |
|
parameter for the annotation layer. |
491 |
|
|
492 |
|
2004-08-01 Jan-Oliver Wagner <[email protected]> |
493 |
|
|
494 |
|
* Doc/manual/thuban-manual-de.xml (Chapter Session Management): |
495 |
|
translation completed. |
496 |
|
|
497 |
|
* Doc/manual/thuban-manual.xml (Chapter Session Management): |
498 |
|
Fixed unprecise description for Save Session. |
499 |
|
|
500 |
|
2004-07-31 Jan-Oliver Wagner <[email protected]> |
501 |
|
|
502 |
|
Started translation of Users Manual into german. |
503 |
|
|
504 |
|
* Doc/manual/thuban-manual-de.xml: New. German Users Manual. |
505 |
|
|
506 |
|
* Doc/manual/Makefile: Added build instructions for german |
507 |
|
users manual. |
508 |
|
|
509 |
|
* Doc/manual/thuban-manual.xml: Minor corrections in Introduction. |
510 |
|
|
511 |
|
2004-07-28 Jan Sch�ngel <[email protected]> |
512 |
|
|
513 |
|
* Extensions/umn_mapserver/mapfile.py(MF_Metadata): Changed all class |
514 |
|
functions. Now all metadata will handle by the function and its not |
515 |
|
needed to initialize it from outside. Therefor the associated mapobj |
516 |
|
will be stored in the Metadata Object. So we can use the special |
517 |
|
functions from the associated mapobj to get the Metadata. |
518 |
|
Therefor all initialization code for the metadata is removed from the |
519 |
|
other classes. |
520 |
|
(MF_Layer): Added a function to get the metadata object. |
521 |
|
(MF_Map): Added a function to set the mappath, the path where |
522 |
|
the mapfile ist stored. |
523 |
|
|
524 |
|
* Extensions/umn_mapserver/mf_export.py(thuban_to_map): Changed the code |
525 |
|
to set the extent in the mapfile. Now the code is set by the displayed |
526 |
|
data in the Thuban-view. |
527 |
|
(export_mapfile): The shapepath is now set empty, until relative |
528 |
|
pathnames are supported. |
529 |
|
|
530 |
|
* Extension/umn_mapserver/mf_handle.py: Added a dialog to handle |
531 |
|
metadata. Yet only mapfile metadata are supported. Layer and class |
532 |
|
supported are not implemented. |
533 |
|
Added a dialog to handle layer informations. The dialog only shows the |
534 |
|
selected layer at the moment. |
535 |
|
|
536 |
|
* Extensions/umn_mapserver/mf_import.py(import_mapfile): Changed the |
537 |
|
code for setting the extent in thuban. Now the extent is set to the |
538 |
|
given extent from the mapfile. |
539 |
|
Fixed a logical mistake. Now the extent is set when realy a layer is |
540 |
|
loaded, and not if one is selected to load. |
541 |
|
|
542 |
|
* Extensions/umn_mapserver/sample/iceland.html: Added code to zoom and |
543 |
|
move the shown map in the browser. |
544 |
|
|
545 |
|
* Extensions/umn_mapserver/sample/iceland.map: Added a new metadata |
546 |
|
line to the mapobj and added metadata to the political layer. |
547 |
|
|
548 |
|
* Extensions/umn_mapserver/test/test_mapserver.py: Changed the test |
549 |
|
for Metadata. |
550 |
|
|
551 |
|
2004-07-26 Martin Schulze <[email protected]> |
552 |
|
|
553 |
|
* Thuban/Lib/classmapper.py (ClassMapper.has): Added the new |
554 |
|
ClassMapper |
555 |
|
|
556 |
|
* test/test_classmapper.py (TestMapping.test_mapper): Added a Test |
557 |
|
case for the new ClassMapper |
558 |
|
|
559 |
|
|
560 |
|
2004-07-22 Bernhard Herzog <[email protected]> |
561 |
|
|
562 |
|
* Thuban/UI/viewport.py (ViewPort.VisibleExtent): New. Return the |
563 |
|
visible extent of the map in projected coordinates |
564 |
|
|
565 |
|
* test/test_viewport.py (SimpleViewPortTest.test_default_size) |
566 |
|
(SimpleViewPortTest.test_init_with_size): Add some VisibleExtent() |
567 |
|
tests. |
568 |
|
(SimpleViewPortTest.test_visible_extent): New. The real test for |
569 |
|
VisibleExtent() |
570 |
|
|
571 |
|
2004-07-22 Bernhard Herzog <[email protected]> |
572 |
|
|
573 |
|
* test/test_viewport.py: Use support.run_tests as the main |
574 |
|
function when running asa script. |
575 |
|
|
576 |
|
2004-07-22 Jan Sch�ngel <[email protected]> |
577 |
|
|
578 |
|
* Extensions/umn_mapserver/mf_export.py: Added "import os" |
579 |
|
Removed the old "import Thuban.UI.mainwindow" code. |
580 |
|
(tbextent_to_map): Removed the extra function and at the code direct |
581 |
|
to "thuban_to_map" function. |
582 |
|
(write_creatorcomment): Added. Now a short comment is added to the |
583 |
|
beginning of an generated mapfile. |
584 |
|
(export_mapfile): Now the Path and filename are saved in to variables, |
585 |
|
and not together in one variable. This is needed for the new |
586 |
|
write_creatorcomment function. |
587 |
|
|
588 |
|
* Extensions/umn_mapserver/mf_import.py (import_mapfile): Added the |
589 |
|
import module "re". Also added Range and the ClassGroupRange import |
590 |
|
from Thuban. Both are needed for the new range expression import. |
591 |
|
(create_rangeexpression): Added. Creates a Range Expression in Thuban |
592 |
|
style from a given mapfile expression. |
593 |
|
(added_rasterlayer): Make some small code changes. The shapepath is |
594 |
|
now stored in an extra variable and the clazz_name is set empty if no |
595 |
|
class name set in the mapfile. |
596 |
|
Changed the Error message for Range Expressions, becaus the new |
597 |
|
function create a error string which will be shown in the dialog. |
598 |
|
|
599 |
|
* Extensions/umn_mapserver/test/test_mapserver.py: Added a test for the |
600 |
|
range expression import. |
601 |
|
|
602 |
|
2004-07-21 Jan-Oliver Wagner <[email protected]> |
603 |
|
|
604 |
|
* Extensions/umn_mapserver/README: Added hint that |
605 |
|
installation as root can be avoided. Removed all tabs. |
606 |
|
|
607 |
|
2004-07-16 Bernhard Herzog <[email protected]> |
608 |
|
|
609 |
|
* test/test_viewport.py |
610 |
|
(ViewPortTest.test_changing_map_projection): Check that changing |
611 |
|
the projection of an empty map shown in a viewport doesn't lead to |
612 |
|
exceptions in the viewport's handler for the |
613 |
|
MAP_PROJECTION_CHANGED messages |
614 |
|
|
615 |
|
* Thuban/UI/viewport.py (ViewPort.map_projection_changed): Only |
616 |
|
try to keep the same region visible when the map actually contains |
617 |
|
something |
618 |
|
|
619 |
|
2004-07-15 Jan Sch�ngel <[email protected]> |
620 |
|
|
621 |
|
* Extensions/umn_mapserver/mapfile.py: Added a function to get the |
622 |
|
mappath directly from the mapobj. Is needed because of the changes |
623 |
|
in mf_import.py. |
624 |
|
(MF_Layer.add_thubanclass): Added a new comment. |
625 |
|
(MF_Map.set_extent): Fixed a bug with exporting empty mapobj. If the |
626 |
|
mapobj is empty there is no extent get from thuban an so no one can |
627 |
|
set to th mapobj. |
628 |
|
|
629 |
|
* Extensions/umn_mapserver/mf_import.py (import_mapfile): Updated |
630 |
|
the discription. |
631 |
|
Split the funktion in to three smaller ones. The new functions are |
632 |
|
add_rasterlayer, add_polygonlayer and select_layer2import. |
633 |
|
Removed the mapfilepath and filepath initialisation, because its know |
634 |
|
include in the new functions. |
635 |
|
Now nothing will be imported if cancel is pressed in the |
636 |
|
layer choice dialog. |
637 |
|
|
638 |
|
2004-07-14 Jan Sch�ngel <[email protected]> |
639 |
|
|
640 |
|
* Extensions/umn_mapserver/mapfile.py: Added ClassGroupDefault to |
641 |
|
import. |
642 |
|
(MF_Symbolset): Removed the extra variable for numsymbols. |
643 |
|
(MF_Class.__init__): Added a comment to the exception clause. |
644 |
|
Removed the extent init, because it was not needed anymore. |
645 |
|
(MF_Layer.add_thubanclass): Added the code to set the class name to |
646 |
|
the expression value from thuban if no label is defined. |
647 |
|
Added the code to export Range expressions from thuban to the mapfile. |
648 |
|
(MF_Map.set_extent): Removed the exception and replace it by some if |
649 |
|
code. If the size of a map is not defined the size will be set to 1,1. |
650 |
|
This is necessary because if the extent is set, mapscript checks if |
651 |
|
the size is greater than zero. |
652 |
|
(MF_Web): Added the get and set function for the template. |
653 |
|
|
654 |
|
* Extensions/umn_mapserver/mf_export.py: Added the function to check |
655 |
|
if a mapobject exists and used it to set the status of the menu items. |
656 |
|
If no mapfile exists the settings could not be edditied. |
657 |
|
Define after which menuitem the exportitem will include. |
658 |
|
|
659 |
|
* Extensions/umn_mapserver/mf_handle.py: Removed the import |
660 |
|
Thuban.UI.mainwindow clause, because it is not needed. |
661 |
|
Added the command Refresh() to all "OnChangeColor()" functions, |
662 |
|
because the color preview window was not updated on a color change. |
663 |
|
Added the function to check if a mapobject exists and used it to set the |
664 |
|
status of the menu items. If no mapobject exists the settings could not |
665 |
|
be edditied. |
666 |
|
(Map_Dialog): Moved the imagetype selector from the |
667 |
|
Outputformat_Dialog to Map_Dialog and removed Outputformat_Dialog. |
668 |
|
(Web_Dialog): Removed the name label and added the template textbox. |
669 |
|
|
670 |
|
* Extensions/umn_mapserver/mf_import.py (import_mapfile): Replace |
671 |
|
the exception handling on loading the layers by an if statement. It |
672 |
|
is not necessary to us the exception there. |
673 |
|
The Filepath creation now use os.path.join to build the path. |
674 |
|
|
675 |
|
* Extensions/umn_mapserver/test/test_mapserver.py: Moved the testMap |
676 |
|
definition from global to the setUp function. Now the testMap will |
677 |
|
initialize new on each test. |
678 |
|
|
679 |
|
* Extensions/umn_mapserver/sample/iceland.map: Include three new |
680 |
|
classes in the Line Layer, to test logical Expressions. |
681 |
|
Set the status of the class "Point9" in the Point Layer to off |
682 |
|
|
683 |
|
2004-07-13 Bernhard Herzog <[email protected]> |
684 |
|
|
685 |
|
* Thuban/UI/baserenderer.py |
686 |
|
(BaseRenderer.render_map_incrementally): Fix a logic bug in the |
687 |
|
optimization that tries not to draw layers under a raster layer. |
688 |
|
The bug was harmless. All it effectively did was to produce The a |
689 |
|
strange messages about not being able to draw Layer instances for |
690 |
|
all vector layers below a raster layer which would be invisible |
691 |
|
anyway because the raster layer currently always covers the entire |
692 |
|
window |
693 |
|
|
694 |
|
2004-07-08 Jan Sch�ngel <[email protected]> |
695 |
|
|
696 |
|
* Extensions/umn_mapserver/mapfile.py: Added code to generade and get |
697 |
|
a list of supported outputformats. This formats are not alle supported |
698 |
|
because there is no possibility to get the outputformat without the |
699 |
|
name known. Make some formal changes to the code. |
700 |
|
(MF_Map.set_name()): Fixed a bug if the name is None. |
701 |
|
|
702 |
|
* Extensions/umn_mapserver/mf_handle.py: Removed the image_type import |
703 |
|
statement, because its not needed anymore. The Outputformat is now |
704 |
|
given as string from the object. Make some formal changes to the code. |
705 |
|
|
706 |
|
* Extensions/umn_mapserver/test/test_mapserver.py: Added new test for |
707 |
|
most of the new setting which were added during the last changes. |
708 |
|
Removed the MF_Size Test. |
709 |
|
|
710 |
|
* Extensions/umn_mapserver/test/test.map: Added a new class to the |
711 |
|
cultural Layer to test expressions and the the status of that layer |
712 |
|
from on to default. |
713 |
|
Changed the data path the the correct Thuban Data |
714 |
|
Added the Outputformat Object and Symbol Object |
715 |
|
|
716 |
2004-07-07 Jan Sch�ngel <[email protected]> |
2004-07-07 Jan Sch�ngel <[email protected]> |
717 |
|
|
718 |
* Extensions/umn_mapserver/mapfile.py: Added some new |
* Extensions/umn_mapserver/mapfile.py: Added some new |