1 |
|
2003-10-01 Jan-Oliver Wagner <[email protected]> |
2 |
|
|
3 |
|
* Thuban/UI/tree.py, Thuban/UI/main.py: Remove the #! line as |
4 |
|
it annoys lintian which warns about these files not being |
5 |
|
executable. The #! isn't necessary here since if you absolutely |
6 |
|
must execute them you can always say "python <filename>". |
7 |
|
|
8 |
|
2003-09-26 Bernhard Herzog <[email protected]> |
9 |
|
|
10 |
|
* Thuban/Model/classgen.py (GenQuantiles0): Removed since it's |
11 |
|
only used in GREAT-ER but not used in Thuban itself. When GREAT-ER |
12 |
|
is ported to a newer the import will fail, so it should be noticed |
13 |
|
immediately that this function is gone. |
14 |
|
Fixes RT#1919 |
15 |
|
|
16 |
|
2003-09-26 Bernhard Herzog <[email protected]> |
17 |
|
|
18 |
|
Add a DTD for the projection files and make thuban write valid |
19 |
|
projection files |
20 |
|
|
21 |
|
* Resources/XML/projfile.dtd: New. DTD for thuban's projection |
22 |
|
files |
23 |
|
|
24 |
|
* Thuban/Model/resource.py (ProjFileSaver.write): Use |
25 |
|
'projectionlist' as the name in the document type declaration so |
26 |
|
that it matches the element type of the root element. |
27 |
|
|
28 |
|
* test/test_proj.py (sample_projfile, sample_projfile2): Use |
29 |
|
'projectionlist' as the name in the document type declaration just |
30 |
|
as it is done now in the files thuban would write |
31 |
|
(sample_projfile, sample_projfile_data): Fix spelling of |
32 |
|
"Mercator" |
33 |
|
(TestProjFile.doTestWrite): Validate the written and the expected |
34 |
|
XML data |
35 |
|
(TestProjFile): Derive from ValidationTest so that we can run xml |
36 |
|
validation tests |
37 |
|
|
38 |
|
2003-09-24 Bernhard Herzog <[email protected]> |
39 |
|
|
40 |
|
* Thuban/UI/renderer.py (ExportRenderer.render_legend): Do not |
41 |
|
modify the list returned by map.Layers() in place since it is the |
42 |
|
actual list of layers used by the map. |
43 |
|
|
44 |
|
2003-09-23 Jan-Oliver Wagner <[email protected]> |
45 |
|
|
46 |
|
* Doc/manual/thuban-manual.xml: Added subsection to chapter |
47 |
|
Extensions to describe the extensions coming with the Thuban |
48 |
|
standard package (gns2shp and importAPR). |
49 |
|
|
50 |
|
2003-09-23 Bernhard Herzog <[email protected]> |
51 |
|
|
52 |
|
* libraries/thuban/wxproj.cpp (project_point): if there's an |
53 |
|
inverse but no forward projection, convert to degrees after |
54 |
|
applying the inverse projection. Fixes RT#2096 |
55 |
|
|
56 |
|
* test/test_wxproj.py: New. Test cases for wxproj.so. One test |
57 |
|
implicitly tests for the fix to RT#2096 |
58 |
|
|
59 |
|
* test/support.py (FloatComparisonMixin.assertFloatSeqEqual): |
60 |
|
Check that the sequences have the same lengths |
61 |
|
|
62 |
|
* Resources/Projections/defaults.proj (Geographic projection): Use |
63 |
|
a much more precise value for the to_meter attribute. |
64 |
|
|
65 |
|
2003-09-22 Bernhard Herzog <[email protected]> |
66 |
|
|
67 |
|
* test/support.py (initthuban): Make sure to unset the LANG env. |
68 |
|
var. so that tests that compare translated strings work. Solves RT |
69 |
|
#2094 |
70 |
|
|
71 |
|
2003-09-22 Jan-Oliver Wagner <[email protected]> |
72 |
|
|
73 |
|
Small improvement of APR import. |
74 |
|
|
75 |
|
* Extensions/importAPR/test/test_apr.py (aprTest.test_LClass): |
76 |
|
Added tests for text-ranges. |
77 |
|
|
78 |
|
* Extensions/importAPR/apr.py (APR_LClass.GetThubanRange): Now |
79 |
|
returns a string object if the range is based on text. |
80 |
|
|
81 |
|
* Extensions/importAPR/importAPR.py (import_apr_dialog): Unified |
82 |
|
range retrieval. |
83 |
|
|
84 |
|
2003-09-22 Jan-Oliver Wagner <[email protected]> |
85 |
|
|
86 |
|
Initial version of the importAPR extension which is in |
87 |
|
experimental state. |
88 |
|
|
89 |
|
* /Extensions/importAPR/, /Extensions/importAPR/samples/, |
90 |
|
/Extensions/importAPR/test/: New directories. |
91 |
|
|
92 |
|
* /Extensions/importAPR/samples/README: New: Howto load the samples. |
93 |
|
|
94 |
|
* /Extensions/importAPR/samples/iceland.apr: New: A sample APR |
95 |
|
file which refers to the Thuban Iceland demo data. |
96 |
|
|
97 |
|
* /Extensions/importAPR/test/README: New: Howto execute the tests. |
98 |
|
|
99 |
|
* /Extensions/importAPR/test/test_apr.py: New: Tests for APR classes. |
100 |
|
|
101 |
|
* /Extensions/importAPR/apr.py: New: Classes for ArcView Objects |
102 |
|
as in '.apr'-files. |
103 |
|
|
104 |
|
* /Extensions/importAPR/odb.py: New: Classes for generic ArcView |
105 |
|
ODB Objects as in '.apr', '.avl' and other files. |
106 |
|
|
107 |
|
* /Extensions/importAPR/__init__.py: New: Init to make this |
108 |
|
directory a package. |
109 |
|
|
110 |
|
* /Extensions/importAPR/importAPR.py: New: Import a ArcView |
111 |
|
project file (.apr) and convert it to Thuban. |
112 |
|
|
113 |
|
2003-09-22 Jan-Oliver Wagner <[email protected]> |
114 |
|
|
115 |
|
* Extensions/gns2shp.gns2shp.py: The main module of gns2shp. |
116 |
|
|
117 |
|
2003-09-19 Jan-Oliver Wagner <[email protected]> |
118 |
|
|
119 |
|
* Doc/manual/thuban-manual.xml: Extended section 'Installation' |
120 |
|
with description on RPM installation and RPM binary package |
121 |
|
creation. |
122 |
|
|
123 |
|
2003-09-18 Bernhard Herzog <[email protected]> |
124 |
|
|
125 |
|
* setup.py (data_files): Only add the mo files if the Locales |
126 |
|
directory actually exists, so that setup.py works with a fresh CVS |
127 |
|
checkout |
128 |
|
|
129 |
|
2003-09-12 Jan-Oliver Wagner <[email protected]> |
130 |
|
|
131 |
|
* Examples/simple_extensions/simple_tool.py: bugfix: Tool is now |
132 |
|
in viewport, not anymore in view |
133 |
|
|
134 |
|
2003-09-04 Jan-Oliver Wagner <[email protected]> |
135 |
|
|
136 |
|
Introducing first Extension (gns2shp). |
137 |
|
|
138 |
|
* Extensions, Extensions/gns2shp, Extensions/gns2shp/test: New. |
139 |
|
|
140 |
|
* Extensions/__init__.py: New. init to make this dir a package. |
141 |
|
|
142 |
|
* Extensions/gns2shp/__init__.py: New. init to make this dir a package. |
143 |
|
|
144 |
|
* Extensions/gns2shp/test/README: New. some info on this test directory. |
145 |
|
|
146 |
|
* Extensions/gns2shp/test/ls.txt: New. test data set (Liechtenstein). |
147 |
|
|
148 |
|
* Extensions/gns2shp/test/test_gns2shp.py: New. Test for correct creation |
149 |
|
of Shapefile from GNS text file format |
150 |
|
|
151 |
|
2003-09-03 Jan-Oliver Wagner <[email protected]> |
152 |
|
|
153 |
|
Fix/workaround for bug #2019: |
154 |
|
https://intevation.de/rt/webrt?serial_num=2019 |
155 |
|
|
156 |
|
* Thuban/UI/identifyview.py (IdentifyView.ID_STOP): New. |
157 |
|
(IdentifyView.__init__): Added another button that allows to |
158 |
|
stop the identify mode. |
159 |
|
(IdentifyView.OnStop): New. Stops the identify mode. |
160 |
|
|
161 |
|
2003-09-03 Jan-Oliver Wagner <[email protected]> |
162 |
|
|
163 |
|
Introducing a new exception dialog that allows to exit the |
164 |
|
application immediately. |
165 |
|
This fixes bug #2060: https://intevation.de/rt/webrt?serial_num=2060 |
166 |
|
|
167 |
|
* Thuban/UI/exceptiondialog.py: New. A special exception dialog. |
168 |
|
|
169 |
|
* Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog): |
170 |
|
Made strings available to translations. Exchanged the simple |
171 |
|
ScrolledMessageDialog by the new ExceptionDialog. |
172 |
|
|
173 |
|
2003-09-01 Bernhard Herzog <[email protected]> |
174 |
|
|
175 |
|
* NEWS: New. Summary of changes and release notes. |
176 |
|
|
177 |
|
* MANIFEST.in: Add NEWS |
178 |
|
|
179 |
|
2003-09-01 Bernhard Herzog <[email protected]> |
180 |
|
|
181 |
|
* MANIFEST.in: Correct the include statement for the mo-files and |
182 |
|
include the documentation too. |
183 |
|
|
184 |
|
* setup.py (data_files): Add the .mo files |
185 |
|
(setup call): Up to version 0.9.0 |
186 |
|
|
187 |
|
2003-09-01 Bernhard Herzog <[email protected]> |
188 |
|
|
189 |
|
* Thuban/UI/dbdialog.py (ChooseDBTableDialog.__init__): Change the |
190 |
|
parameter list to just parent and session |
191 |
|
(ChooseDBTableDialog.__set_properties): Removed. Setting the |
192 |
|
selection of empty list boxes is not allowed (and produces C++ |
193 |
|
assertion errors) and the rest of the setup is better done in |
194 |
|
__init__ anyway. |
195 |
|
(ChooseDBTableDialog.OnCancel, ChooseDBTableDialog.OnOK) |
196 |
|
(ChooseDBTableDialog.OnLBDClick, DBDialog.OnOK): Use the Python |
197 |
|
builtins True/False for booleans to avoid warnings from wxPython |
198 |
|
|
199 |
|
* Thuban/UI/mainwindow.py (MainWindow.AddDBLayer): Adapt to new |
200 |
|
ChooseDBTableDialog constructor parameters. |
201 |
|
|
202 |
2003-09-01 Bernhard Herzog <[email protected]> |
2003-09-01 Bernhard Herzog <[email protected]> |
203 |
|
|
204 |
* Thuban/Model/postgisdb.py |
* Thuban/Model/postgisdb.py |
1428 |
|
|
1429 |
* Thuban/Model/range.py, Thuban/version.py: Remove the #! line as |
* Thuban/Model/range.py, Thuban/version.py: Remove the #! line as |
1430 |
it annoys lintian which warns about these files not being |
it annoys lintian which warns about these files not being |
1431 |
executable. The #1 isn't necessary here since if you absolutely |
executable. The #! isn't necessary here since if you absolutely |
1432 |
must execute them you can always say "python <filename>". |
must execute them you can always say "python <filename>". |
1433 |
|
|
1434 |
* Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Remove |
* Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Remove |