1 |
|
2003-04-25 Jonathan Coles <[email protected]> |
2 |
|
|
3 |
|
* Thuban/Model/save.py (SessionSaver.write_projection): Make sure |
4 |
|
to save the name of the projection. |
5 |
|
|
6 |
|
* test/test_save.py (SaveSessionTest.testLayerProjection): New |
7 |
|
test to verify layer projections are saved correctly. |
8 |
|
|
9 |
|
2003-04-25 Jonathan Coles <[email protected]> |
10 |
|
|
11 |
|
* Thuban/Model/proj.py (Projection.SetName): Set the name |
12 |
|
to "Unknown" if name is None. |
13 |
|
(Projection.SetAllParameters): New. Set the projection's |
14 |
|
parameter list to the one supplied. |
15 |
|
(Projection.SetProjection): New. Set the projection's |
16 |
|
properties to those of the supplied Projection. |
17 |
|
|
18 |
|
* Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set |
19 |
|
the dialog title to include the map's title. |
20 |
|
(MainWindow.LayerProjection): Set the dialog title to include |
21 |
|
the layer's title. |
22 |
|
|
23 |
|
* Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate |
24 |
|
error dialogs into a single method call. |
25 |
|
(ProjFrame.__VerifyButtons): Add more states to check. |
26 |
|
(ProjFrame.__GetProjection): Return the current state of an |
27 |
|
edited projection or None. |
28 |
|
(ProjFrame.__FillAvailList): Remove checks for states that |
29 |
|
shouldn't exist. |
30 |
|
(ProjFrame._OnNew): Clear all selected items and supply |
31 |
|
a projection panel if necessary. |
32 |
|
|
33 |
|
* test/test_proj.py (TestProjFile.test): Add tests for |
34 |
|
ProjFile.SetAllParameters, ProjFile.SetProjection, |
35 |
|
ProjFile.SetName. |
36 |
|
|
37 |
|
2003-04-25 Jonathan Coles <[email protected]> |
38 |
|
|
39 |
|
* Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now |
40 |
|
takes an optional argument to select the current projection. |
41 |
|
This does not guarantee that the item is visible due to |
42 |
|
limited wxWindows functionality. Fixes RTBug #1821. |
43 |
|
|
44 |
|
2003-04-25 Jonathan Coles <[email protected]> |
45 |
|
|
46 |
|
* Thuban/Model/load.py (SessionLoader.start_projection): Remember |
47 |
|
the projection name and use it when constructing the Projection |
48 |
|
object. |
49 |
|
|
50 |
|
* Thuban/Model/proj.py (Projection.__init__): Change the default |
51 |
|
value for 'name' to None and then test if name is equal to None |
52 |
|
in the body of the constructor. This way the caller doesn't have to |
53 |
|
know what the default value should be. Namely, useful in load.py |
54 |
|
where we have to pick a default value if the 'name' parameter |
55 |
|
doesn't exist in the XML file. |
56 |
|
|
57 |
|
* test/test_load.py (LoadSessionTest.testLayerProjection): New. |
58 |
|
Tests a file where a layer has a projection. |
59 |
|
|
60 |
|
2003-04-25 Jonathan Coles <[email protected]> |
61 |
|
|
62 |
|
* Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the |
63 |
|
tree for projection information. |
64 |
|
|
65 |
|
* Thuban/Model/load.py (XMLReader.GetFilename): Renamed from |
66 |
|
XMLReader.GetFileName. |
67 |
|
(SessionLoader): Added support for loading projection tags that |
68 |
|
appear inside a layer. |
69 |
|
|
70 |
|
* Thuban/Model/proj.py (ProjFile): Document the class. Move |
71 |
|
back to using a list because the order of the projections in |
72 |
|
the file is important to maintain. Fixes RTbug #1817. |
73 |
|
|
74 |
|
* Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName |
75 |
|
to ProjFile.GetFilename. |
76 |
|
|
77 |
|
* Thuban/Model/save.py (SessionSaver.write_layer): Save projection |
78 |
|
information. |
79 |
|
|
80 |
|
* Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from |
81 |
|
ProjFrame._OnSaveAs. Removed old dead code from previous |
82 |
|
implementation. |
83 |
|
(ProjFrame._OnExport): Add support for exporting more than one |
84 |
|
projection to a single file. |
85 |
|
(ProjFrame.__FillAvailList): use string formatting (% operator) |
86 |
|
to build strings that are (partly) translated. Fixes RTbug #1818. |
87 |
|
|
88 |
|
* test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile |
89 |
|
class. |
90 |
|
|
91 |
|
2003-04-24 Bernhard Herzog <[email protected]> |
92 |
|
|
93 |
|
* po/es.po: Updated Spanish translation by Daniel Calvelo Aros |
94 |
|
|
95 |
|
* po/fr.po: New. French translation by Daniel Calvelo Aros |
96 |
|
|
97 |
|
* Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate |
98 |
|
empty strings. |
99 |
|
|
100 |
|
2003-04-24 Jonathan Coles <[email protected]> |
101 |
|
|
102 |
|
* Thuban/Model/layer.py (Layer.GetProjection): New. Needed to |
103 |
|
implement the interface that the ProjFrame dialog expects. |
104 |
|
|
105 |
|
* Thuban/Model/proj.py (Projection.SetName): New. Allows the |
106 |
|
name of the projection to be changed. |
107 |
|
(ProjFile): Use a dictionary instead of a list so that removing |
108 |
|
projections is easier and we are sure about uniqueness. |
109 |
|
(ProjFile.Remove): Remove the given projection object. |
110 |
|
|
111 |
|
* Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles): |
112 |
|
Return a list with only one projection file instead of searching for |
113 |
|
any projection file. This simplifies many things if the user can |
114 |
|
only have one system file and one user file. |
115 |
|
|
116 |
|
* Thuban/UI/classgen.py: Change all references to |
117 |
|
genCombo to genChoice. |
118 |
|
|
119 |
|
* Thuban/UI/mainwindow.py: Add a Projection option under the |
120 |
|
layer menu. |
121 |
|
(MainWindow.LayerProjection): New. Open up a projection window |
122 |
|
for a layer. |
123 |
|
|
124 |
|
* Thuban/UI/projdialog.py: Large changes to how the dialog is |
125 |
|
laid out. Use three panels instead of one. One for the list of |
126 |
|
projections, one for the edit controls, and one for the buttons. |
127 |
|
Fixed resizing problems so that the dialog resizes correctly |
128 |
|
when the projection panel changes. Added import/export, save, and |
129 |
|
new buttons/functionality. |
130 |
|
|
131 |
|
2003-04-24 Bernhard Herzog <[email protected]> |
132 |
|
|
133 |
|
First step towards table management. Introduce a simple data |
134 |
|
abstraction so that we replace the data a layer uses more easily |
135 |
|
in the next step. |
136 |
|
|
137 |
|
* Thuban/Model/data.py: New file with a simple data abstraction |
138 |
|
that bundles shapefile and dbffile into one object. |
139 |
|
|
140 |
|
* Thuban/Model/session.py (Session.OpenShapefile): New method to |
141 |
|
open shapefiles and return a shape store object |
142 |
|
|
143 |
|
* Thuban/Model/layer.py (Layer.__init__): Pass the data as a store |
144 |
|
object instead of a shapefile filename. This introduces a new |
145 |
|
instance variable store holding the datastore. For intermediate |
146 |
|
backwards compatibility keep the old instance variables. |
147 |
|
(open_shapefile): Removed. No longer needed with the shape store. |
148 |
|
(Layer.SetShapeStore, Layer.ShapeStore): New methods to set and |
149 |
|
get the shape store used by a layer. |
150 |
|
(Layer.Destroy): No need to explicitly destroy the shapefile or |
151 |
|
table anymore. |
152 |
|
|
153 |
|
* Thuban/UI/mainwindow.py (MainWindow.AddLayer) |
154 |
|
(MainWindow.AddLayer): Use the session's OpenShapefile method to |
155 |
|
open shapefiles |
156 |
|
|
157 |
|
* Thuban/Model/load.py (ProcessSession.start_layer): Use the |
158 |
|
session's OpenShapefile method to open shapefiles |
159 |
|
|
160 |
|
* test/test_classification.py |
161 |
|
(TestClassification.test_classification): Use the session's |
162 |
|
OpenShapefile method to open shapefiles and build the filename in |
163 |
|
a more platform independed way |
164 |
|
|
165 |
|
* test/test_layer.py (TestLayer.setUp, TestLayer.tearDown): |
166 |
|
Implement to have a session to use in the tests |
167 |
|
(TestLayer.test_arc_layer, TestLayer.test_polygon_layer) |
168 |
|
(TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the |
169 |
|
session's OpenShapefile method to open shapefiles |
170 |
|
(TestLayerLegend.setUp): Instantiate a session so that we can use |
171 |
|
it to open shapefiles. |
172 |
|
(TestLayerLegend.tearDown): Make sure that all references to |
173 |
|
layers and session are removed otherwise we may get a resource |
174 |
|
leak |
175 |
|
|
176 |
|
* test/test_map.py (TestMapAddLayer.test_add_layer) |
177 |
|
(TestMapWithContents.setUp): Instantiate a session so that we can |
178 |
|
use it to open shapefiles. |
179 |
|
(TestMapWithContents.tearDown): Make sure that all references to |
180 |
|
layers, maps and sessions are removed otherwise we may get a |
181 |
|
resource leak |
182 |
|
("__main__"): use support.run_tests() so that more info about |
183 |
|
uncollected garbage is printed |
184 |
|
|
185 |
|
* test/test_save.py (SaveSessionTest.testSingleLayer): Use the |
186 |
|
session's OpenShapefile method to open shapefiles |
187 |
|
("__main__"): use support.run_tests() so that more info about |
188 |
|
uncollected garbage is printed |
189 |
|
|
190 |
|
* test/test_selection.py (TestSelection.tearDown): Make sure that |
191 |
|
all references to the session and the selection are removed |
192 |
|
otherwise we may get a resource leak |
193 |
|
(TestSelection.get_layer): Instantiate a session so that we can |
194 |
|
use it to open shapefiles. |
195 |
|
("__main__"): use support.run_tests() so that more info about |
196 |
|
uncollected garbage is printed |
197 |
|
|
198 |
|
* test/test_session.py (TestSessionBase.tearDown) |
199 |
|
(TestSessionWithContent.tearDown): Make sure that all references |
200 |
|
to the session and layers are removed otherwise we may get a |
201 |
|
resource leak |
202 |
|
(TestSessionWithContent.setUp): Use the session's OpenShapefile |
203 |
|
method to open shapefiles |
204 |
|
|
205 |
|
2003-04-24 Jonathan Coles <[email protected]> |
206 |
|
|
207 |
|
* Thuban/Model/load.py (XMLReader.read): Should have been checking |
208 |
|
if the file_or_filename object had the 'read' attribute. |
209 |
|
|
210 |
|
2003-04-23 Jonathan Coles <[email protected]> |
211 |
|
|
212 |
|
* Thuban/Model/resource.py: Fixes RTbug #1813. |
213 |
|
(ReadProjFile): Add documentation about which exceptions are raised. |
214 |
|
Always pass the exceptions up to the caller. |
215 |
|
(GetProjFiles): If the directory can't be read return an empty list. |
216 |
|
If any of the proj files can't be read skip that file and go |
217 |
|
on to the next one. |
218 |
|
|
219 |
|
* test/test_proj.py: Added test cases to handle nonexistent files, |
220 |
|
unreadable files, and files that don't parse correctly. |
221 |
|
|
222 |
2003-04-23 Jonathan Coles <[email protected]> |
2003-04-23 Jonathan Coles <[email protected]> |
223 |
|
|
224 |
Projection dialog. Allows the user to select from a list |
Projection dialog. Allows the user to select from a list |