/[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 644 by jonathan, Thu Apr 10 17:56:52 2003 UTC revision 764 by bh, Tue Apr 29 10:56:10 2003 UTC
# Line 1  Line 1 
1    2003-04-29  Bernhard Herzog  <[email protected]>
2    
3            * Thuban/Model/load.py (XMLReader.__init__, XMLReader.read): Turn
4            the __parser instance variable into a normal local variable in
5            read. It's only used there and read will never be called more than
6            once. Plus it introduces a reference cycle that keeps can keep the
7            session object alive for a long time.
8    
9    2003-04-25  Jonathan Coles   <[email protected]>
10    
11            * Thuban/Model/proj.py (Projection): Removed Set*() methods to make
12            Projection an immutable item. Fixes RTbug #1825.
13            (Projection.__init__): Initialize instance variables here.
14            (ProjFile.Replace): New. Replace the given projection object with
15            the new projection object. This solves the problem of needing the
16            mutator Projection.SetProjection() in the ProjFrame class and
17            allows a projection to change parameters without changing its
18            location in the file.
19    
20            * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs): Dialog should
21            be of type wxSAVE and should verify overwriting a file.
22    
23            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Use the new
24            ProjFile.Replace() method instead of the mutator
25            Projection.SetProjection(). Also requires that we reassign the
26            client data to the new projection.
27    
28            * test/test_proj.py (TestProjection.test): Test GetName() and
29            GetAllParameters()
30            (TestProjFile.test): Remove tests for Set*() methods. Add tests
31            for Replace().
32    
33    2003-04-25  Jonathan Coles   <[email protected]>
34    
35            * Thuban/Model/save.py (SessionSaver.write_projection): Make sure
36            to save the name of the projection.
37    
38            * test/test_save.py (SaveSessionTest.testLayerProjection): New
39            test to verify layer projections are saved correctly.
40    
41    2003-04-25  Jonathan Coles   <[email protected]>
42    
43            * Thuban/Model/proj.py (Projection.SetName): Set the name
44            to "Unknown" if name is None.
45            (Projection.SetAllParameters): New. Set the projection's
46            parameter list to the one supplied.
47            (Projection.SetProjection): New. Set the projection's
48            properties to those of the supplied Projection.
49    
50            * Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set
51            the dialog title to include the map's title.
52            (MainWindow.LayerProjection): Set the dialog title to include
53            the layer's title.
54    
55            * Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate
56            error dialogs into a single method call.
57            (ProjFrame.__VerifyButtons): Add more states to check.
58            (ProjFrame.__GetProjection): Return the current state of an
59            edited projection or None.
60            (ProjFrame.__FillAvailList): Remove checks for states that
61            shouldn't exist.
62            (ProjFrame._OnNew): Clear all selected items and supply
63            a projection panel if necessary.
64    
65            * test/test_proj.py (TestProjFile.test): Add tests for
66            ProjFile.SetAllParameters, ProjFile.SetProjection,
67            ProjFile.SetName.
68    
69    2003-04-25  Jonathan Coles   <[email protected]>
70    
71            * Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now
72            takes an optional argument to select the current projection.
73            This does not guarantee that the item is visible due to
74            limited wxWindows functionality. Fixes RTBug #1821.
75    
76    2003-04-25  Jonathan Coles   <[email protected]>
77    
78            * Thuban/Model/load.py (SessionLoader.start_projection): Remember
79            the projection name and use it when constructing the Projection
80            object.
81    
82            * Thuban/Model/proj.py (Projection.__init__): Change the default
83            value for 'name' to None and then test if name is equal to None
84            in the body of the constructor. This way the caller doesn't have to
85            know what the default value should be. Namely, useful in load.py
86            where we have to pick a default value if the 'name' parameter
87            doesn't exist in the XML file.
88    
89            * test/test_load.py (LoadSessionTest.testLayerProjection): New.
90            Tests a file where a layer has a projection.
91    
92    2003-04-25  Jonathan Coles   <[email protected]>
93    
94            * Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the
95            tree for projection information.
96    
97            * Thuban/Model/load.py (XMLReader.GetFilename): Renamed from
98            XMLReader.GetFileName.
99            (SessionLoader): Added support for loading projection tags that
100            appear inside a layer.
101    
102            * Thuban/Model/proj.py (ProjFile): Document the class. Move
103            back to using a list because the order of the projections in
104            the file is important to maintain. Fixes RTbug #1817.
105    
106            * Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName
107            to ProjFile.GetFilename.
108    
109            * Thuban/Model/save.py (SessionSaver.write_layer): Save projection
110            information.
111    
112            * Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from
113            ProjFrame._OnSaveAs. Removed old dead code from previous
114            implementation.
115            (ProjFrame._OnExport): Add support for exporting more than one
116            projection to a single file.
117            (ProjFrame.__FillAvailList): use string formatting (% operator)
118            to build strings that are (partly) translated. Fixes RTbug #1818.
119    
120            * test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile
121            class.
122    
123    2003-04-24  Bernhard Herzog  <[email protected]>
124    
125            * po/es.po: Updated Spanish translation by Daniel Calvelo Aros
126    
127            * po/fr.po: New. French translation by Daniel Calvelo Aros
128    
129            * Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate
130            empty strings.
131    
132    2003-04-24  Jonathan Coles   <[email protected]>
133    
134            * Thuban/Model/layer.py (Layer.GetProjection): New. Needed to
135            implement the interface that the ProjFrame dialog expects.
136    
137            * Thuban/Model/proj.py (Projection.SetName): New. Allows the
138            name of the projection to be changed.
139            (ProjFile): Use a dictionary instead of a list so that removing
140            projections is easier and we are sure about uniqueness.
141            (ProjFile.Remove): Remove the given projection object.
142    
143            * Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles):
144            Return a list with only one projection file instead of searching for
145            any projection file. This simplifies many things if the user can
146            only have one system file and one user file.
147    
148            * Thuban/UI/classgen.py: Change all references to
149            genCombo to genChoice.
150    
151            * Thuban/UI/mainwindow.py: Add a Projection option under the
152            layer menu.
153            (MainWindow.LayerProjection): New. Open up a projection window
154            for a layer.
155    
156            * Thuban/UI/projdialog.py: Large changes to how the dialog is
157            laid out. Use three panels instead of one. One for the list of
158            projections, one for the edit controls, and one for the buttons.
159            Fixed resizing problems so that the dialog resizes correctly
160            when the projection panel changes. Added import/export, save, and
161            new buttons/functionality.
162    
163    2003-04-24  Bernhard Herzog  <[email protected]>
164    
165            First step towards table management. Introduce a simple data
166            abstraction so that we replace the data a layer uses more easily
167            in the next step.
168    
169            * Thuban/Model/data.py: New file with a simple data abstraction
170            that bundles shapefile and dbffile into one object.
171    
172            * Thuban/Model/session.py (Session.OpenShapefile): New method to
173            open shapefiles and return a shape store object
174    
175            * Thuban/Model/layer.py (Layer.__init__): Pass the data as a store
176            object instead of a shapefile filename. This introduces a new
177            instance variable store holding the datastore. For intermediate
178            backwards compatibility keep the old instance variables.
179            (open_shapefile): Removed. No longer needed with the shape store.
180            (Layer.SetShapeStore, Layer.ShapeStore): New methods to set and
181            get the shape store used by a layer.
182            (Layer.Destroy): No need to explicitly destroy the shapefile or
183            table anymore.
184    
185            * Thuban/UI/mainwindow.py (MainWindow.AddLayer)
186            (MainWindow.AddLayer): Use the session's OpenShapefile method to
187            open shapefiles
188    
189            * Thuban/Model/load.py (ProcessSession.start_layer): Use the
190            session's OpenShapefile method to open shapefiles
191    
192            * test/test_classification.py
193            (TestClassification.test_classification): Use the session's
194            OpenShapefile method to open shapefiles and build the filename in
195            a more platform independed way
196    
197            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
198            Implement to have a session to use in the tests
199            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
200            (TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the
201            session's OpenShapefile method to open shapefiles
202            (TestLayerLegend.setUp): Instantiate a session so that we can use
203            it to open shapefiles.
204            (TestLayerLegend.tearDown): Make sure that all references to
205            layers and session are removed otherwise we may get a resource
206            leak
207    
208            * test/test_map.py (TestMapAddLayer.test_add_layer)
209            (TestMapWithContents.setUp): Instantiate a session so that we can
210            use it to open shapefiles.
211            (TestMapWithContents.tearDown): Make sure that all references to
212            layers, maps and sessions are removed otherwise we may get a
213            resource leak
214            ("__main__"): use support.run_tests() so that more info about
215            uncollected garbage is printed
216    
217            * test/test_save.py (SaveSessionTest.testSingleLayer): Use the
218            session's OpenShapefile method to open shapefiles
219            ("__main__"): use support.run_tests() so that more info about
220            uncollected garbage is printed
221    
222            * test/test_selection.py (TestSelection.tearDown): Make sure that
223            all references to the session and the selection are removed
224            otherwise we may get a resource leak
225            (TestSelection.get_layer): Instantiate a session so that we can
226            use it to open shapefiles.
227            ("__main__"): use support.run_tests() so that more info about
228            uncollected garbage is printed
229    
230            * test/test_session.py (TestSessionBase.tearDown)
231            (TestSessionWithContent.tearDown): Make sure that all references
232            to the session and layers are removed otherwise we may get a
233            resource leak
234            (TestSessionWithContent.setUp): Use the session's OpenShapefile
235            method to open shapefiles
236    
237    2003-04-24  Jonathan Coles   <[email protected]>
238    
239            * Thuban/Model/load.py (XMLReader.read): Should have been checking
240            if the file_or_filename object had the 'read' attribute.
241    
242    2003-04-23  Jonathan Coles   <[email protected]>
243    
244            * Thuban/Model/resource.py: Fixes RTbug #1813.
245            (ReadProjFile): Add documentation about which exceptions are raised.
246            Always pass the exceptions up to the caller.
247            (GetProjFiles): If the directory can't be read return an empty list.
248            If any of the proj files can't be read skip that file and go
249            on to the next one.
250    
251            * test/test_proj.py: Added test cases to handle nonexistent files,
252            unreadable files, and files that don't parse correctly.
253    
254    2003-04-23  Jonathan Coles   <[email protected]>
255    
256            Projection dialog. Allows the user to select from a list
257            of projection templates and optionally edit them and save new ones.
258    
259            * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
260            (ProjPanel): Base class for projection specific panels.
261            (TMPanel): Projection panel for Transverse Mercartor.
262            (UTMPanel): Projection panel for Universal Transverse Mercartor.
263            (LCCPanel): Projection panel for Lambert Conic Conformal.
264            (GeoPanel): Projetion panel for Geographic Projection.
265    
266    2003-04-23  Jonathan Coles   <[email protected]>
267    
268            * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
269            promote symmetry. There now exists XMLReader and XMLWriter.
270            (XMLReader.read): New. Call to read the given file descriptor or
271            filename.
272            (XMLReader.close): New. Make sure the file is closed.
273            (XMLReader.GetFileName): New. Return just the file name that is being
274            read from.
275            (XMLReader.GetDirectory): New. Return just the directory of the file
276            that is being read.
277            (XMLReader.AddDispatchers): New. Take a dictionary which contains
278            the names of functions to call as the XML tree is parsed.
279            (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
280            (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
281            (SessionLoader): Removed class variables start_dispatcher and
282            end_dispatcher since this functionality is now part of a class
283            instance. Fixes RTbug #1808.
284            (SessionLoader.__init__): Add dispatcher functions.
285            (load_xmlfile): Code was moved into the XMLReader.read().
286            (load_session): Use modified SessionLoader.
287    
288            * Thuban/Model/map.py (Map.GetProjection): New. Returns the
289            map's projection.
290    
291            * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
292            GetAllParameters.
293            (Projection.GetParameter): Returns the value for the given parameter.
294    
295            * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
296            (GetProjFiles): Renamed from GetProjections. Now returns a list
297            of ProjFile objects.
298            (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
299            a list of ProjFile objects whose files are not user defined.
300            (GetUserProjFiles): Renamed from GetUserProjections. Returns a
301            list of ProjFile objects whose files are user defined.
302            (ProjFileReader): Extend new XMLReader.
303    
304            * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
305            promote symmetry.
306    
307            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
308            control instead of a wxComboBox. wxChoice controls do not generate
309            events as the uses highlights possible choices which fixes problems
310            with resizing the dialog when the use selects an option.
311    
312            * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
313            control instead of a wxComboBox.
314    
315            * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
316            dialog.
317    
318            * test/test_proj.py (TestProjection.test): New tests for GetParameter
319            method.
320    
321    2003-04-22  Bernhard Herzog  <[email protected]>
322    
323            * Thuban/UI/mainwindow.py: Remove some unused imports and global
324            constants
325    
326            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
327            (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
328    
329    2003-04-17  Bernhard Herzog  <[email protected]>
330    
331            * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
332            (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
333            anymore.
334            (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
335            (Layer.ShapeType, Layer.Shape): No need to call
336            self.open_shapefile since it's always called in __init__
337    
338            * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
339            In wxPython 2.4 there's no need to extend MainLoop anymore since
340            wxPython itself makes sure OnExit is called.
341    
342    2003-04-16  Jonathan Coles   <[email protected]>
343    
344            Initial putback of projection management code. Includes new
345            classes to read and write projection files. The current load
346            and save classes were abstracted a bit so they could be reused.
347            The Projection class was extended to provide new methods and
348            have a name.
349    
350            * Thuban/Model/load.py (XMLProcessor): New. Contains all the
351            general XML reading methods that were part of ProcessSession.
352    
353            * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
354            name.
355            (ProjFile): New. Represents a file that contains projection
356            information.
357    
358            * Thuban/Model/resource.py: New. Contains general utilities
359            for read and writing projection files.
360    
361            * Thuban/Model/save.py (XMLSaver): New. Contains all the
362            general XML writing methods that were part of SessionSaver.
363            (SessionSaver): Renamed from Saver.
364    
365            * test/test_proj.py: New test cases for the projection
366            file read and write functions.
367    
368    2003-04-16  Jonathan Coles   <[email protected]>
369    
370            * Thuban/Model/classification.py: Use repr() around values
371            in the ClassGroup*.__repr__() methods so it is clearer when
372            a value is a string and when it is a number.
373    
374            * test/test_load.py: Rework the classification test to test
375            that we can load old files.
376            (testLabels): Test a file where the groups have labels.
377    
378    2003-04-16  Bernhard Herzog  <[email protected]>
379    
380            Safer implementation of the performance enhancements of the
381            low-level renderer:
382            
383            * extensions/thuban/wxproj.cpp (extract_projection)
384            (extract_pointer): Rename extract_projection to extract_pointer
385            and redefine its purpose to return the pointer stored in a CObject
386            returned by the object's cobject method. Update all callers.
387            (s_draw_info, free_draw_info, draw_polygon_init): Implement the
388            handling of these low-level parameters so that each s_draw_info
389            instance is handled as a CObject at python level that also
390            contains real references to the actual python objects which
391            contain the values in the struct. Add free_draw_info as the
392            destructor.
393            (draw_polygon_shape): Add the py_draw_info parameter which must a
394            cobject containing an s_draw_info pointer.
395    
396            * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
397            method to instantiat the low-level render parameter
398            (MapRenderer.draw_shape_layer): Use the new method. Remove some
399            commented out code.
400            (MapRenderer.draw_polygon_shape): Make the first parameter not the
401            layer but the low-level render parameter
402            (ScreenRenderer.draw_shape_layer): Use the low-level render
403            parameter.
404    
405    2003-04-15  Jonathan Coles   <[email protected]>
406    
407            * Thuban/Model/classification.py: Implemented __repr__ for
408            the ClassGroup* classes to make debugging a bit easier.
409            (ClassGroup.SetLabel): Check that the string is an instance
410            of StringTypes not StringType. Accounts for Unicode strings.
411    
412            * Thuban/Model/color.py: Implemented __repr__ to make
413            debugging a bit easier.
414    
415            * Thuban/Model/save.py (Saver.write_classification): Need to
416            save the group label.
417    
418            * test/test_load.py (testClassification): New. Loads the
419            iceland_sample_test.thuban file and checks if it was loaded
420            correctly.
421    
422    2003-04-15  Jonathan Coles   <[email protected]>
423    
424            * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
425            to improve rendering performance by initializing the variables
426            that are not change each time draw_polygon_shape() is called.
427            The values are stored in a global struct draw_info.
428            (draw_polygon_shape): Removed initialization code that is
429            now in draw_polygon_init().
430    
431            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
432            drawing initialization call to draw_polygon_init()
433            (MapRenderer.draw_polygon_shape): Use new signature of
434            draw_polygon_shape.
435    
436            * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
437            weirdness by setting the range to (1, maxint).
438    
439            * Thuban/Model/classification.py (ClassGroupProperties): Make
440            instance variables private and optimize comparison operator
441            by first checking if the color references are the same.
442            (ClassGroupSingleton): Make instance variables private.
443            (ClassGroupRange): Make instance variables private.
444    
445            * HOWTO-Release: Filled in missing steps for releasing packages.
446    
447    2003-04-15  Bernhard Herzog  <[email protected]>
448    
449            First stab at internationalized messages:
450    
451            * Thuban/__init__.py (_): Implement the translation function for
452            real using the python gettext module.
453    
454            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
455            translate empty strings.
456    
457            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
458            Add a missing space to a warning message
459    
460            * po/README: New. Notes about the management of the translation
461            files.
462    
463            * po/Makefile: New. Makefile to help manage the translation files.
464    
465            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
466    
467            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
468            translations and support files in po/
469    
470            * setup.py (data_files): Add the *.mo files to the data_files too
471    
472            * README: Add note about the translations when building from CVS
473    
474    2003-04-14  Jonathan Coles   <[email protected]>
475    
476            * Thuban/UI/dock.py: Fixes some window resizing problems most
477            noticable under windows. Always assume the button bitmaps will
478            be there. Code clean up.
479            (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
480            images for the dock/undock button to the same images.
481            Work around for RTbug #1801.
482    
483            * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
484            be allowed to grow within the sizer. Fixes a bug under Windows
485            where the toolbar wasn't being drawn.
486    
487    2003-04-14  Frank Koormann   <[email protected]>
488    
489            * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
490            Updated design to try to make the button functionality more
491            transparent.
492    
493    2003-04-14  Jonathan Coles   <[email protected]>
494    
495            * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
496            finalize the intialization of the panel.
497    
498            * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
499            creation of the panel. Should be the last thing called in the
500            initializer of a subclass.
501    
502            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
503            set the current selections in the combo boxes. This is needed
504            under Windows.
505    
506            * Thuban/UI/classifier.py (Classifier.__init__): Add a top
507            level panel to the dialog so that the background colors are
508            consistent under Windows.
509    
510    2003-04-11  Jonathan Coles   <[email protected]>
511    
512            * Thuban/UI/classgen.py: Change color ramps to start at white
513            not black.
514    
515            * Thuban/UI/legend.py: Enable/disable the legend buttons when
516            the legend changes. Fixes RTbug #1793.
517    
518            * test/test_classification.py: Added test for copying of
519            classifications.
520    
521    2003-04-11  Jonathan Coles   <[email protected]>
522    
523            * Thuban/UI/resource.py: New. Centralize the loading of resources
524            such as bitmaps.
525    
526            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
527            added images to the move buttons, added 'reverse' button.
528            (CustomRampPanel.__init__): Added images to the move buttons.
529            (GreyRamp): New. Generates a ramp from white to black.
530            (HotToColdRamp): New. Generates a ramp from cold to hot colors.
531    
532            * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
533            ID_PROPERTY_*.
534            (Classifier.__init__): Minor changes to the layout.
535            (Classifier._OnTitleChanged): Listen for when the user edits the
536            title and update the dialog's title and the layer's title.
537    
538            * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
539    
540            * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
541            (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
542            if the layer's title changes.
543    
544            * Thuban/UI/mainwindow.py: Added new menu item and associated code
545            to open a dialog to rename the map.
546            (MainWindow): Use new resource class to import bitmaps.
547    
548    2003-04-11  Jonathan Coles   <[email protected]>
549    
550            * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
551            Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
552            Resources/Bitmaps/group_use_none.xpm,
553            Resources/Bitmaps/group_use_not.xpm,
554            Resources/Bitmaps/hide_layer.xpm,
555            Resources/Bitmaps/layer_properties.xpm,
556            Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
557            Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
558            New.
559    
560  2003-04-10  Jonathan Coles   <[email protected]>  2003-04-10  Jonathan Coles   <[email protected]>
561    
562          * Thuban/Model/classification.py: (ClassGroupRange.__init__):          * Thuban/Model/classification.py: (ClassGroupRange.__init__):

Legend:
Removed from v.644  
changed lines
  Added in v.764

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26