Minor cleanup for 2.5. Upped version to 0.9.4. Removed use of decorators.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25377 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Patrick K. O'Brien
2004-01-25 23:37:41 +00:00
parent 1c32ded32c
commit e757654cd8
5 changed files with 40 additions and 23 deletions

View File

@@ -1,5 +1,21 @@
0.9.4 (1/25/2004 to //2004)
------------------------------
0.9.2 (5/3/2003 to //2003) Removed wxd decorators in favor of new SWIG-generated docstrings.
Removed docs tabs from crust interface:
* wxPython Docs
* wxSTC Docs
0.9.3 (9/25/2003 to 1/24/2004)
------------------------------
Fun and games with dynamic renaming. Details of any other changes
were lost in the confusion. I'll try to do better in the future.
0.9.2 (5/3/2003 to 9/25/2003)
----------------------------- -----------------------------
Changed to the new prefix-less "wx" package:: Changed to the new prefix-less "wx" package::

View File

@@ -30,7 +30,7 @@ build a Python program without a PyCrust either.
What else do I need to use PyCrust? What else do I need to use PyCrust?
----------------------------------- -----------------------------------
PyCrust requires Python 2.1.3 or later, and wxPython 2.4 or later. PyCrust requires Python 2.2 or later, and wxPython 2.4 or later.
PyCrust uses wxPython and the Scintilla wrapper (wxStyledTextCtrl). PyCrust uses wxPython and the Scintilla wrapper (wxStyledTextCtrl).
Python is available at http://www.python.org/. wxPython is available Python is available at http://www.python.org/. wxPython is available
at http://www.wxpython.org/. at http://www.wxpython.org/.
@@ -40,16 +40,20 @@ Where can I get the latest version of PyCrust?
---------------------------------------------- ----------------------------------------------
The latest production version ships with wxPython. The latest The latest production version ships with wxPython. The latest
developer version is available in CVS at: developer version is available in the wxWindows CVS at:
http://sourceforge.net/cvs/?group_id=31263 http://cvs.wxwindows.org/viewcvs.cgi/
Where is the PyCrust project hosted? Where is the PyCrust project hosted?
------------------------------------ ------------------------------------
At SourceForge, of course. The SourceForge summary page: The old answer was "At SourceForge, of course." The SourceForge
summary page is still available at:
http://sourceforge.net/projects/pycrust/ http://sourceforge.net/projects/pycrust/
The new answer is that there is no longer a need for a separate
project. Simply install wxPython and you'll have everything you need.
I found a bug in PyCrust, what do I do with it? I found a bug in PyCrust, what do I do with it?
----------------------------------------------- -----------------------------------------------

View File

@@ -62,20 +62,20 @@ class Crust(wx.SplitterWindow):
self.notebook.AddPage(page=self.sessionlisting, text='Session') self.notebook.AddPage(page=self.sessionlisting, text='Session')
self.dispatcherlisting = DispatcherListing(parent=self.notebook) self.dispatcherlisting = DispatcherListing(parent=self.notebook)
self.notebook.AddPage(page=self.dispatcherlisting, text='Dispatcher') self.notebook.AddPage(page=self.dispatcherlisting, text='Dispatcher')
from wxd import wx_ ## from wxd import wx_
self.wxdocs = Filling(parent=self.notebook, ## self.wxdocs = Filling(parent=self.notebook,
rootObject=wx_, ## rootObject=wx_,
rootLabel='wx', ## rootLabel='wx',
rootIsNamespace=False, ## rootIsNamespace=False,
static=True) ## static=True)
self.notebook.AddPage(page=self.wxdocs, text='wxPython Docs') ## self.notebook.AddPage(page=self.wxdocs, text='wxPython Docs')
from wxd import stc_ ## from wxd import stc_
self.stcdocs = Filling(parent=self.notebook, ## self.stcdocs = Filling(parent=self.notebook,
rootObject=stc_.StyledTextCtrl, ## rootObject=stc_.StyledTextCtrl,
rootLabel='StyledTextCtrl', ## rootLabel='StyledTextCtrl',
rootIsNamespace=False, ## rootIsNamespace=False,
static=True) ## static=True)
self.notebook.AddPage(page=self.stcdocs, text='StyledTextCtrl Docs') ## self.notebook.AddPage(page=self.stcdocs, text='StyledTextCtrl Docs')
self.SplitHorizontally(self.shell, self.notebook, 300) self.SplitHorizontally(self.shell, self.notebook, 300)
self.SetMinimumPaneSize(1) self.SetMinimumPaneSize(1)

View File

@@ -8,9 +8,6 @@ __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
__cvsid__ = "$Id$" __cvsid__ = "$Id$"
__revision__ = "$Revision$"[11:-2] __revision__ = "$Revision$"[11:-2]
#from wxd.d_wx import wx
#from wxd.d_stc import stc
import wx import wx
from wx import stc from wx import stc

View File

@@ -6,4 +6,4 @@ __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
__cvsid__ = "$Id$" __cvsid__ = "$Id$"
__revision__ = "$Revision$"[11:-2] __revision__ = "$Revision$"[11:-2]
VERSION = '0.9.3' VERSION = '0.9.4'