[Python-checkins] python/dist/src/Lib/plat-mac/lib-scriptpackages/CodeWarrior CodeWarrior_suite.py,1.3,1.4 Metrowerks_Shell_Suite.py,1.3,1.4 Standard_Suite.py,1.2,1.3 __init__.py,1.3,1.4

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 28 Mar 2003 15:38:28 -0800


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

Modified Files:
	CodeWarrior_suite.py Metrowerks_Shell_Suite.py 
	Standard_Suite.py __init__.py 
Log Message:
Sigh: didn't catch all lists that needed to be sorted. Regenerated again.


Index: CodeWarrior_suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/CodeWarrior/CodeWarrior_suite.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** CodeWarrior_suite.py	28 Mar 2003 22:07:15 -0000	1.3
--- CodeWarrior_suite.py	28 Mar 2003 23:37:55 -0000	1.4
***************
*** 329,340 ****
  	"""subtarget - a target that is prerequisite for another target """
  	want = 'SBTG'
- class target(aetools.NProperty):
- 	"""target - the target that is dependent on this subtarget """
- 	which = 'TrgT'
- 	want = 'TRGT'
  class link_against_output(aetools.NProperty):
  	"""link against output - is the output of this subtarget linked into its dependent target? """
  	which = 'LNKO'
  	want = 'bool'
  
  subtargets = subtarget
--- 329,340 ----
  	"""subtarget - a target that is prerequisite for another target """
  	want = 'SBTG'
  class link_against_output(aetools.NProperty):
  	"""link against output - is the output of this subtarget linked into its dependent target? """
  	which = 'LNKO'
  	want = 'bool'
+ class target(aetools.NProperty):
+ 	"""target - the target that is dependent on this subtarget """
+ 	which = 'TrgT'
+ 	want = 'TRGT'
  
  subtargets = subtarget
***************
*** 357,402 ****
  	which = 'PrjD'
  	want = 'PRJD'
- #        element 'SRCF' as ['indx', 'test', 'rang']
  #        element 'SBTG' as ['indx', 'test', 'rang']
  
  class target_file(aetools.ComponentItem):
  	"""target file - a source or header file in a target """
  	want = 'SRCF'
! class id(aetools.NProperty):
! 	"""id - the unique ID number of the target file """
! 	which = 'ID  '
! 	want = 'long'
! class type(aetools.NProperty):
! 	"""type - the type of source file """
! 	which = 'FTYP'
! 	want = 'FTYP'
! class location(aetools.NProperty):
! 	"""location - the location of the target file on disk """
! 	which = 'FILE'
! 	want = 'fss '
! class path(aetools.NProperty):
! 	"""path - the path of the source file on disk """
! 	which = 'Path'
! 	want = 'itxt'
! class linked(aetools.NProperty):
! 	"""linked - is the source file in the link order of its target? """
! 	which = 'LINK'
! 	want = 'bool'
! class link_index(aetools.NProperty):
! 	"""link index - the index of the source file in its target\xd5s link order (-1 if source file is not in link order) """
! 	which = 'LIDX'
  	want = 'long'
- class modified_date(aetools.NProperty):
- 	"""modified date - the date and time this source file was last modified """
- 	which = 'MODD'
- 	want = 'ldt '
  class compiled_date(aetools.NProperty):
  	"""compiled date - the date and this source file was last compiled """
  	which = 'CMPD'
  	want = 'ldt '
- class code_size(aetools.NProperty):
- 	"""code size - the size of the code (in bytes) produced by compiling this source file """
- 	which = 'CSZE'
- 	want = 'long'
  class data_size(aetools.NProperty):
  	"""data size - the size of the date (in bytes) produced by compiling this source file """
--- 357,374 ----
  	which = 'PrjD'
  	want = 'PRJD'
  #        element 'SBTG' as ['indx', 'test', 'rang']
+ #        element 'SRCF' as ['indx', 'test', 'rang']
  
  class target_file(aetools.ComponentItem):
  	"""target file - a source or header file in a target """
  	want = 'SRCF'
! class code_size(aetools.NProperty):
! 	"""code size - the size of the code (in bytes) produced by compiling this source file """
! 	which = 'CSZE'
  	want = 'long'
  class compiled_date(aetools.NProperty):
  	"""compiled date - the date and this source file was last compiled """
  	which = 'CMPD'
  	want = 'ldt '
  class data_size(aetools.NProperty):
  	"""data size - the size of the date (in bytes) produced by compiling this source file """
***************
*** 407,430 ****
  	which = 'DBUG'
  	want = 'bool'
! class weak_link(aetools.NProperty):
! 	"""weak link - is this shared library linked weakly? """
! 	which = 'WEAK'
! 	want = 'bool'
  class init_before(aetools.NProperty):
  	"""init before - is the \xd4initialize before\xd5 flag set for this shared library? """
  	which = 'INIT'
  	want = 'bool'
  class merge_output(aetools.NProperty):
  	"""merge output - is this shared library merged into another code fragment? """
  	which = 'MRGE'
  	want = 'bool'
  class prerequisites(aetools.NProperty):
  	"""prerequisites - the source files needed to build this source file """
  	which = 'PRER'
  	want = 'list'
! class dependents(aetools.NProperty):
! 	"""dependents - the source files that need this source file in order to build """
! 	which = 'DPND'
! 	want = 'list'
  
  target_files = target_file
--- 379,430 ----
  	which = 'DBUG'
  	want = 'bool'
! class dependents(aetools.NProperty):
! 	"""dependents - the source files that need this source file in order to build """
! 	which = 'DPND'
! 	want = 'list'
! class id(aetools.NProperty):
! 	"""id - the unique ID number of the target file """
! 	which = 'ID  '
! 	want = 'long'
  class init_before(aetools.NProperty):
  	"""init before - is the \xd4initialize before\xd5 flag set for this shared library? """
  	which = 'INIT'
  	want = 'bool'
+ class link_index(aetools.NProperty):
+ 	"""link index - the index of the source file in its target\xd5s link order (-1 if source file is not in link order) """
+ 	which = 'LIDX'
+ 	want = 'long'
+ class linked(aetools.NProperty):
+ 	"""linked - is the source file in the link order of its target? """
+ 	which = 'LINK'
+ 	want = 'bool'
+ class location(aetools.NProperty):
+ 	"""location - the location of the target file on disk """
+ 	which = 'FILE'
+ 	want = 'fss '
  class merge_output(aetools.NProperty):
  	"""merge output - is this shared library merged into another code fragment? """
  	which = 'MRGE'
  	want = 'bool'
+ class modified_date(aetools.NProperty):
+ 	"""modified date - the date and time this source file was last modified """
+ 	which = 'MODD'
+ 	want = 'ldt '
+ class path(aetools.NProperty):
+ 	"""path - the path of the source file on disk """
+ 	which = 'Path'
+ 	want = 'itxt'
  class prerequisites(aetools.NProperty):
  	"""prerequisites - the source files needed to build this source file """
  	which = 'PRER'
  	want = 'list'
! class type(aetools.NProperty):
! 	"""type - the type of source file """
! 	which = 'FTYP'
! 	want = 'FTYP'
! class weak_link(aetools.NProperty):
! 	"""weak link - is this shared library linked weakly? """
! 	which = 'WEAK'
! 	want = 'bool'
  
  target_files = target_file
***************
*** 499,504 ****
  project_document._superclassnames = ['document']
  project_document._privpropdict = {
- 	'inherits' : inherits,
  	'current_target' : current_target,
  }
  project_document._privelemdict = {
--- 499,504 ----
  project_document._superclassnames = ['document']
  project_document._privpropdict = {
  	'current_target' : current_target,
+ 	'inherits' : inherits,
  }
  project_document._privelemdict = {
***************
*** 525,530 ****
  subtarget._privpropdict = {
  	'inherits' : inherits,
- 	'target' : target,
  	'link_against_output' : link_against_output,
  }
  subtarget._privelemdict = {
--- 525,530 ----
  subtarget._privpropdict = {
  	'inherits' : inherits,
  	'link_against_output' : link_against_output,
+ 	'target' : target,
  }
  subtarget._privelemdict = {
***************
*** 542,566 ****
  }
  target._privelemdict = {
- 	'target_file' : target_file,
  	'subtarget' : subtarget,
  }
  target_file._superclassnames = []
  target_file._privpropdict = {
- 	'id' : id,
- 	'type' : type,
- 	'location' : location,
- 	'path' : path,
- 	'linked' : linked,
- 	'link_index' : link_index,
- 	'modified_date' : modified_date,
- 	'compiled_date' : compiled_date,
  	'code_size' : code_size,
  	'data_size' : data_size,
  	'debug' : debug,
! 	'weak_link' : weak_link,
  	'init_before' : init_before,
  	'merge_output' : merge_output,
  	'prerequisites' : prerequisites,
! 	'dependents' : dependents,
  }
  target_file._privelemdict = {
--- 542,566 ----
  }
  target._privelemdict = {
  	'subtarget' : subtarget,
+ 	'target_file' : target_file,
  }
  target_file._superclassnames = []
  target_file._privpropdict = {
  	'code_size' : code_size,
+ 	'compiled_date' : compiled_date,
  	'data_size' : data_size,
  	'debug' : debug,
! 	'dependents' : dependents,
! 	'id' : id,
  	'init_before' : init_before,
+ 	'link_index' : link_index,
+ 	'linked' : linked,
+ 	'location' : location,
  	'merge_output' : merge_output,
+ 	'modified_date' : modified_date,
+ 	'path' : path,
  	'prerequisites' : prerequisites,
! 	'type' : type,
! 	'weak_link' : weak_link,
  }
  target_file._privelemdict = {
***************
*** 625,671 ****
  _classdeclarations = {
  	'1BRW' : single_class_browser,
! 	'PRJD' : project_document,
! 	'SYMB' : symbol_browser,
! 	'EDIT' : editor_document,
  	'COMP' : file_compare_document,
- 	'TOOL' : ToolServer_worksheet,
- 	'SBTG' : subtarget,
- 	'MSSG' : message_document,
- 	'INSP' : project_inspector,
- 	'TXTD' : text_document,
  	'CTLG' : catalog_document,
  	'HIER' : class_hierarchies,
! 	'TRGT' : target,
  	'PRGS' : build_progress_document,
  	'SRCF' : target_file,
! 	'BROW' : class_browser,
! 	'1HIR' : single_class_hierarchies,
  }
  
  _propdeclarations = {
  	'CURT' : current_target,
! 	'PrjD' : project_document,
! 	'MRGE' : merge_output,
! 	'WEAK' : weak_link,
  	'DPND' : dependents,
! 	'c@#^' : inherits,
  	'ID  ' : id,
! 	'CMPD' : compiled_date,
  	'LIDX' : link_index,
! 	'FILE' : location,
! 	'Path' : path,
  	'LNKO' : link_against_output,
- 	'imod' : modified,
- 	'sele' : selection,
- 	'DSZE' : data_size,
- 	'INIT' : init_before,
  	'MODD' : modified_date,
! 	'FTYP' : type,
  	'TrgT' : target,
  	'pnam' : name,
! 	'LINK' : linked,
! 	'CSZE' : code_size,
! 	'DBUG' : debug,
! 	'PRER' : prerequisites,
  }
  
--- 625,671 ----
  _classdeclarations = {
  	'1BRW' : single_class_browser,
! 	'1HIR' : single_class_hierarchies,
! 	'BROW' : class_browser,
  	'COMP' : file_compare_document,
  	'CTLG' : catalog_document,
+ 	'EDIT' : editor_document,
  	'HIER' : class_hierarchies,
! 	'INSP' : project_inspector,
! 	'MSSG' : message_document,
  	'PRGS' : build_progress_document,
+ 	'PRJD' : project_document,
+ 	'SBTG' : subtarget,
  	'SRCF' : target_file,
! 	'SYMB' : symbol_browser,
! 	'TOOL' : ToolServer_worksheet,
! 	'TRGT' : target,
! 	'TXTD' : text_document,
  }
  
  _propdeclarations = {
+ 	'CMPD' : compiled_date,
+ 	'CSZE' : code_size,
  	'CURT' : current_target,
! 	'DBUG' : debug,
  	'DPND' : dependents,
! 	'DSZE' : data_size,
! 	'FILE' : location,
! 	'FTYP' : type,
  	'ID  ' : id,
! 	'INIT' : init_before,
  	'LIDX' : link_index,
! 	'LINK' : linked,
  	'LNKO' : link_against_output,
  	'MODD' : modified_date,
! 	'MRGE' : merge_output,
! 	'PRER' : prerequisites,
! 	'Path' : path,
! 	'PrjD' : project_document,
  	'TrgT' : target,
+ 	'WEAK' : weak_link,
+ 	'c@#^' : inherits,
+ 	'imod' : modified,
  	'pnam' : name,
! 	'sele' : selection,
  }
  
***************
*** 674,680 ****
  
  _enumdeclarations = {
- 	'Inte' : _Enum_Inte,
  	'DKND' : _Enum_DKND,
  	'FTYP' : _Enum_FTYP,
  	'PERM' : _Enum_PERM,
  }
--- 674,680 ----
  
  _enumdeclarations = {
  	'DKND' : _Enum_DKND,
  	'FTYP' : _Enum_FTYP,
+ 	'Inte' : _Enum_Inte,
  	'PERM' : _Enum_PERM,
  }

Index: Metrowerks_Shell_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/CodeWarrior/Metrowerks_Shell_Suite.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Metrowerks_Shell_Suite.py	28 Mar 2003 22:07:16 -0000	1.3
--- Metrowerks_Shell_Suite.py	28 Mar 2003 23:37:55 -0000	1.4
***************
*** 794,805 ****
  	"""Access Paths - Contains the definitions of a project\xd5s access (search) paths. """
  	want = 'PATH'
- class User_Paths(aetools.NProperty):
- 	"""User Paths - To add an access path for the source files. """
- 	which = 'PA01'
- 	want = 'PInf'
- class System_Paths(aetools.NProperty):
- 	"""System Paths - To add an access path for the include files. (Not supported in Pascal) """
- 	which = 'PA03'
- 	want = 'PInf'
[...2186 lines suppressed...]
--- 2355,2373 ----
  
  _enumdeclarations = {
  	'Acce' : _Enum_Acce,
! 	'BXbr' : _Enum_BXbr,
  	'DbSA' : _Enum_DbSA,
! 	'DgBL' : _Enum_DgBL,
  	'ErrT' : _Enum_ErrT,
! 	'Inte' : _Enum_Inte,
! 	'Lang' : _Enum_Lang,
  	'PPrm' : _Enum_PPrm,
+ 	'PXdg' : _Enum_PXdg,
+ 	'PthF' : _Enum_PthF,
+ 	'RefP' : _Enum_RefP,
+ 	'STKd' : _Enum_STKd,
+ 	'SrcT' : _Enum_SrcT,
+ 	'TmpB' : _Enum_TmpB,
+ 	'TxtF' : _Enum_TxtF,
+ 	'savo' : _Enum_savo,
  }

Index: Standard_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Standard_Suite.py	23 Mar 2003 22:07:27 -0000	1.2
--- Standard_Suite.py	28 Mar 2003 23:37:55 -0000	1.3
***************
*** 180,221 ****
  	which = 'inte'
  	want = 'Inte'
- #        element 'docu' as ['indx', 'name', 'rang']
  #        element 'cwin' as ['indx', 'name', 'rang']
  
  class character(aetools.ComponentItem):
  	"""character - a character """
  	want = 'cha '
- class offset(aetools.NProperty):
- 	"""offset - offset of a text object from the beginning of the document (first char has offset 1) """
- 	which = 'pOff'
- 	want = 'long'
  class length(aetools.NProperty):
  	"""length - length in characters of this object """
  	which = 'pLen'
  	want = 'long'
  
  class document(aetools.ComponentItem):
  	"""document - a document """
  	want = 'docu'
! class name(aetools.NProperty):
! 	"""name - the title of the document """
! 	which = 'pnam'
! 	want = 'itxt'
! class kind(aetools.NProperty):
! 	"""kind - the kind of document """
! 	which = 'DKND'
! 	want = 'DKND'
  class index(aetools.NProperty):
  	"""index - the number of the document """
  	which = 'pidx'
  	want = 'long'
  class location(aetools.NProperty):
  	"""location - the file of the document """
  	which = 'FILE'
  	want = 'fss '
! class file_permissions(aetools.NProperty):
! 	"""file permissions - the file permissions for the document """
! 	which = 'PERM'
! 	want = 'PERM'
  class window(aetools.NProperty):
  	"""window - the window of the document. """
--- 180,221 ----
  	which = 'inte'
  	want = 'Inte'
  #        element 'cwin' as ['indx', 'name', 'rang']
+ #        element 'docu' as ['indx', 'name', 'rang']
  
  class character(aetools.ComponentItem):
  	"""character - a character """
  	want = 'cha '
  class length(aetools.NProperty):
  	"""length - length in characters of this object """
  	which = 'pLen'
  	want = 'long'
+ class offset(aetools.NProperty):
+ 	"""offset - offset of a text object from the beginning of the document (first char has offset 1) """
+ 	which = 'pOff'
+ 	want = 'long'
  
  class document(aetools.ComponentItem):
  	"""document - a document """
  	want = 'docu'
! class file_permissions(aetools.NProperty):
! 	"""file permissions - the file permissions for the document """
! 	which = 'PERM'
! 	want = 'PERM'
  class index(aetools.NProperty):
  	"""index - the number of the document """
  	which = 'pidx'
  	want = 'long'
+ class kind(aetools.NProperty):
+ 	"""kind - the kind of document """
+ 	which = 'DKND'
+ 	want = 'DKND'
  class location(aetools.NProperty):
  	"""location - the file of the document """
  	which = 'FILE'
  	want = 'fss '
! class name(aetools.NProperty):
! 	"""name - the title of the document """
! 	which = 'pnam'
! 	want = 'itxt'
  class window(aetools.NProperty):
  	"""window - the window of the document. """
***************
*** 296,301 ****
  character._superclassnames = []
  character._privpropdict = {
- 	'offset' : offset,
  	'length' : length,
  }
  character._privelemdict = {
--- 296,301 ----
  character._superclassnames = []
  character._privpropdict = {
  	'length' : length,
+ 	'offset' : offset,
  }
  character._privelemdict = {
***************
*** 303,311 ****
  document._superclassnames = []
  document._privpropdict = {
! 	'name' : name,
! 	'kind' : kind,
  	'index' : index,
  	'location' : location,
! 	'file_permissions' : file_permissions,
  	'window' : window,
  }
--- 303,311 ----
  document._superclassnames = []
  document._privpropdict = {
! 	'file_permissions' : file_permissions,
  	'index' : index,
+ 	'kind' : kind,
  	'location' : location,
! 	'name' : name,
  	'window' : window,
  }
***************
*** 327,332 ****
  line._privpropdict = {
  	'index' : index,
- 	'offset' : offset,
  	'length' : length,
  }
  line._privelemdict = {
--- 327,332 ----
  line._privpropdict = {
  	'index' : index,
  	'length' : length,
+ 	'offset' : offset,
  }
  line._privelemdict = {
***************
*** 357,364 ****
  window._superclassnames = []
  window._privpropdict = {
- 	'name' : name,
- 	'index' : index,
  	'bounds' : bounds,
  	'document' : document,
  	'position' : position,
  	'visible' : visible,
--- 357,364 ----
  window._superclassnames = []
  window._privpropdict = {
  	'bounds' : bounds,
  	'document' : document,
+ 	'index' : index,
+ 	'name' : name,
  	'position' : position,
  	'visible' : visible,
***************
*** 372,402 ****
  #
  _classdeclarations = {
  	'cha ' : character,
! 	'ctxt' : text,
! 	'cwin' : window,
! 	'file' : file,
  	'clin' : line,
  	'csel' : selection_2d_object,
! 	'capp' : application,
! 	'cins' : insertion_point,
  	'docu' : document,
  }
  
  _propdeclarations = {
- 	'inte' : user_interaction,
- 	'pvis' : visible,
  	'DKND' : kind,
! 	'pbnd' : bounds,
  	'PERM' : file_permissions,
  	'docu' : document,
! 	'pidx' : index,
  	'pOff' : offset,
! 	'cwin' : window,
! 	'FILE' : location,
  	'pnam' : name,
- 	'pLen' : length,
  	'ppos' : position,
  	'pzum' : zoomed,
- 	'pcnt' : contents,
  }
  
--- 372,402 ----
  #
  _classdeclarations = {
+ 	'capp' : application,
  	'cha ' : character,
! 	'cins' : insertion_point,
  	'clin' : line,
  	'csel' : selection_2d_object,
! 	'ctxt' : text,
! 	'cwin' : window,
  	'docu' : document,
+ 	'file' : file,
  }
  
  _propdeclarations = {
  	'DKND' : kind,
! 	'FILE' : location,
  	'PERM' : file_permissions,
+ 	'cwin' : window,
  	'docu' : document,
! 	'inte' : user_interaction,
! 	'pLen' : length,
  	'pOff' : offset,
! 	'pbnd' : bounds,
! 	'pcnt' : contents,
! 	'pidx' : index,
  	'pnam' : name,
  	'ppos' : position,
+ 	'pvis' : visible,
  	'pzum' : zoomed,
  }
  

Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/CodeWarrior/__init__.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** __init__.py	28 Mar 2003 22:07:17 -0000	1.3
--- __init__.py	28 Mar 2003 23:37:55 -0000	1.4
***************
*** 49,52 ****
--- 49,78 ----
  # Set property and element dictionaries now that all classes have been defined
  #
+ getbaseclasses(character)
+ getbaseclasses(text)
+ getbaseclasses(window)
+ getbaseclasses(file)
+ getbaseclasses(line)
+ getbaseclasses(selection_2d_object)
+ getbaseclasses(application)
+ getbaseclasses(insertion_point)
+ getbaseclasses(document)
+ getbaseclasses(single_class_browser)
+ getbaseclasses(project_document)
+ getbaseclasses(symbol_browser)
+ getbaseclasses(editor_document)
+ getbaseclasses(file_compare_document)
+ getbaseclasses(class_browser)
+ getbaseclasses(subtarget)
+ getbaseclasses(message_document)
+ getbaseclasses(project_inspector)
+ getbaseclasses(text_document)
+ getbaseclasses(catalog_document)
+ getbaseclasses(class_hierarchy)
+ getbaseclasses(target)
+ getbaseclasses(build_progress_document)
+ getbaseclasses(target_file)
+ getbaseclasses(ToolServer_worksheet)
+ getbaseclasses(single_class_hierarchy)
  getbaseclasses(File_Mapping)
  getbaseclasses(browser_catalog)
***************
*** 85,114 ****
  getbaseclasses(Debugger_Display)
  getbaseclasses(class_)
- getbaseclasses(character)
- getbaseclasses(text)
- getbaseclasses(window)
- getbaseclasses(file)
- getbaseclasses(line)
- getbaseclasses(selection_2d_object)
- getbaseclasses(application)
- getbaseclasses(insertion_point)
- getbaseclasses(document)
- getbaseclasses(single_class_browser)
- getbaseclasses(project_document)
- getbaseclasses(symbol_browser)
- getbaseclasses(editor_document)
- getbaseclasses(file_compare_document)
- getbaseclasses(class_browser)
- getbaseclasses(subtarget)
- getbaseclasses(message_document)
- getbaseclasses(project_inspector)
- getbaseclasses(text_document)
- getbaseclasses(catalog_document)
- getbaseclasses(class_hierarchy)
- getbaseclasses(target)
- getbaseclasses(build_progress_document)
- getbaseclasses(target_file)
- getbaseclasses(ToolServer_worksheet)
- getbaseclasses(single_class_hierarchy)
  
  #
--- 111,114 ----
***************
*** 116,119 ****
--- 116,145 ----
  #
  _classdeclarations = {
+ 	'cha ' : character,
+ 	'ctxt' : text,
+ 	'cwin' : window,
+ 	'file' : file,
+ 	'clin' : line,
+ 	'csel' : selection_2d_object,
+ 	'capp' : application,
+ 	'cins' : insertion_point,
+ 	'docu' : document,
+ 	'1BRW' : single_class_browser,
+ 	'PRJD' : project_document,
+ 	'SYMB' : symbol_browser,
+ 	'EDIT' : editor_document,
+ 	'COMP' : file_compare_document,
+ 	'BROW' : class_browser,
+ 	'SBTG' : subtarget,
+ 	'MSSG' : message_document,
+ 	'INSP' : project_inspector,
+ 	'TXTD' : text_document,
+ 	'CTLG' : catalog_document,
+ 	'HIER' : class_hierarchy,
+ 	'TRGT' : target,
+ 	'PRGS' : build_progress_document,
+ 	'SRCF' : target_file,
+ 	'TOOL' : ToolServer_worksheet,
+ 	'1HIR' : single_class_hierarchy,
  	'FMap' : File_Mapping,
  	'Cata' : browser_catalog,
***************
*** 152,181 ****
  	'DbDS' : Debugger_Display,
  	'Clas' : class_,
- 	'cha ' : character,
- 	'ctxt' : text,
- 	'cwin' : window,
- 	'file' : file,
- 	'clin' : line,
- 	'csel' : selection_2d_object,
- 	'capp' : application,
- 	'cins' : insertion_point,
- 	'docu' : document,
- 	'1BRW' : single_class_browser,
- 	'PRJD' : project_document,
- 	'SYMB' : symbol_browser,
- 	'EDIT' : editor_document,
- 	'COMP' : file_compare_document,
- 	'BROW' : class_browser,
- 	'SBTG' : subtarget,
- 	'MSSG' : message_document,
- 	'INSP' : project_inspector,
- 	'TXTD' : text_document,
- 	'CTLG' : catalog_document,
- 	'HIER' : class_hierarchy,
- 	'TRGT' : target,
- 	'PRGS' : build_progress_document,
- 	'SRCF' : target_file,
- 	'TOOL' : ToolServer_worksheet,
- 	'1HIR' : single_class_hierarchy,
  }
  
--- 178,181 ----