1 |
|
2003-06-23 Jonathan Coles <[email protected]> |
2 |
|
|
3 |
|
* Thuban/UI/common.py (ThubanBeginBusyCursor): Call wxSafeYield |
4 |
|
to make sure that we don't create reentrant possibilities with |
5 |
|
wxYield. |
6 |
|
|
7 |
|
* Thuban/UI/view.py (MapCanvas.OnPaint): Call wxBeginBusyCursor() |
8 |
|
directly to avoid the wxSafeYield() call which generates an |
9 |
|
OnPaint event causing infinite recursion. Don't try to catch |
10 |
|
exception anymore. This was for before there were limits on map |
11 |
|
scaling. |
12 |
|
|
13 |
|
2003-06-23 Bernhard Herzog <[email protected]> |
14 |
|
|
15 |
|
Bug fix for RT #1961: |
16 |
|
|
17 |
|
* Thuban/Model/load.py (SessionLoader.start_derivedshapesource): |
18 |
|
Register DerivedShapestores with the session |
19 |
|
|
20 |
|
* Thuban/Model/session.py (Session.Tables): Make sure each table |
21 |
|
is only listed once. |
22 |
|
|
23 |
|
* test/test_load.py (TestJoinedTable.test): Add check_format call. |
24 |
|
Update file contents to match the one written out. |
25 |
|
|
26 |
|
2003-06-20 Bernhard Herzog <[email protected]> |
27 |
|
|
28 |
|
* test/xmlsupport.py (SaxEventLister.startElementNS) |
29 |
|
(SaxEventLister.endElementNS): Do not include the qname. Python |
30 |
|
2.2.1 and 2.2.2 and 2.2.3 differ in this regard. In 2.2.1 qname it |
31 |
|
is (presumably incorrectly) None, whereas it's a string with the |
32 |
|
element name in the later versions. |
33 |
|
|
34 |
|
* test/test_xmlsupport.py (TestEventList.test_even_list_simple) |
35 |
|
(TestEventList.test_even_list_namespace): Update tests to reflect |
36 |
|
the new behaviour |
37 |
|
(TestEventList.test_even_list_id_normalization): Fix doc-string |
38 |
|
|
39 |
|
2003-06-20 Jonathan Coles <[email protected]> |
40 |
|
|
41 |
|
* Thuban/Model/layer.py (BaseLayer.HasShapes): New. Overridden |
42 |
|
by deriving classes to determine if that layer supports shapes. |
43 |
|
(Layer): Override HasShapes and return true. |
44 |
|
|
45 |
|
* Thuban/UI/classgen.py: Use Thuban[Begin|End]BusyCursor() |
46 |
|
instead of a direct call to wx[Begin|End]CusyCursor(). |
47 |
|
(GenUniquePanel._OnRetrieve): Set busy cursor while retrieving |
48 |
|
table data. |
49 |
|
|
50 |
|
* Thuban/UI/common.py (ThubanBeginBusyCursor, ThubanEndBusyCursor): |
51 |
|
New. Wrappers around the wxWindows functions that allow us to |
52 |
|
make additional calls such as wxYield which gives the native |
53 |
|
system a chance to update the cursor correctly. |
54 |
|
|
55 |
|
* Thuban/UI/tableview.py: Use Thuban[Begin|End]BusyCursor() |
56 |
|
instead of a direct call to wx[Begin|End]CusyCursor(). |
57 |
|
|
58 |
|
* Thuban/UI/view.py: Use Thuban[Begin|End]BusyCursor() |
59 |
|
instead of a direct call to wx[Begin|End]CusyCursor(). |
60 |
|
(MapCanvas.find_shape_at): Check if the current search layer |
61 |
|
support shapes, otherwise go on to the next layer. |
62 |
|
|
63 |
|
* test/test_layer.py: Add tests in each type of layer for |
64 |
|
HasClassification() and HasShapes() |
65 |
|
|
66 |
2003-06-20 Jonathan Coles <[email protected]> |
2003-06-20 Jonathan Coles <[email protected]> |
67 |
|
|
68 |
* Thuban/UI/view.py (MapCanvas.OnPaint): Call wxYield after |
* Thuban/UI/view.py (MapCanvas.OnPaint): Call wxYield after |