/[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 634 by jonathan, Wed Apr 9 15:41:58 2003 UTC revision 756 by jonathan, Fri Apr 25 14:48:44 2003 UTC
# Line 1  Line 1 
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]>
223    
224            Projection dialog. Allows the user to select from a list
225            of projection templates and optionally edit them and save new ones.
226    
227            * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
228            (ProjPanel): Base class for projection specific panels.
229            (TMPanel): Projection panel for Transverse Mercartor.
230            (UTMPanel): Projection panel for Universal Transverse Mercartor.
231            (LCCPanel): Projection panel for Lambert Conic Conformal.
232            (GeoPanel): Projetion panel for Geographic Projection.
233    
234    2003-04-23  Jonathan Coles   <[email protected]>
235    
236            * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
237            promote symmetry. There now exists XMLReader and XMLWriter.
238            (XMLReader.read): New. Call to read the given file descriptor or
239            filename.
240            (XMLReader.close): New. Make sure the file is closed.
241            (XMLReader.GetFileName): New. Return just the file name that is being
242            read from.
243            (XMLReader.GetDirectory): New. Return just the directory of the file
244            that is being read.
245            (XMLReader.AddDispatchers): New. Take a dictionary which contains
246            the names of functions to call as the XML tree is parsed.
247            (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
248            (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
249            (SessionLoader): Removed class variables start_dispatcher and
250            end_dispatcher since this functionality is now part of a class
251            instance. Fixes RTbug #1808.
252            (SessionLoader.__init__): Add dispatcher functions.
253            (load_xmlfile): Code was moved into the XMLReader.read().
254            (load_session): Use modified SessionLoader.
255    
256            * Thuban/Model/map.py (Map.GetProjection): New. Returns the
257            map's projection.
258    
259            * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
260            GetAllParameters.
261            (Projection.GetParameter): Returns the value for the given parameter.
262    
263            * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
264            (GetProjFiles): Renamed from GetProjections. Now returns a list
265            of ProjFile objects.
266            (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
267            a list of ProjFile objects whose files are not user defined.
268            (GetUserProjFiles): Renamed from GetUserProjections. Returns a
269            list of ProjFile objects whose files are user defined.
270            (ProjFileReader): Extend new XMLReader.
271    
272            * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
273            promote symmetry.
274    
275            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
276            control instead of a wxComboBox. wxChoice controls do not generate
277            events as the uses highlights possible choices which fixes problems
278            with resizing the dialog when the use selects an option.
279    
280            * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
281            control instead of a wxComboBox.
282    
283            * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
284            dialog.
285    
286            * test/test_proj.py (TestProjection.test): New tests for GetParameter
287            method.
288    
289    2003-04-22  Bernhard Herzog  <[email protected]>
290    
291            * Thuban/UI/mainwindow.py: Remove some unused imports and global
292            constants
293    
294            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
295            (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
296    
297    2003-04-17  Bernhard Herzog  <[email protected]>
298    
299            * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
300            (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
301            anymore.
302            (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
303            (Layer.ShapeType, Layer.Shape): No need to call
304            self.open_shapefile since it's always called in __init__
305    
306            * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
307            In wxPython 2.4 there's no need to extend MainLoop anymore since
308            wxPython itself makes sure OnExit is called.
309    
310    2003-04-16  Jonathan Coles   <[email protected]>
311    
312            Initial putback of projection management code. Includes new
313            classes to read and write projection files. The current load
314            and save classes were abstracted a bit so they could be reused.
315            The Projection class was extended to provide new methods and
316            have a name.
317    
318            * Thuban/Model/load.py (XMLProcessor): New. Contains all the
319            general XML reading methods that were part of ProcessSession.
320    
321            * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
322            name.
323            (ProjFile): New. Represents a file that contains projection
324            information.
325    
326            * Thuban/Model/resource.py: New. Contains general utilities
327            for read and writing projection files.
328    
329            * Thuban/Model/save.py (XMLSaver): New. Contains all the
330            general XML writing methods that were part of SessionSaver.
331            (SessionSaver): Renamed from Saver.
332    
333            * test/test_proj.py: New test cases for the projection
334            file read and write functions.
335    
336    2003-04-16  Jonathan Coles   <[email protected]>
337    
338            * Thuban/Model/classification.py: Use repr() around values
339            in the ClassGroup*.__repr__() methods so it is clearer when
340            a value is a string and when it is a number.
341    
342            * test/test_load.py: Rework the classification test to test
343            that we can load old files.
344            (testLabels): Test a file where the groups have labels.
345    
346    2003-04-16  Bernhard Herzog  <[email protected]>
347    
348            Safer implementation of the performance enhancements of the
349            low-level renderer:
350            
351            * extensions/thuban/wxproj.cpp (extract_projection)
352            (extract_pointer): Rename extract_projection to extract_pointer
353            and redefine its purpose to return the pointer stored in a CObject
354            returned by the object's cobject method. Update all callers.
355            (s_draw_info, free_draw_info, draw_polygon_init): Implement the
356            handling of these low-level parameters so that each s_draw_info
357            instance is handled as a CObject at python level that also
358            contains real references to the actual python objects which
359            contain the values in the struct. Add free_draw_info as the
360            destructor.
361            (draw_polygon_shape): Add the py_draw_info parameter which must a
362            cobject containing an s_draw_info pointer.
363    
364            * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
365            method to instantiat the low-level render parameter
366            (MapRenderer.draw_shape_layer): Use the new method. Remove some
367            commented out code.
368            (MapRenderer.draw_polygon_shape): Make the first parameter not the
369            layer but the low-level render parameter
370            (ScreenRenderer.draw_shape_layer): Use the low-level render
371            parameter.
372    
373    2003-04-15  Jonathan Coles   <[email protected]>
374    
375            * Thuban/Model/classification.py: Implemented __repr__ for
376            the ClassGroup* classes to make debugging a bit easier.
377            (ClassGroup.SetLabel): Check that the string is an instance
378            of StringTypes not StringType. Accounts for Unicode strings.
379    
380            * Thuban/Model/color.py: Implemented __repr__ to make
381            debugging a bit easier.
382    
383            * Thuban/Model/save.py (Saver.write_classification): Need to
384            save the group label.
385    
386            * test/test_load.py (testClassification): New. Loads the
387            iceland_sample_test.thuban file and checks if it was loaded
388            correctly.
389    
390    2003-04-15  Jonathan Coles   <[email protected]>
391    
392            * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
393            to improve rendering performance by initializing the variables
394            that are not change each time draw_polygon_shape() is called.
395            The values are stored in a global struct draw_info.
396            (draw_polygon_shape): Removed initialization code that is
397            now in draw_polygon_init().
398    
399            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
400            drawing initialization call to draw_polygon_init()
401            (MapRenderer.draw_polygon_shape): Use new signature of
402            draw_polygon_shape.
403    
404            * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
405            weirdness by setting the range to (1, maxint).
406    
407            * Thuban/Model/classification.py (ClassGroupProperties): Make
408            instance variables private and optimize comparison operator
409            by first checking if the color references are the same.
410            (ClassGroupSingleton): Make instance variables private.
411            (ClassGroupRange): Make instance variables private.
412    
413            * HOWTO-Release: Filled in missing steps for releasing packages.
414    
415    2003-04-15  Bernhard Herzog  <[email protected]>
416    
417            First stab at internationalized messages:
418    
419            * Thuban/__init__.py (_): Implement the translation function for
420            real using the python gettext module.
421    
422            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
423            translate empty strings.
424    
425            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
426            Add a missing space to a warning message
427    
428            * po/README: New. Notes about the management of the translation
429            files.
430    
431            * po/Makefile: New. Makefile to help manage the translation files.
432    
433            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
434    
435            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
436            translations and support files in po/
437    
438            * setup.py (data_files): Add the *.mo files to the data_files too
439    
440            * README: Add note about the translations when building from CVS
441    
442    2003-04-14  Jonathan Coles   <[email protected]>
443    
444            * Thuban/UI/dock.py: Fixes some window resizing problems most
445            noticable under windows. Always assume the button bitmaps will
446            be there. Code clean up.
447            (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
448            images for the dock/undock button to the same images.
449            Work around for RTbug #1801.
450    
451            * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
452            be allowed to grow within the sizer. Fixes a bug under Windows
453            where the toolbar wasn't being drawn.
454    
455    2003-04-14  Frank Koormann   <[email protected]>
456    
457            * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
458            Updated design to try to make the button functionality more
459            transparent.
460    
461    2003-04-14  Jonathan Coles   <[email protected]>
462    
463            * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
464            finalize the intialization of the panel.
465    
466            * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
467            creation of the panel. Should be the last thing called in the
468            initializer of a subclass.
469    
470            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
471            set the current selections in the combo boxes. This is needed
472            under Windows.
473    
474            * Thuban/UI/classifier.py (Classifier.__init__): Add a top
475            level panel to the dialog so that the background colors are
476            consistent under Windows.
477    
478    2003-04-11  Jonathan Coles   <[email protected]>
479    
480            * Thuban/UI/classgen.py: Change color ramps to start at white
481            not black.
482    
483            * Thuban/UI/legend.py: Enable/disable the legend buttons when
484            the legend changes. Fixes RTbug #1793.
485    
486            * test/test_classification.py: Added test for copying of
487            classifications.
488    
489    2003-04-11  Jonathan Coles   <[email protected]>
490    
491            * Thuban/UI/resource.py: New. Centralize the loading of resources
492            such as bitmaps.
493    
494            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
495            added images to the move buttons, added 'reverse' button.
496            (CustomRampPanel.__init__): Added images to the move buttons.
497            (GreyRamp): New. Generates a ramp from white to black.
498            (HotToColdRamp): New. Generates a ramp from cold to hot colors.
499    
500            * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
501            ID_PROPERTY_*.
502            (Classifier.__init__): Minor changes to the layout.
503            (Classifier._OnTitleChanged): Listen for when the user edits the
504            title and update the dialog's title and the layer's title.
505    
506            * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
507    
508            * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
509            (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
510            if the layer's title changes.
511    
512            * Thuban/UI/mainwindow.py: Added new menu item and associated code
513            to open a dialog to rename the map.
514            (MainWindow): Use new resource class to import bitmaps.
515    
516    2003-04-11  Jonathan Coles   <[email protected]>
517    
518            * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
519            Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
520            Resources/Bitmaps/group_use_none.xpm,
521            Resources/Bitmaps/group_use_not.xpm,
522            Resources/Bitmaps/hide_layer.xpm,
523            Resources/Bitmaps/layer_properties.xpm,
524            Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
525            Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
526            New.
527    
528    2003-04-10  Jonathan Coles   <[email protected]>
529    
530            * Thuban/Model/classification.py: (ClassGroupRange.__init__):
531            Should pass group to ClassGroup constructor.
532    
533    2003-04-10  Jonathan Coles   <[email protected]>
534    
535            * Thuban/Model/classification.py: (ClassGroup): Move all the common
536            methods of the derived classes ([Set|Get]Properties(), __eq__, __ne__)
537            here. Implement SetVisible(), IsVisible().
538            (ClassGroup.__init__): Add group parameter which acts as a copy
539            constructor.
540    
541            * Thuban/UI/classifier.py (ClassTable): Add a new column for the
542            "Visible" check boxes.
543            (Classifier): Rename the buttons and refactor the code to match
544            the new labels.
545    
546            * Thuban/UI/legend.py: Classify button is now called "Properties".
547            Refactored the code to change variable names.
548            (LegendTree.__FillTreeLayer): Only list a group if it is visible.
549    
550            * Thuban/UI/mainwindow.py: MainWindow.OpenClassifier renamed to
551            MainWindow.OpenLayerProperties. MainWindow.LayerEditProperties
552            renamed to MainWindow.LayerEditProperties.
553            (MainWindow.ToggleLegend): Don't include map name in legend title.
554            (MainWindow.SetMap): Added the map name to the window title.
555            (MainWindow.LayerFillColor, MainWindow.LayerTransparentFill,
556            MainWindow.LayerOutlineColor, MainWindow.LayerNoOutline): Removed.
557            Functionality is found in the layer properties dialog.
558    
559            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
560            draw visible groups.
561    
562  2003-04-09  Jonathan Coles   <[email protected]>  2003-04-09  Jonathan Coles   <[email protected]>
563    
564          * Thuban/UI/classgen.py: Modifications to allow simple          * Thuban/UI/classgen.py: Modifications to allow simple

Legend:
Removed from v.634  
changed lines
  Added in v.756

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26