[Python-checkins] python/dist/src/Lib/idlelib Bindings.py,1.18,1.19 EditorWindow.py,1.51,1.52

kbk@users.sourceforge.net kbk@users.sourceforge.net
Wed, 11 Jun 2003 21:03:51 -0700


Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1:/tmp/cvs-serv4874

Modified Files:
	Bindings.py EditorWindow.py 
Log Message:
1. Remove the Readme entry on the Help Menu, now in About dialog.
2. Change title on About dialog.
 Modified Files:
 	Bindings.py EditorWindow.py 


Index: Bindings.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/Bindings.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** Bindings.py	2 Jun 2003 01:51:38 -0000	1.18
--- Bindings.py	12 Jun 2003 04:03:48 -0000	1.19
***************
*** 71,80 ****
   ('options', [
     ('_Configure IDLE...', '<<open-config-dialog>>'),
- ##   None,
- ##   ('Revert to _Default Settings', '<<revert-all-settings>>'),
     ]),
   ('help', [
     ('_About IDLE', '<<about-idle>>'),
-    ('IDLE _Readme', '<<view-readme>>'),
     None,
     ('_IDLE Help', '<<help>>'),
--- 71,77 ----

Index: EditorWindow.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/EditorWindow.py,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** EditorWindow.py	7 Jun 2003 03:21:17 -0000	1.51
--- EditorWindow.py	12 Jun 2003 04:03:49 -0000	1.52
***************
*** 107,111 ****
          text.bind("<<center-insert>>", self.center_insert_event)
          text.bind("<<help>>", self.help_dialog)
-         text.bind("<<view-readme>>", self.view_readme)
          text.bind("<<python-docs>>", self.python_docs)
          text.bind("<<about-idle>>", self.about_dialog)
--- 107,110 ----
***************
*** 298,309 ****
  
      def about_dialog(self, event=None):
!         aboutDialog.AboutDialog(self.top,'About IDLEfork')
  
      def config_dialog(self, event=None):
          configDialog.ConfigDialog(self.top,'Settings')
- 
-     def view_readme(self, event=None):
-         fn=os.path.join(os.path.abspath(os.path.dirname(__file__)),'README.txt')
-         textView.TextViewer(self.top,'IDLEfork - README',fn)
  
      def help_dialog(self, event=None):
--- 297,304 ----
  
      def about_dialog(self, event=None):
!         aboutDialog.AboutDialog(self.top,'About IDLE')
  
      def config_dialog(self, event=None):
          configDialog.ConfigDialog(self.top,'Settings')
  
      def help_dialog(self, event=None):