1 |
|
2002-07-10 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* setup.py (create_init_module): New configurable variable whose |
4 |
|
default depends on the platform we're running on. |
5 |
|
(ThubanInstall.initialize_options): Initialize |
6 |
|
self.create_init_module from the global create_init_module |
7 |
|
(ThubanInstall.user_options): indictate that the options |
8 |
|
create-init-module and init-module-dir have arguments. |
9 |
|
|
10 |
|
* setup.py: In the setup call change the version number to include |
11 |
|
cvs. |
12 |
|
|
13 |
|
* MANIFEST.in: Add the files in Examples |
14 |
|
|
15 |
|
2002-07-09 Bernhard Herzog <[email protected]> |
16 |
|
|
17 |
|
* setup.py: In the setup call, use the thuban homepage as the |
18 |
|
value of the url parameter. |
19 |
|
|
20 |
|
* Examples: New subdirectory for examples. |
21 |
|
|
22 |
|
* Examples/simple_extensions/simple_tool.xpm, |
23 |
|
Examples/simple_extensions/simple_tool.py, |
24 |
|
Examples/simple_extensions/simple_command.py, |
25 |
|
Examples/simple_extensions/README: Simple examples showing how to |
26 |
|
add new commands and tools. |
27 |
|
|
28 |
|
* setup.cfg (bdist_rpm): Add the default value for prefix and tell |
29 |
|
bdist_rpm that we also have an install script. |
30 |
|
(bdist_inno): Add 2002 to the copyright notice. |
31 |
|
|
32 |
|
* setup.py: Create a file in python's site-packages directory to |
33 |
|
make installation of Thuban as a library easier. |
34 |
|
(ThubanInstall.user_options): Add two new options, |
35 |
|
create-init-module and init-module-dir |
36 |
|
(ThubanInstall.expand_with_pure_python_dirs): New method to expand |
37 |
|
filenames for installation in the default directories. |
38 |
|
(ThubanInstall.select_scheme, ThubanInstall.convert_paths): Extend |
39 |
|
the inherited methods to capture some filenames before they're |
40 |
|
transformed too much by distutils. |
41 |
|
(ThubanInstall.run): Create the init module if requested. |
42 |
|
(ThubanInstall.thuban_init_filename): New method to return the |
43 |
|
full name of the init module. |
44 |
|
(ThubanInstall.get_outputs): Append the filename of the init |
45 |
|
module. |
46 |
|
|
47 |
|
2002-07-08 Bernhard Herzog <[email protected]> |
48 |
|
|
49 |
|
* setup.py (thuban_bdist_rpm): Extend this version of bdist_rpm to |
50 |
|
handle the prefix properly which means that the default for the |
51 |
|
installation prefix should be /usr for RPMs and /usr/local when |
52 |
|
doing a normal source install. |
53 |
|
(bdist_rpm_install_script): Script to override the default install |
54 |
|
commands in the specfile generated by the bdist_rpm command. |
55 |
|
(thuban_bdist_rpm.user_options): Add a prefix option |
56 |
|
(thuban_bdist_rpm.initialize_options): Init the prefix option. |
57 |
|
Create the script files for the spec files as empty files here |
58 |
|
(thuban_bdist_rpm._make_spec_file): Override the inherited method |
59 |
|
to fill the script files with content. |
60 |
|
|
61 |
|
* Thuban/Model/save.py (relative_filename): Wrapper around |
62 |
|
Thuban.Lib.fileutil.relative_filename that accepts an empty dir |
63 |
|
argument. save_session now automatically uses this version, |
64 |
|
solving a problem when saving to a relative filename. |
65 |
|
|
66 |
|
* setup.py: In the setup call, make sure that the library |
67 |
|
directories are under $prefix/lib not directly under $prefix. |
68 |
|
|
69 |
|
2002-06-20 Jan-Oliver Wagner <[email protected]> |
70 |
|
|
71 |
|
* Thuban/Model/extension.py: new module to handle extension objects. |
72 |
|
* Thuban/Model/messages.py: new messages for extensions. |
73 |
|
* Thuban/Model/session.py (Session.Extensions, Session.HasExtensions, |
74 |
|
Session.AddExtension): new for handling extensions. |
75 |
|
Also some other minor changes to round up extension handling. |
76 |
|
* Thuban/UI/tree.py (SessionTreeCrtl:update_tree): Added visualization |
77 |
|
of Extension titles and title and names of its objects. |
78 |
|
|
79 |
|
2002-05-29 Bernhard Herzog <[email protected]> |
80 |
|
|
81 |
|
* Thuban/UI/mainwindow.py (MainWindow.bind_command_events): Bind |
82 |
|
the events for a command. |
83 |
|
(MainWindow.add_toolbar_command, MainWindow.add_menu_command): |
84 |
|
Call bind_command_events to bind the events. add_toolbar_command |
85 |
|
can now bind events too so that it's possible to have commands |
86 |
|
that are only available through the toolbar. |
87 |
|
(MainWindow.init_ids): New instance variable events_bound to keep |
88 |
|
track of for which commands events have been bound. |
89 |
|
|
90 |
|
2002-05-28 Bernhard Herzog <[email protected]> |
91 |
|
|
92 |
|
* Thuban/UI/menu.py: New module to build and manage menus. |
93 |
|
|
94 |
|
* Thuban/UI/mainwindow.py: Remove some unused imports. |
95 |
|
(MainWindow.__init__, main_menu): move the definition of the main |
96 |
|
menu from __init__ to the Menu instance main_menu. |
97 |
|
(MainWindow.build_menu_bar, MainWindow.build_menu): New methods to |
98 |
|
build the menu bar and sub-menus from a menu description. |
99 |
|
|
100 |
|
* Thuban/UI/application.py (ThubanApplication.OnInit): Read the |
101 |
|
startup file |
102 |
|
(ThubanApplication.read_startup_files): New method to run |
103 |
|
~/.thuban/thubanstart.py |
104 |
|
|
105 |
|
* Thuban/UI/mainwindow.py (MainWindow.__init__, main_toolbar): |
106 |
|
Move the toolbar definition to the Menu instance main_toolbar. |
107 |
|
(MainWindow.build_toolbar): New method to build the toolbar |
108 |
|
similar to the build_menu methods |
109 |
|
|
110 |
2002-05-23 Bernhard Herzog <[email protected]> |
2002-05-23 Bernhard Herzog <[email protected]> |
111 |
|
|
112 |
* Thuban/UI/mainwindow.py (MainWindow.__init__): Fix spelling of |
* Thuban/UI/mainwindow.py (MainWindow.__init__): Fix spelling of |