/[thuban]/branches/WIP-pyshapelib-bramz/ChangeLog
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/ChangeLog

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

revision 165 by bh, Fri May 10 09:35:06 2002 UTC revision 208 by bh, Tue Jul 9 14:57:03 2002 UTC
# Line 1  Line 1 
1    2002-07-09  Bernhard Herzog  <[email protected]>
2    
3            * Examples: New subdirectory for examples.
4    
5            * Examples/simple_extensions/simple_tool.xpm,
6            Examples/simple_extensions/simple_tool.py,
7            Examples/simple_extensions/simple_command.py,
8            Examples/simple_extensions/README: Simple examples showing how to
9            add new commands and tools.
10    
11            * setup.cfg (bdist_rpm): Add the default value for prefix and tell
12            bdist_rpm that we also have an install script.
13            (bdist_inno): Add 2002 to the copyright notice.
14    
15            * setup.py: Create a file in python's site-packages directory to
16            make installation of Thuban as a library easier.
17            (ThubanInstall.user_options): Add two new options,
18            create-init-module and init-module-dir
19            (ThubanInstall.expand_with_pure_python_dirs): New method to expand
20            filenames for installation in the default directories.
21            (ThubanInstall.select_scheme, ThubanInstall.convert_paths): Extend
22            the inherited methods to capture some filenames before they're
23            transformed too much by distutils.
24            (ThubanInstall.run): Create the init module if requested.
25            (ThubanInstall.thuban_init_filename): New method to return the
26            full name of the init module.
27            (ThubanInstall.get_outputs): Append the filename of the init
28            module.
29    
30    2002-07-08  Bernhard Herzog  <[email protected]>
31    
32            * setup.py (thuban_bdist_rpm): Extend this version of bdist_rpm to
33            handle the prefix properly which means that the default for the
34            installation prefix should be /usr for RPMs and /usr/local when
35            doing a normal source install.
36            (bdist_rpm_install_script): Script to override the default install
37            commands in the specfile generated by the bdist_rpm command.
38            (thuban_bdist_rpm.user_options): Add a prefix option
39            (thuban_bdist_rpm.initialize_options): Init the prefix option.
40            Create the script files for the spec files as empty files here
41            (thuban_bdist_rpm._make_spec_file): Override the inherited method
42            to fill the script files with content.
43    
44            * Thuban/Model/save.py (relative_filename): Wrapper around
45            Thuban.Lib.fileutil.relative_filename that accepts an empty dir
46            argument. save_session now automatically uses this version,
47            solving a problem when saving to a relative filename.
48    
49            * setup.py: In the setup call, make sure that the library
50            directories are under $prefix/lib not directly under $prefix.
51    
52    2002-06-20      Jan-Oliver Wagner <[email protected]>
53    
54            * Thuban/Model/extension.py: new module to handle extension objects.
55            * Thuban/Model/messages.py: new messages for extensions.
56            * Thuban/Model/session.py (Session.Extensions, Session.HasExtensions,
57            Session.AddExtension): new for handling extensions.
58            Also some other minor changes to round up extension handling.
59            * Thuban/UI/tree.py (SessionTreeCrtl:update_tree): Added visualization
60            of Extension titles and title and names of its objects.
61    
62    2002-05-29  Bernhard Herzog  <[email protected]>
63    
64            * Thuban/UI/mainwindow.py (MainWindow.bind_command_events): Bind
65            the events for a command.
66            (MainWindow.add_toolbar_command, MainWindow.add_menu_command):
67            Call bind_command_events to bind the events. add_toolbar_command
68            can now bind events too so that it's possible to have commands
69            that are only available through the toolbar.
70            (MainWindow.init_ids): New instance variable events_bound to keep
71            track of for which commands events have been bound.
72    
73    2002-05-28  Bernhard Herzog  <[email protected]>
74    
75            * Thuban/UI/menu.py: New module to build and manage menus.
76    
77            * Thuban/UI/mainwindow.py: Remove some unused imports.
78            (MainWindow.__init__, main_menu): move the definition of the main
79            menu from __init__ to the Menu instance main_menu.
80            (MainWindow.build_menu_bar, MainWindow.build_menu): New methods to
81            build the menu bar and sub-menus from a menu description.
82    
83            * Thuban/UI/application.py (ThubanApplication.OnInit): Read the
84            startup file
85            (ThubanApplication.read_startup_files): New method to run
86            ~/.thuban/thubanstart.py
87    
88            * Thuban/UI/mainwindow.py (MainWindow.__init__, main_toolbar):
89            Move the toolbar definition to the Menu instance main_toolbar.
90            (MainWindow.build_toolbar): New method to build the toolbar
91            similar to the build_menu methods
92    
93    2002-05-23  Bernhard Herzog  <[email protected]>
94    
95            * Thuban/UI/mainwindow.py (MainWindow.__init__): Fix spelling of
96            layer_outline_color. Fix it in the definition of the command too.
97    
98            * Thuban/UI/command.py (Command): Fix typo in doc string
99    
100    2002-05-22  Bernhard Herzog  <[email protected]>
101    
102            * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Fix a typo
103            in the docstring
104    
105    2002-05-15  Bernhard Herzog  <[email protected]>
106    
107            * Thuban/Model/layer.py (Layer.open_shapefile): Set bbox to None
108            when the shapefile is empty.
109            (Layer.BoundingBox, Layer.LatLongBoundingBox): Both methods may
110            now return None for empty shapefiles. Update doc-strings.
111    
112            * Thuban/Model/map.py (Map.BoundingBox): Add doc-string. Deal with
113            the layer's bbox being None.
114    
115            * Thuban/UI/tree.py (SessionTreeCtrl.update_tree): Deal with the
116            layer's bbox being None.
117    
118            * Thuban/UI/view.py (MapCanvas.shape_selected): Only redraw when
119            necessary.
120            (MapCanvas.__init__): New instance variables, last_selected_layer
121            and last_selected_shape to determine how the selection has
122            changed.
123    
124            * Thuban/UI/tableview.py (TableGrid.__init__): Do not call
125            AutoSizeColumns because it will cause a traversal of the entire
126            table which for large .dbf files will take a very long time.
127    
128    2002-05-14  Bernhard Herzog  <[email protected]>
129    
130            * Thuban/Model/layer.py (Layer.open_shapefile): Choose a better
131            maximum depth for the tree than shapelib does by default.
132    
133  2002-05-10  Bernhard Herzog  <[email protected]>  2002-05-10  Bernhard Herzog  <[email protected]>
134    
135          * setup.py (py_modules): The shptree modules doesn't have a          * setup.py (py_modules): The shptree modules doesn't have a

Legend:
Removed from v.165  
changed lines
  Added in v.208

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26