[Python-checkins] python/dist/src/Lib/plat-mac/lib-scriptpackages/Terminal Standard_Suite.py,1.4,1.5 Terminal_Suite.py,1.7,1.8 __init__.py,1.7,1.8

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 13 Jun 2003 07:31:22 -0700


Update of /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Terminal
In directory sc8-pr-cvs1:/tmp/cvs-serv2770/lib-scriptpackages/Terminal

Modified Files:
	Standard_Suite.py Terminal_Suite.py __init__.py 
Log Message:
Re-gegernated with the new gensuitemodule.


Index: Standard_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Standard_Suite.py	12 Apr 2003 22:27:11 -0000	1.4
--- Standard_Suite.py	13 Jun 2003 14:31:19 -0000	1.5
***************
*** 338,353 ****
--- 338,357 ----
      which = 'c@#^'
      want = 'cobj'
+ _3c_Inheritance_3e_ = _Prop__3c_Inheritance_3e_()
  class _Prop_frontmost(aetools.NProperty):
      """frontmost - Is this the frontmost (active) application? """
      which = 'pisf'
      want = 'bool'
+ frontmost = _Prop_frontmost()
  class _Prop_name(aetools.NProperty):
      """name - The name of the application. """
      which = 'pnam'
      want = 'utxt'
+ name = _Prop_name()
  class _Prop_version(aetools.NProperty):
      """version - The version of the application. """
      which = 'vers'
      want = 'utxt'
+ version = _Prop_version()
  #        element 'cwin' as ['name', 'indx', 'rele', 'rang', 'test', 'ID  ']
  #        element 'docu' as ['name', 'indx', 'rele', 'rang', 'test']

Index: Terminal_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Terminal/Terminal_Suite.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Terminal_Suite.py	12 Apr 2003 22:27:11 -0000	1.7
--- Terminal_Suite.py	13 Jun 2003 14:31:19 -0000	1.8
***************
*** 69,76 ****
--- 69,78 ----
      which = 'c@#^'
      want = 'capp'
+ _3c_Inheritance_3e_ = _Prop__3c_Inheritance_3e_()
  class _Prop_properties(aetools.NProperty):
      """properties - every property of the Terminal program """
      which = 'pALL'
      want = '****'
+ properties = _Prop_properties()
  #        element 'cwin' as ['name', 'indx', 'rele', 'rang', 'test', 'ID  ']
  #        element 'docu' as ['name', 'indx', 'rele', 'rang', 'test']

Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Terminal/__init__.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** __init__.py	12 Apr 2003 22:27:11 -0000	1.7
--- __init__.py	13 Jun 2003 14:31:19 -0000	1.8
***************
*** 49,52 ****
--- 49,54 ----
  getbaseclasses(item)
  getbaseclasses(document)
+ getbaseclasses(window)
+ getbaseclasses(application)
  getbaseclasses(character)
  getbaseclasses(attachment)
***************
*** 55,60 ****
  getbaseclasses(attribute_run)
  getbaseclasses(text)
- getbaseclasses(window)
- getbaseclasses(application)
  
  #
--- 57,60 ----
***************
*** 67,70 ****
--- 67,72 ----
      'cobj' : item,
      'docu' : document,
+     'cwin' : window,
+     'capp' : application,
      'cha ' : character,
      'atts' : attachment,
***************
*** 73,78 ****
      'catr' : attribute_run,
      'ctxt' : text,
-     'cwin' : window,
-     'capp' : application,
  }
  
--- 75,78 ----
***************
*** 86,87 ****
--- 86,89 ----
      _moduleName = 'Terminal'
  
+     _elemdict = application._elemdict
+     _propdict = application._propdict