/[thuban]/branches/greater-ms3/thuban/ChangeLog
ViewVC logotype

Diff of /branches/greater-ms3/thuban/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 297 by bh, Fri Aug 30 16:10:57 2002 UTC revision 375 by jan, Mon Jan 27 14:20:40 2003 UTC
# Line 1  Line 1 
1    2003-01-27      Jan-Oliver Wagner <[email protected]>
2    
3            * Thuban/__init__.py (_): New.
4    
5            * Thuban/Model/classification.py, Thuban/Model/extension.py,
6            Thuban/Model/layer.py, Thuban/Model/load.py, Thuban/Model/map.py,
7            Thuban/Model/session.py, Thuban/UI/application.py, Thuban/UI/classifier.py,
8            Thuban/UI/context.py, Thuban/UI/controls.py, Thuban/UI/identifyview.py,
9            Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py, Thuban/UI/menu.py,
10            Thuban/UI/proj4dialog.py, Thuban/UI/renderer.py, Thuban/UI/tree.py,
11            Thuban/Lib/connector.py, Thuban/Lib/fileutil.py:
12            Replace user string by _() for i18n.
13    
14    2003-01-27  Jonathan Coles  <[email protected]>
15    
16      * Thuban/Model/layer.py: Classification initialization calls.
17    
18      * Thuban/Model/classification.py: Created class to encapsulate
19      a layer classification. Supports specific data points and
20      ranges.
21    
22      * Thuban/Model/load.py: Added support for loading classification
23      information.
24    
25      * Thuban/Model/save.py: Added support for saving classification
26      information.
27    
28      * Thuban/UI/classifier.py: Initial class for a dialog box for
29      specifying classification information.
30    
31      * Thuban/UI/mainwindows.py: Support for opening the classifier
32      dialog.
33    
34      * Thuban/UI/renderer.py: Support for drawing a layer with the
35      classification information.
36    
37      * Data/iceland_sample_class.thuban: iceland_sample with
38      classification data.
39    
40      * test/test_classification: Tests for the Classification class.
41    
42    2002-12-09  Bernhard Herzog  <[email protected]>
43    
44            * test/test_command.py: New. Tests for the command classes.
45    
46            * Thuban/UI/command.py (ToolCommand): New class for tool commands.
47            (Command.IsTool): New method to distinguish between command
48            switching tools and other commands.
49    
50            * Thuban/UI/view.py (MapCanvas.SelectTool): New method to select
51            the tool to avoid direct assignments to instance variables
52            (MapCanvas.ZoomInTool, MapCanvas.ZoomOutTool, MapCanvas.PanTool)
53            (MapCanvas.IdentifyTool, MapCanvas.LabelTool): Use SelectTool to
54            change the tool
55    
56            * Thuban/UI/mainwindow.py (MainWindow.update_command_ui): If an
57            active tool's command turns insensitive, disable the tool.
58            (_tool_command): Use the new ToolCommand class
59    
60            * Examples/simple_extensions/simple_tool.py (simple_tool): Use the
61            SelectTool method to change the tool
62            (iconfile): Use the ToolCommand class
63    
64    2002-12-03  Bernhard Herzog  <[email protected]>
65    
66            * Thuban/UI/tree.py (SessionTreeCtrl.normalize_selection): Handle
67            the case of selected items that are not children of Layers or Maps
68            properly. Previously this bug would trigger an assertion in
69            wxWindows.
70    
71    2002-11-06  Frank Koormann  <[email protected]>
72    
73            * Thuban/UI/mainwindow.py: Altered the order of tools in the
74            toolbar: First now are all navigation tools (Zoom In/Out, Pan,
75            Full Extent).
76        
77    2002-10-23  Bernhard Herzog  <[email protected]>
78    
79            * setup.py (setup call): version now 0.1.3
80    
81            * MANIFEST.in: Add the files in test/
82    
83            * test/README: Add note about tests requiring the iceland data
84    
85            * Thuban/UI/mainwindow.py (MainWindow.About): Add 2002 to
86            copyright notice.
87    
88    2002-10-18  Bernhard Herzog  <[email protected]>
89    
90            * test/test_map.py
91            (TestMapWithContents.test_projected_bounding_box): Use an explicit
92            epsilon.
93    
94            * test/support.py (FloatComparisonMixin.assertFloatEqual)
95            (FloatComparisonMixin.assertFloatSeqEqual): give a more useful
96            message if the assertion fails and don't return the return value
97            of self.assert_. In assertFloatSeqEqual the return meant that not
98            all items of the sequence were compared.
99    
100    2002-09-20  Bernhard Herzog  <[email protected]>
101    
102            * test/test_fileutil.py: New. Test cases for Thuban.Lib.fileutil
103    
104            * Thuban/Lib/fileutil.py: Fixup some whitespace and typos
105    
106            * test/test_map.py (TestMapWithContents.test_tree_info): Create
107            the string with the bounding box on the fly because of platform
108            differences in the way %g is handled.
109    
110            * test/test_layer.py (TestLayer.test_empty_layer): Create an empty
111            DBFfile too because Thuban layers can't yet cope missing DBF
112            files.
113    
114    2002-09-20  Bernhard Herzog  <[email protected]>
115    
116            * test/test_menu.py: Use initthuban instead of
117            add_thuban_dir_to_path to initialize Thuban.
118    
119            * test/support.py (FloatComparisonMixin.assertFloatEqual): New.
120            Mixin class for float comparisons
121            (SubscriberMixin): New. Mixin class to test messages sent through
122            the Connector class
123    
124            * test/README: Fix a typo and add the -v flag to the command for
125            individual tests
126    
127            * test/test_session.py: New. Test cases for Thuban.Model.session
128    
129            * test/test_proj.py: New. Test cases for Thuban.Model.proj
130    
131            * test/test_map.py: New. Test cases for Thuban.Model.map
132    
133            * test/test_layer.py: New. Test cases for Thuban.Model.layer
134    
135            * test/test_label.py: New. Test cases for Thuban.Model.label
136    
137            * test/test_connector.py: New. Test cases for Thuban.Lib.connector
138    
139            * test/test_color.py: New. Test cases for Thuban.Model.color
140    
141            * test/test_base.py: New. Test cases for Thuban.Model.base
142    
143    2002-09-13  Bernhard Herzog  <[email protected]>
144    
145            * Thuban/Model/session.py (Session.forwarded_channels): Forward
146            the CHANGED channel too.
147    
148            * Thuban/Model/map.py (Map.forwarded_channels): Forward the
149            CHANGED channel too.
150            (Map.__init__): Call the Modifiable constructor as well.
151    
152            * Thuban/Model/base.py (Modifiable.UnsetModified): Issue a CHANGED
153            event if the modified flag changes.
154            (Modifiable.changed): Tweak the doc-string.
155    
156            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed)
157            (MainWindow.set_position_text): Put the code that puts the text
158            with the mouse position into the status bar into the new method
159            set_position_text so that it can overwritten in derived classes.
160    
161    2002-09-12  Bernhard Herzog  <[email protected]>
162    
163            * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Center the
164            message box on the main window.
165    
166    2002-09-11  Bernhard Herzog  <[email protected]>
167    
168            * Thuban/UI/mainwindow.py: Underline the 'x' in "Exit" instead of
169            the 'E' because it's less likely to interfere with other menu
170            entries.
171            (MainWindow.build_menu): remove an incorrect comment.
172    
173    2002-09-10  Bernhard Herzog  <[email protected]>
174    
175            * Thuban/UI/mainwindow.py (MainWindow.Map): New.
176            (_tool_command): Add sensitive parameter
177            (_has_visible_map): Sensitivity callback to tools and other
178            commands that require a visible map. Use it in map_zoom_in_tool,
179            map_zoom_out_tool, map_pan_tool, map_identify_tool, map_label_tool
180            and map_full_extent
181    
182    2002-09-06  Bernhard Herzog  <[email protected]>
183    
184            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Unsubscribe
185            VIEW_POSITION
186    
187    2002-09-04  Frank Koormann   <[email protected]>
188    
189            * Resources/Bitmaps/fullextent.xpm: Updated Icon (removed "potatoe")
190    
191    2002-09-02  Bernhard Herzog  <[email protected]>
192    
193            * Thuban/UI/view.py: Get rid of the idle redraw. This is done by
194            wxWindows already and our implementation doesn't work correctly
195            with wxGTK 2.3:
196            (MapCanvas.__init__): Remove the instance variable
197            (MapCanvas.OnPaint): Always call do_redraw when there's a map to
198            be drawin
199            (MapCanvas.OnIdle): Removed.
200    
201            * Thuban/UI/view.py (MapCanvas.unprojected_rect_around_point): Add
202            a parameter to determine the size of the rectangle.
203            (MapCanvas.find_shape_at): Create the box around the point on a
204            layer by layer basis and make the size depend on the shape type.
205            This solves a problem with the selection of point shapes at the
206            border of the layer's bounding box
207    
208  2002-08-30  Bernhard Herzog  <[email protected]>  2002-08-30  Bernhard Herzog  <[email protected]>
209    
210            * Thuban/UI/mainwindow.py (MainWindow.CanRemoveLayer): New method
211            for the sensitivity  of remove layer.
212            (_can_remove_layer): New. Sensitivity callback for remove layer
213            (Command layer_remove): Use _can_remove_layer
214    
215            * Thuban/Model/map.py (Map.CanRemoveLayer): New method to
216            determine whether a given layer can be deleted.
217    
218          * Thuban/UI/view.py (MapCanvas.__init__, MapCanvas.OnPaint)          * Thuban/UI/view.py (MapCanvas.__init__, MapCanvas.OnPaint)
219          (MapCanvas.do_redraw): Get rid of the unused update_region          (MapCanvas.do_redraw): Get rid of the unused update_region
220          instance variable          instance variable

Legend:
Removed from v.297  
changed lines
  Added in v.375

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26