1 |
|
2002-04-19 Jan-Oliver Wagner <[email protected]> |
2 |
|
|
3 |
|
* Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for |
4 |
|
saving _new_ sessions |
5 |
|
|
6 |
|
* Thuban/Model/session.py (create_empty_session): new session |
7 |
|
don't have a filename (set to None) |
8 |
|
|
9 |
|
* Thuban/UI/tree.py (update_tree): added filename and modified flag |
10 |
|
|
11 |
|
* Thuban/Model/load.py (ProcessSession): convert projection |
12 |
|
parameters from unicode to regular string |
13 |
|
|
14 |
|
* Data/iceland_sample.session: Added UTM Zone 26 projection. |
15 |
|
|
16 |
|
2002-04-11 Bernhard Herzog <[email protected]> |
17 |
|
|
18 |
|
* extensions/shapelib/shapefil.h, extensions/shapelib/shpopen.c, |
19 |
|
extensions/shapelib/dbfopen.c: Update to the versions of shapelib |
20 |
|
1.2.9 |
21 |
|
|
22 |
|
* setup.py (Lib.wxproj extension): Don't link shpopen.c and put |
23 |
|
the pyshapelib directoy into the list of include dirs, so that |
24 |
|
pyshapelib_api.h can be found. |
25 |
|
|
26 |
|
* extensions/thuban/wxproj.cpp (pyshapelib_api): New variable that |
27 |
|
holds the pyshapelib C-API |
28 |
|
(draw_polygon_shape, point_in_polygon_shape, shape_centroid): Use |
29 |
|
pyshapelib_api to access the shapelib functions. |
30 |
|
(initwxproj): Import the c_api from the shapelib module and |
31 |
|
initialize pyshapelib_api. |
32 |
|
|
33 |
|
2002-04-04 Bernhard Herzog <[email protected]> |
34 |
|
|
35 |
|
* setup.py (thuban_bdist_rpm.initialize_options): Use |
36 |
|
initialize_options to create the scripts for the rpm. |
37 |
|
|
38 |
|
* extensions/pyprojection/setup.py (PROJ4_PREFIX): Just use / |
39 |
|
|
40 |
|
2002-04-03 Bernhard Herzog <[email protected]> |
41 |
|
|
42 |
|
* setup.py: Increment version to 0.1.1 |
43 |
|
|
44 |
|
* Thuban/UI/mainwindow.py (MainWindow.__init__): Move the "Add |
45 |
|
Layer" and "Remove Layer" commands from the layer menu to the map |
46 |
|
menu |
47 |
|
|
48 |
|
2002-02-15 Bernhard Herzog <[email protected]> |
49 |
|
|
50 |
|
* Thuban/Model/layer.py (Layer.Shape): list append only takes one |
51 |
|
argument (python <= 1.5.2 erroneously accepted multiuple |
52 |
|
arguments) |
53 |
|
|
54 |
|
2002-02-04 Bernhard Herzog <[email protected]> |
55 |
|
|
56 |
|
* Thuban/UI/identifyview.py (IdentifyGridCtrl): New class to use a |
57 |
|
RecordGrid in the identifyview. |
58 |
|
(IdentifyView.__init__): Use IdentifyGridCtrl instead of |
59 |
|
IdentifyListCtrl. The grid allows editing of the values. |
60 |
|
|
61 |
|
* Thuban/UI/controls.py (RecordTable, RecordGridCtrl): New classes |
62 |
|
implementing a grid for a single row of a thuban table. |
63 |
|
|
64 |
|
* Thuban/UI/view.py (MapCanvas.SelectShapeAt): Search through all |
65 |
|
layers by default. Easier to use than the previous default of only |
66 |
|
searching through the select layer which meant that if no layer |
67 |
|
was selected, you couldn't select a shape. |
68 |
|
|
69 |
|
* Thuban/UI/tableview.py (TableGrid.__init__): Fix typo |
70 |
|
|
71 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Honour the |
72 |
|
stroke_width attribute |
73 |
|
|
74 |
|
* Thuban/Model/save.py (save_session): Write the new stroke_width |
75 |
|
attribute |
76 |
|
|
77 |
|
* Thuban/Model/load.py (ProcessSession.startElement): Read the |
78 |
|
stroke_width attribute |
79 |
|
|
80 |
|
* Thuban/Model/layer.py (Layer.__init__): New parameter and |
81 |
|
instance variable stroke_width |
82 |
|
(Layer.SetStrokeWidth): Set the stroke_width. |
83 |
|
|
84 |
|
2002-02-01 Bernhard Herzog <[email protected]> |
85 |
|
|
86 |
|
* extensions/thuban/wxproj.cpp (project_points): Fix two |
87 |
|
off-by-one errors in the last loop that joins the various parts |
88 |
|
together. |
89 |
|
|
90 |
|
2002-01-14 Bernhard Herzog <[email protected]> |
91 |
|
|
92 |
|
* setup.py (data_dist.make_distribution): Fix some typos |
93 |
|
|
94 |
|
2001-09-18 Bernhard Herzog <[email protected]> |
95 |
|
|
96 |
|
* README: Slight tweaking in preparation for the 0.1 release |
97 |
|
|
98 |
|
* setup.cfg: Add section for sdist to create both tgz and zip |
99 |
|
archives |
100 |
|
|
101 |
|
* setup.py: increase version number to 0.1 |
102 |
|
(data_dist): New command class for data distribution |
103 |
|
|
104 |
|
|
105 |
|
2001-09-14 Bernhard Herzog <[email protected]> |
106 |
|
|
107 |
|
* Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape): |
108 |
|
Handle the case of no layer (i.e. layer is None) properly. |
109 |
|
|
110 |
|
* Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__): |
111 |
|
Set the initial selection of the combo boxes to reflect the |
112 |
|
projection we're starting with in a way that works on windows, |
113 |
|
too. |
114 |
|
|
115 |
|
* Thuban/Lib/connector.py (Connector.print_connections): Print the |
116 |
|
puiblisher's ids in hex to make it easier to compare them to the |
117 |
|
standard repr of python methods |
118 |
|
|
119 |
|
* Thuban/Model/map.py (Map.Destroy): Unsubscribe the label_layer |
120 |
|
messages |
121 |
|
|
122 |
2001-09-13 Bernhard Herzog <[email protected]> |
2001-09-13 Bernhard Herzog <[email protected]> |
123 |
|
|
124 |
|
* Thuban/UI/tree.py (SessionTreeCtrl.OnSelChanged): Make sure to |
125 |
|
deselect the layer if no layer is selected |
126 |
|
|
127 |
* Thuban/UI/view.py (MapCanvas.OnPaint): Only delay drawing to |
* Thuban/UI/view.py (MapCanvas.OnPaint): Only delay drawing to |
128 |
idle time when there actually is something to draw. If there's |
idle time when there actually is something to draw. If there's |
129 |
nothing to draw simply clear the window |
nothing to draw simply clear the window |
134 |
specify the point to move into the center of the window |
specify the point to move into the center of the window |
135 |
(ZoomOutTool.MouseUp, ZoomInTool.MouseUp): If the mouse wasn't |
(ZoomOutTool.MouseUp, ZoomInTool.MouseUp): If the mouse wasn't |
136 |
dragged, zoon in/out by a factor of 2 |
dragged, zoon in/out by a factor of 2 |
137 |
|
(MapCanvas.find_shape_at): Iterate backwards (i.e. with decreasing |
138 |
|
index, i.e. reversed drawing order) so that objects appearing to |
139 |
|
be in from of others are selected first. This is probably mostly |
140 |
|
relevant for point shapes where the symbols used may overlap |
141 |
|
|
142 |
* Thuban/Model/session.py (create_empty_session): Unset the |
* Thuban/Model/session.py (create_empty_session): Unset the |
143 |
modified bit before returning it |
modified bit before returning it |