[Python-checkins] python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites AppleScript_Suite.py,1.4,1.5 Macintosh_Connectivity_Clas.py,1.4,1.5 QuickDraw_Graphics_Suite.py,1.4,1.5 QuickDraw_Graphics_Suppleme.py,1.3,1.4 Standard_Suite.py,1.4,1.5 Table_Suite.py,1.3,1.4 Text_Suite.py,1.3,1.4 Type_Names_Suite.py,1.4,1.5

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
2003年3月30日 14:42:24 -0800


Update of /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites
In directory sc8-pr-cvs1:/tmp/cvs-serv17412/StdSuites
Modified Files:
	AppleScript_Suite.py Macintosh_Connectivity_Clas.py 
	QuickDraw_Graphics_Suite.py QuickDraw_Graphics_Suppleme.py 
	Standard_Suite.py Table_Suite.py Text_Suite.py 
	Type_Names_Suite.py 
Log Message:
Regenerated again, now clases are sorted by code, and with synonyms after
the primary name.
Index: AppleScript_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** AppleScript_Suite.py	28 Mar 2003 23:37:57 -0000	1.4
--- AppleScript_Suite.py	30 Mar 2003 22:41:49 -0000	1.5
***************
*** 741,867 ****
 
 
! class empty_ae_name_(aetools.ComponentItem):
! 	""" - the undefined value """
! 	want = 'undf'
! 
! class April(aetools.ComponentItem):
! 	"""April - the month of April """
! 	want = 'apr '
! 
[...2249 lines suppressed...]
! 	'snd ' : sounds,
 	'sqft' : square_feet,
 	'sqkm' : square_kilometers,
***************
*** 2131,2137 ****
 	'vers' : version,
 	'wed ' : Wednesday,
! 	'wkdy' : weekday,
 	'yard' : yards,
! 	'zone' : zone,
 }
 
--- 2144,2150 ----
 	'vers' : version,
 	'wed ' : Wednesday,
! 	'wkdy' : weekdays,
 	'yard' : yards,
! 	'zone' : zones,
 }
 
Index: Macintosh_Connectivity_Clas.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/Macintosh_Connectivity_Clas.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Macintosh_Connectivity_Clas.py	28 Mar 2003 23:37:57 -0000	1.4
--- Macintosh_Connectivity_Clas.py	30 Mar 2003 22:41:50 -0000	1.5
***************
*** 30,33 ****
--- 30,51 ----
 ADB_addresses = ADB_address
 
+ class address_specification(aetools.ComponentItem):
+ 	"""address specification - Unique designation of a device or service connected to this computer """
+ 	want = 'cadr'
+ class conduit(aetools.NProperty):
+ 	"""conduit - How the addressee is physically connected """
+ 	which = 'pcon'
+ 	want = 'econ'
+ class properties(aetools.NProperty):
+ 	"""properties - property that allows getting and setting of multiple properties """
+ 	which = 'pALL'
+ 	want = 'reco'
+ class protocol(aetools.NProperty):
+ 	"""protocol - How to talk to this addressee """
+ 	which = 'pprt'
+ 	want = 'epro'
+ 
+ address_specifications = address_specification
+ 
 class AppleTalk_address(aetools.ComponentItem):
 	"""AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """
***************
*** 48,51 ****
--- 66,89 ----
 AppleTalk_addresses = AppleTalk_address
 
+ class bus_slot(aetools.ComponentItem):
+ 	"""bus slot - Addresses a PC, PCI, or NuBus card """
+ 	want = 'cbus'
+ 
+ bus_slots = bus_slot
+ 
+ class device_specification(aetools.ComponentItem):
+ 	"""device specification - A device connected to a computer """
+ 	want = 'cdev'
+ class device_address(aetools.NProperty):
+ 	"""device address - the address of the device """
+ 	which = 'pdva'
+ 	want = 'cadr'
+ class device_type(aetools.NProperty):
+ 	"""device type - the kind of device """
+ 	which = 'pdvt'
+ 	want = 'edvt'
+ 
+ device_specifications = device_specification
+ 
 class Ethernet_address(aetools.ComponentItem):
 	"""Ethernet address - Addresses a device by its Ethernet address """
***************
*** 112,120 ****
 Token_Ring_addresses = Token_Ring_address
 
! class USB_Addresses(aetools.ComponentItem):
! 	"""USB Addresses - """
 	want = 'cusb'
- 
- USB_address = USB_Addresses
 class name(aetools.NProperty):
 	"""name - the USB device name """
--- 150,156 ----
 Token_Ring_addresses = Token_Ring_address
 
! class USB_address(aetools.ComponentItem):
! 	"""USB address - Addresses a device on the Universal Serial Bus """
 	want = 'cusb'
 class name(aetools.NProperty):
 	"""name - the USB device name """
***************
*** 122,162 ****
 	want = 'TEXT'
 
! class address_specification(aetools.ComponentItem):
! 	"""address specification - Unique designation of a device or service connected to this computer """
! 	want = 'cadr'
! class conduit(aetools.NProperty):
! 	"""conduit - How the addressee is physically connected """
! 	which = 'pcon'
! 	want = 'econ'
! class properties(aetools.NProperty):
! 	"""properties - property that allows getting and setting of multiple properties """
! 	which = 'pALL'
! 	want = 'reco'
! class protocol(aetools.NProperty):
! 	"""protocol - How to talk to this addressee """
! 	which = 'pprt'
! 	want = 'epro'
! 
! address_specifications = address_specification
! 
! class bus_slot(aetools.ComponentItem):
! 	"""bus slot - Addresses a PC, PCI, or NuBus card """
! 	want = 'cbus'
! 
! bus_slots = bus_slot
! 
! class device_specification(aetools.ComponentItem):
! 	"""device specification - A device connected to a computer """
! 	want = 'cdev'
! class device_address(aetools.NProperty):
! 	"""device address - the address of the device """
! 	which = 'pdva'
! 	want = 'cadr'
! class device_type(aetools.NProperty):
! 	"""device type - the kind of device """
! 	which = 'pdvt'
! 	want = 'edvt'
! 
! device_specifications = device_specification
 ADB_address._superclassnames = ['address_specification']
 ADB_address._privpropdict = {
--- 158,162 ----
 	want = 'TEXT'
 
! USB_Addresses = USB_address
 ADB_address._superclassnames = ['address_specification']
 ADB_address._privpropdict = {
***************
*** 166,169 ****
--- 166,177 ----
 ADB_address._privelemdict = {
 }
+ address_specification._superclassnames = []
+ address_specification._privpropdict = {
+ 	'conduit' : conduit,
+ 	'properties' : properties,
+ 	'protocol' : protocol,
+ }
+ address_specification._privelemdict = {
+ }
 AppleTalk_address._superclassnames = ['address_specification']
 AppleTalk_address._privpropdict = {
***************
*** 175,178 ****
--- 183,201 ----
 AppleTalk_address._privelemdict = {
 }
+ bus_slot._superclassnames = ['address_specification']
+ bus_slot._privpropdict = {
+ 	'ID' : ID,
+ 	'_3c_inheritance_3e_' : _3c_inheritance_3e_,
+ }
+ bus_slot._privelemdict = {
+ }
+ device_specification._superclassnames = []
+ device_specification._privpropdict = {
+ 	'device_address' : device_address,
+ 	'device_type' : device_type,
+ 	'properties' : properties,
+ }
+ device_specification._privelemdict = {
+ }
 Ethernet_address._superclassnames = ['address_specification']
 Ethernet_address._privpropdict = {
***************
*** 223,253 ****
 Token_Ring_address._privelemdict = {
 }
! USB_Addresses._superclassnames = []
! USB_Addresses._privpropdict = {
! }
! USB_Addresses._privelemdict = {
! }
! address_specification._superclassnames = []
! address_specification._privpropdict = {
! 	'conduit' : conduit,
! 	'properties' : properties,
! 	'protocol' : protocol,
! }
! address_specification._privelemdict = {
! }
! bus_slot._superclassnames = ['address_specification']
! bus_slot._privpropdict = {
! 	'ID' : ID,
 	'_3c_inheritance_3e_' : _3c_inheritance_3e_,
 }
! bus_slot._privelemdict = {
! }
! device_specification._superclassnames = []
! device_specification._privpropdict = {
! 	'device_address' : device_address,
! 	'device_type' : device_type,
! 	'properties' : properties,
! }
! device_specification._privelemdict = {
 }
 _Enum_econ = {
--- 246,255 ----
 Token_Ring_address._privelemdict = {
 }
! USB_address._superclassnames = ['address_specification']
! USB_address._privpropdict = {
 	'_3c_inheritance_3e_' : _3c_inheritance_3e_,
+ 	'name' : name,
 }
! USB_address._privelemdict = {
 }
 _Enum_econ = {
***************
*** 338,342 ****
 	'cscs' : SCSI_address,
 	'ctok' : Token_Ring_address,
! 	'cusb' : USB_Addresses,
 }
 
--- 340,344 ----
 	'cscs' : SCSI_address,
 	'ctok' : Token_Ring_address,
! 	'cusb' : USB_address,
 }
 
Index: QuickDraw_Graphics_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/QuickDraw_Graphics_Suite.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** QuickDraw_Graphics_Suite.py	28 Mar 2003 23:37:58 -0000	1.4
--- QuickDraw_Graphics_Suite.py	30 Mar 2003 22:41:50 -0000	1.5
***************
*** 120,162 ****
 drawing_areas = drawing_area
 
! class graphic_group(aetools.ComponentItem):
! 	"""graphic group - Group of graphics """
! 	want = 'cpic'
! 
! graphic_groups = graphic_group
! 
! class graphic_line(aetools.ComponentItem):
! 	"""graphic line - A graphic line """
! 	want = 'glin'
! class arrow_style(aetools.NProperty):
! 	"""arrow style - the arrow style """
! 	which = 'arro'
! 	want = 'arro'
! class dash_style(aetools.NProperty):
! 	"""dash style - the dash style """
! 	which = 'pdst'
! 	want = 'tdas'
! class end_point(aetools.NProperty):
! 	"""end point - the ending point of the line """
! 	which = 'pend'
! 	want = 'QDpt'
! class start_point(aetools.NProperty):
! 	"""start point - the starting point of the line """
! 	which = 'pstp'
! 	want = 'QDpt'
! 
! graphic_lines = graphic_line
! 
! class graphic_object(aetools.ComponentItem):
! 	"""graphic object - A graphic object """
 	want = 'cgob'
 
! graphic_objects = graphic_object
 
! class graphic_shape(aetools.ComponentItem):
! 	"""graphic shape - A graphic shape """
 	want = 'cgsh'
 
! graphic_shapes = graphic_shape
 
 class graphic_text(aetools.ComponentItem):
--- 120,134 ----
 drawing_areas = drawing_area
 
! class graphic_objects(aetools.ComponentItem):
! 	"""graphic objects - """
 	want = 'cgob'
 
! graphic_object = graphic_objects
 
! class graphic_shapes(aetools.ComponentItem):
! 	"""graphic shapes - """
 	want = 'cgsh'
 
! graphic_shape = graphic_shapes
 
 class graphic_text(aetools.ComponentItem):
***************
*** 180,200 ****
 	want = 'tsty'
 
! class oval(aetools.ComponentItem):
! 	"""oval - An oval """
 	want = 'covl'
 
! ovals = oval
! 
! class pixel(aetools.ComponentItem):
! 	"""pixel - A pixel """
! 	want = 'cpxl'
! 
! class pixel_map(aetools.ComponentItem):
! 	"""pixel map - A pixel map """
! 	want = 'cpix'
! 
! pixel_maps = pixel_map
! 
! pixels = pixel
 
 class polygon(aetools.ComponentItem):
--- 152,160 ----
 	want = 'tsty'
 
! class ovals(aetools.ComponentItem):
! 	"""ovals - """
 	want = 'covl'
 
! oval = ovals
 
 class polygon(aetools.ComponentItem):
***************
*** 208,216 ****
 polygons = polygon
 
! class rectangle(aetools.ComponentItem):
! 	"""rectangle - A rectangle """
 	want = 'crec'
 
! rectangles = rectangle
 
 class rounded_rectangle(aetools.ComponentItem):
--- 168,194 ----
 polygons = polygon
 
! class graphic_groups(aetools.ComponentItem):
! 	"""graphic groups - """
! 	want = 'cpic'
! 
! graphic_group = graphic_groups
! 
! class pixel_maps(aetools.ComponentItem):
! 	"""pixel maps - """
! 	want = 'cpix'
! 
! pixel_map = pixel_maps
! 
! class pixel(aetools.ComponentItem):
! 	"""pixel - A pixel """
! 	want = 'cpxl'
! 
! pixels = pixel
! 
! class rectangles(aetools.ComponentItem):
! 	"""rectangles - """
 	want = 'crec'
 
! rectangle = rectangles
 
 class rounded_rectangle(aetools.ComponentItem):
***************
*** 227,230 ****
--- 205,230 ----
 
 rounded_rectangles = rounded_rectangle
+ 
+ class graphic_line(aetools.ComponentItem):
+ 	"""graphic line - A graphic line """
+ 	want = 'glin'
+ class arrow_style(aetools.NProperty):
+ 	"""arrow style - the arrow style """
+ 	which = 'arro'
+ 	want = 'arro'
+ class dash_style(aetools.NProperty):
+ 	"""dash style - the dash style """
+ 	which = 'pdst'
+ 	want = 'tdas'
+ class end_point(aetools.NProperty):
+ 	"""end point - the ending point of the line """
+ 	which = 'pend'
+ 	want = 'QDpt'
+ class start_point(aetools.NProperty):
+ 	"""start point - the starting point of the line """
+ 	which = 'pstp'
+ 	want = 'QDpt'
+ 
+ graphic_lines = graphic_line
 arc._superclassnames = []
 arc._privpropdict = {
***************
*** 260,286 ****
 drawing_area._privelemdict = {
 }
! graphic_group._superclassnames = []
! graphic_group._privpropdict = {
! }
! graphic_group._privelemdict = {
! }
! graphic_line._superclassnames = []
! graphic_line._privpropdict = {
! 	'arrow_style' : arrow_style,
! 	'dash_style' : dash_style,
! 	'end_point' : end_point,
! 	'start_point' : start_point,
! }
! graphic_line._privelemdict = {
! }
! graphic_object._superclassnames = []
! graphic_object._privpropdict = {
 }
! graphic_object._privelemdict = {
 }
! graphic_shape._superclassnames = []
! graphic_shape._privpropdict = {
 }
! graphic_shape._privelemdict = {
 }
 graphic_text._superclassnames = []
--- 260,272 ----
 drawing_area._privelemdict = {
 }
! graphic_objects._superclassnames = []
! graphic_objects._privpropdict = {
 }
! graphic_objects._privelemdict = {
 }
! graphic_shapes._superclassnames = []
! graphic_shapes._privpropdict = {
 }
! graphic_shapes._privelemdict = {
 }
 graphic_text._superclassnames = []
***************
*** 293,311 ****
 graphic_text._privelemdict = {
 }
! oval._superclassnames = []
! oval._privpropdict = {
! }
! oval._privelemdict = {
! }
! pixel._superclassnames = []
! pixel._privpropdict = {
! 	'color' : color,
! }
! pixel._privelemdict = {
! }
! pixel_map._superclassnames = []
! pixel_map._privpropdict = {
 }
! pixel_map._privelemdict = {
 }
 polygon._superclassnames = []
--- 279,286 ----
 graphic_text._privelemdict = {
 }
! ovals._superclassnames = []
! ovals._privpropdict = {
 }
! ovals._privelemdict = {
 }
 polygon._superclassnames = []
***************
*** 315,322 ****
 polygon._privelemdict = {
 }
! rectangle._superclassnames = []
! rectangle._privpropdict = {
 }
! rectangle._privelemdict = {
 }
 rounded_rectangle._superclassnames = []
--- 290,313 ----
 polygon._privelemdict = {
 }
! graphic_groups._superclassnames = []
! graphic_groups._privpropdict = {
 }
! graphic_groups._privelemdict = {
! }
! pixel_maps._superclassnames = []
! pixel_maps._privpropdict = {
! }
! pixel_maps._privelemdict = {
! }
! pixel._superclassnames = []
! pixel._privpropdict = {
! 	'color' : color,
! }
! pixel._privelemdict = {
! }
! rectangles._superclassnames = []
! rectangles._privpropdict = {
! }
! rectangles._privelemdict = {
 }
 rounded_rectangle._superclassnames = []
***************
*** 327,330 ****
--- 318,330 ----
 rounded_rectangle._privelemdict = {
 }
+ graphic_line._superclassnames = []
+ graphic_line._privpropdict = {
+ 	'arrow_style' : arrow_style,
+ 	'dash_style' : dash_style,
+ 	'end_point' : end_point,
+ 	'start_point' : start_point,
+ }
+ graphic_line._privelemdict = {
+ }
 _Enum_arro = {
 	'no_arrow' : 'arno',	# No arrow on line
***************
*** 359,371 ****
 	'carc' : arc,
 	'cdrw' : drawing_area,
! 	'cgob' : graphic_object,
! 	'cgsh' : graphic_shape,
 	'cgtx' : graphic_text,
! 	'covl' : oval,
 	'cpgn' : polygon,
! 	'cpic' : graphic_group,
! 	'cpix' : pixel_map,
 	'cpxl' : pixel,
! 	'crec' : rectangle,
 	'crrc' : rounded_rectangle,
 	'glin' : graphic_line,
--- 359,371 ----
 	'carc' : arc,
 	'cdrw' : drawing_area,
! 	'cgob' : graphic_objects,
! 	'cgsh' : graphic_shapes,
 	'cgtx' : graphic_text,
! 	'covl' : ovals,
 	'cpgn' : polygon,
! 	'cpic' : graphic_groups,
! 	'cpix' : pixel_maps,
 	'cpxl' : pixel,
! 	'crec' : rectangles,
 	'crrc' : rounded_rectangle,
 	'glin' : graphic_line,
Index: QuickDraw_Graphics_Suppleme.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/QuickDraw_Graphics_Suppleme.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** QuickDraw_Graphics_Suppleme.py	28 Mar 2003 23:37:59 -0000	1.3
--- QuickDraw_Graphics_Suppleme.py	30 Mar 2003 22:41:50 -0000	1.4
***************
*** 34,42 ****
 drawing_areas = drawing_area
 
! class graphic_group(aetools.ComponentItem):
! 	"""graphic group - Group of graphics """
 	want = 'cpic'
 
! graphic_groups = graphic_group
 drawing_area._superclassnames = []
 drawing_area._privpropdict = {
--- 34,42 ----
 drawing_areas = drawing_area
 
! class graphic_groups(aetools.ComponentItem):
! 	"""graphic groups - """
 	want = 'cpic'
 
! graphic_group = graphic_groups
 drawing_area._superclassnames = []
 drawing_area._privpropdict = {
***************
*** 47,54 ****
 drawing_area._privelemdict = {
 }
! graphic_group._superclassnames = []
! graphic_group._privpropdict = {
 }
! graphic_group._privelemdict = {
 }
 
--- 47,54 ----
 drawing_area._privelemdict = {
 }
! graphic_groups._superclassnames = []
! graphic_groups._privpropdict = {
 }
! graphic_groups._privelemdict = {
 }
 
***************
*** 58,62 ****
 _classdeclarations = {
 	'cdrw' : drawing_area,
! 	'cpic' : graphic_group,
 }
 
--- 58,62 ----
 _classdeclarations = {
 	'cdrw' : drawing_area,
! 	'cpic' : graphic_groups,
 }
 
Index: Standard_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/Standard_Suite.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Standard_Suite.py	28 Mar 2003 23:37:59 -0000	1.4
--- Standard_Suite.py	30 Mar 2003 22:41:50 -0000	1.5
***************
*** 449,457 ****
 
 
! class alias(aetools.ComponentItem):
! 	"""alias - a file on a disk or server. The file must exist when you check the syntax of your script. """
 	want = 'alis'
 
! aliases = alias
 
 class application(aetools.ComponentItem):
--- 449,457 ----
 
 
! class aliases(aetools.ComponentItem):
! 	"""aliases - """
 	want = 'alis'
 
! alias = aliases
 
 class application(aetools.ComponentItem):
***************
*** 481,509 ****
 applications = application
 
! class document(aetools.ComponentItem):
! 	"""document - A document of a scriptable application """
! 	want = 'docu'
! class modified(aetools.NProperty):
! 	"""modified - Has the document been modified since the last save? """
! 	which = 'imod'
! 	want = 'bool'
! 
! documents = document
! 
! class file(aetools.ComponentItem):
! 	"""file - a file on a disk or server """
! 	want = 'file'
! class stationery(aetools.NProperty):
! 	"""stationery - Is the file a stationery file? """
! 	which = 'pspd'
! 	want = 'bool'
! 
! files = file
! 
! class insertion_point(aetools.ComponentItem):
! 	"""insertion point - An insertion location between two objects """
 	want = 'cins'
 
! insertion_points = insertion_point
 
 class selection_2d_object(aetools.ComponentItem):
--- 481,489 ----
 applications = application
 
! class insertion_points(aetools.ComponentItem):
! 	"""insertion points - """
 	want = 'cins'
 
! insertion_point = insertion_points
 
 class selection_2d_object(aetools.ComponentItem):
***************
*** 560,567 ****
 
 windows = window
! alias._superclassnames = []
! alias._privpropdict = {
 }
! alias._privelemdict = {
 }
 application._superclassnames = []
--- 540,567 ----
 
 windows = window
! 
! class document(aetools.ComponentItem):
! 	"""document - A document of a scriptable application """
! 	want = 'docu'
! class modified(aetools.NProperty):
! 	"""modified - Has the document been modified since the last save? """
! 	which = 'imod'
! 	want = 'bool'
! 
! documents = document
! 
! class file(aetools.ComponentItem):
! 	"""file - a file on a disk or server """
! 	want = 'file'
! class stationery(aetools.NProperty):
! 	"""stationery - Is the file a stationery file? """
! 	which = 'pspd'
! 	want = 'bool'
! 
! files = file
! aliases._superclassnames = []
! aliases._privpropdict = {
 }
! aliases._privelemdict = {
 }
 application._superclassnames = []
***************
*** 575,594 ****
 application._privelemdict = {
 }
! document._superclassnames = []
! document._privpropdict = {
! 	'modified' : modified,
! }
! document._privelemdict = {
! }
! file._superclassnames = []
! file._privpropdict = {
! 	'stationery' : stationery,
! }
! file._privelemdict = {
! }
! insertion_point._superclassnames = []
! insertion_point._privpropdict = {
 }
! insertion_point._privelemdict = {
 }
 selection_2d_object._superclassnames = []
--- 575,582 ----
 application._privelemdict = {
 }
! insertion_points._superclassnames = []
! insertion_points._privpropdict = {
 }
! insertion_points._privelemdict = {
 }
 selection_2d_object._superclassnames = []
***************
*** 613,616 ****
--- 601,616 ----
 window._privelemdict = {
 }
+ document._superclassnames = []
+ document._privpropdict = {
+ 	'modified' : modified,
+ }
+ document._privelemdict = {
+ }
+ file._superclassnames = []
+ file._privpropdict = {
+ 	'stationery' : stationery,
+ }
+ file._privelemdict = {
+ }
 class _3c_(aetools.NComparison):
 	"""< - Less than """
***************
*** 664,670 ****
 #
 _classdeclarations = {
! 	'alis' : alias,
 	'capp' : application,
! 	'cins' : insertion_point,
 	'csel' : selection_2d_object,
 	'cwin' : window,
--- 664,670 ----
 #
 _classdeclarations = {
! 	'alis' : aliases,
 	'capp' : application,
! 	'cins' : insertion_points,
 	'csel' : selection_2d_object,
 	'cwin' : window,
Index: Table_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/Table_Suite.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Table_Suite.py	28 Mar 2003 23:38:00 -0000	1.3
--- Table_Suite.py	30 Mar 2003 22:41:50 -0000	1.4
***************
*** 40,54 ****
 columns = column
 
! class row(aetools.ComponentItem):
! 	"""row - A row """
 	want = 'crow'
 
! rows = row
 
! class table(aetools.ComponentItem):
! 	"""table - A table """
 	want = 'ctbl'
 
! tables = table
 cell._superclassnames = []
 cell._privpropdict = {
--- 40,54 ----
 columns = column
 
! class rows(aetools.ComponentItem):
! 	"""rows - """
 	want = 'crow'
 
! row = rows
 
! class tables(aetools.ComponentItem):
! 	"""tables - """
 	want = 'ctbl'
 
! table = tables
 cell._superclassnames = []
 cell._privpropdict = {
***************
*** 64,76 ****
 column._privelemdict = {
 }
! row._superclassnames = []
! row._privpropdict = {
 }
! row._privelemdict = {
 }
! table._superclassnames = []
! table._privpropdict = {
 }
! table._privelemdict = {
 }
 _Enum_prtn = {
--- 64,76 ----
 column._privelemdict = {
 }
! rows._superclassnames = []
! rows._privpropdict = {
 }
! rows._privelemdict = {
 }
! tables._superclassnames = []
! tables._privpropdict = {
 }
! tables._privelemdict = {
 }
 _Enum_prtn = {
***************
*** 87,92 ****
 	'ccel' : cell,
 	'ccol' : column,
! 	'crow' : row,
! 	'ctbl' : table,
 }
 
--- 87,92 ----
 	'ccel' : cell,
 	'ccol' : column,
! 	'crow' : rows,
! 	'ctbl' : tables,
 }
 
Index: Text_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/Text_Suite.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Text_Suite.py	28 Mar 2003 23:38:00 -0000	1.3
--- Text_Suite.py	30 Mar 2003 22:41:50 -0000	1.4
***************
*** 16,26 ****
 
 
! class character(aetools.ComponentItem):
! 	"""character - A character """
! 	want = 'cha '
 class _3c_inheritance_3e_(aetools.NProperty):
 	"""<inheritance> - inherits some of its properties from this class """
 	which = 'c@#^'
 	want = 'ctxt'
 
 class line(aetools.ComponentItem):
--- 16,36 ----
 
 
! class text_flow(aetools.ComponentItem):
! 	"""text flow - A contiguous block of text. Page layout applications call this a \xd4story.\xd5 """
! 	want = 'cflo'
 class _3c_inheritance_3e_(aetools.NProperty):
 	"""<inheritance> - inherits some of its properties from this class """
 	which = 'c@#^'
 	want = 'ctxt'
+ class name(aetools.NProperty):
+ 	"""name - the name """
+ 	which = 'pnam'
+ 	want = 'itxt'
+ 
+ text_flows = text_flow
+ 
+ class character(aetools.ComponentItem):
+ 	"""character - A character """
+ 	want = 'cha '
 
 class line(aetools.ComponentItem):
***************
*** 73,85 ****
 # element 'cwor' as ['indx']
 
! class text_flow(aetools.ComponentItem):
! 	"""text flow - A contiguous block of text. Page layout applications call this a \xd4story.\xd5 """
! 	want = 'cflo'
! class name(aetools.NProperty):
! 	"""name - the name """
! 	which = 'pnam'
! 	want = 'itxt'
 
! text_flows = text_flow
 
 class text_style_info(aetools.ComponentItem):
--- 83,91 ----
 # element 'cwor' as ['indx']
 
! class word(aetools.ComponentItem):
! 	"""word - A word """
! 	want = 'cwor'
 
! words = word
 
 class text_style_info(aetools.ComponentItem):
***************
*** 96,105 ****
 
 text_style_infos = text_style_info
! 
! class word(aetools.ComponentItem):
! 	"""word - A word """
! 	want = 'cwor'
! 
! words = word
 character._superclassnames = ['text']
 character._privpropdict = {
--- 102,112 ----
 
 text_style_infos = text_style_info
! text_flow._superclassnames = ['text']
! text_flow._privpropdict = {
! 	'_3c_inheritance_3e_' : _3c_inheritance_3e_,
! 	'name' : name,
! }
! text_flow._privelemdict = {
! }
 character._superclassnames = ['text']
 character._privpropdict = {
***************
*** 137,146 ****
 	'word' : word,
 }
! text_flow._superclassnames = ['text']
! text_flow._privpropdict = {
 	'_3c_inheritance_3e_' : _3c_inheritance_3e_,
- 	'name' : name,
 }
! text_flow._privelemdict = {
 }
 text_style_info._superclassnames = []
--- 144,152 ----
 	'word' : word,
 }
! word._superclassnames = ['text']
! word._privpropdict = {
 	'_3c_inheritance_3e_' : _3c_inheritance_3e_,
 }
! word._privelemdict = {
 }
 text_style_info._superclassnames = []
***************
*** 150,159 ****
 }
 text_style_info._privelemdict = {
- }
- word._superclassnames = ['text']
- word._privpropdict = {
- 	'_3c_inheritance_3e_' : _3c_inheritance_3e_,
- }
- word._privelemdict = {
 }
 _Enum_just = {
--- 156,159 ----
Index: Type_Names_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/StdSuites/Type_Names_Suite.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Type_Names_Suite.py	28 Mar 2003 23:38:00 -0000	1.4
--- Type_Names_Suite.py	30 Mar 2003 22:41:50 -0000	1.5
***************
*** 20,30 ****
 	want = 'EPS '
 
! class RGB16_color(aetools.ComponentItem):
! 	"""RGB16 color - """
! 	want = 'tr16'
 
! class RGB96_color(aetools.ComponentItem):
! 	"""RGB96 color - """
! 	want = 'tr96'
 
 class TIFF_picture(aetools.ComponentItem):
--- 20,34 ----
 	want = 'EPS '
 
! class point(aetools.ComponentItem):
! 	"""point - point coordinates """
! 	want = 'QDpt'
 
! class string(aetools.ComponentItem):
! 	"""string - a string of characters """
! 	want = 'TEXT'
! 
! plain_text = string
! 
! plain_text = string
 
 class TIFF_picture(aetools.ComponentItem):
***************
*** 36,42 ****
 	want = 'aete'
 
! class bounding_rectangle(aetools.ComponentItem):
! 	"""bounding rectangle - bounding rectangle """
! 	want = 'qdrt'
 
 class color_table(aetools.ComponentItem):
--- 40,46 ----
 	want = 'aete'
 
! class system_dictionary(aetools.ComponentItem):
! 	"""system dictionary - """
! 	want = 'aeut'
 
 class color_table(aetools.ComponentItem):
***************
*** 44,50 ****
 	want = 'clrt'
 
! class dash_style(aetools.ComponentItem):
! 	"""dash style - """
! 	want = 'tdas'
 
 class double_integer(aetools.ComponentItem):
--- 48,58 ----
 	want = 'clrt'
 
! class menu_item(aetools.ComponentItem):
! 	"""menu item - """
! 	want = 'cmen'
! 
! class menu(aetools.ComponentItem):
! 	"""menu - """
! 	want = 'cmnu'
 
 class double_integer(aetools.ComponentItem):
***************
*** 52,55 ****
--- 60,71 ----
 	want = 'comp'
 
+ class type_element_info(aetools.ComponentItem):
+ 	"""type element info - """
+ 	want = 'elin'
+ 
+ class type_event_info(aetools.ComponentItem):
+ 	"""type event info - information about an event """
+ 	want = 'evin'
+ 
 class extended_real(aetools.ComponentItem):
 	"""extended real - """
***************
*** 68,79 ****
 	want = 'frct'
 
 class location_reference(aetools.ComponentItem):
 	"""location reference - """
 	want = 'insl'
 
- class long_fixed(aetools.ComponentItem):
- 	"""long fixed - """
- 	want = 'lfxd'
- 
 class long_fixed_point(aetools.ComponentItem):
 	"""long fixed point - """
--- 84,95 ----
 	want = 'frct'
 
+ class type_class_info(aetools.ComponentItem):
+ 	"""type class info - information about properties and elements of a class """
+ 	want = 'gcli'
+ 
 class location_reference(aetools.ComponentItem):
 	"""location reference - """
 	want = 'insl'
 
 class long_fixed_point(aetools.ComponentItem):
 	"""long fixed point - """
***************
*** 84,87 ****
--- 100,107 ----
 	want = 'lfrc'
 
+ class long_fixed(aetools.ComponentItem):
+ 	"""long fixed - """
+ 	want = 'lfxd'
+ 
 class long_point(aetools.ComponentItem):
 	"""long point - """
***************
*** 96,106 ****
 	want = 'mLoc'
 
! class menu(aetools.ComponentItem):
! 	"""menu - """
! 	want = 'cmnu'
! 
! class menu_item(aetools.ComponentItem):
! 	"""menu item - """
! 	want = 'cmen'
 
 class null(aetools.ComponentItem):
--- 116,122 ----
 	want = 'mLoc'
 
! class unsigned_integer(aetools.ComponentItem):
! 	"""unsigned integer - """
! 	want = 'magn'
 
 class null(aetools.ComponentItem):
***************
*** 108,132 ****
 	want = 'null'
 
! class pixel_map_record(aetools.ComponentItem):
! 	"""pixel map record - """
! 	want = 'tpmm'
! 
! class plain_text(aetools.ComponentItem):
! 	"""plain text - """
! 	want = 'TEXT'
! 
! plain_text = plain_text
! 
! class point(aetools.ComponentItem):
! 	"""point - point coordinates """
! 	want = 'QDpt'
 
! class rotation(aetools.ComponentItem):
! 	"""rotation - """
! 	want = 'trot'
 
! class scrap_styles(aetools.ComponentItem):
! 	"""scrap styles - """
! 	want = 'styl'
 
 class small_integer(aetools.ComponentItem):
--- 124,138 ----
 	want = 'null'
 
! class type_property_info(aetools.ComponentItem):
! 	"""type property info - """
! 	want = 'pinf'
 
! class type_parameter_info(aetools.ComponentItem):
! 	"""type parameter info - """
! 	want = 'pmin'
 
! class bounding_rectangle(aetools.ComponentItem):
! 	"""bounding rectangle - bounding rectangle """
! 	want = 'qdrt'
 
 class small_integer(aetools.ComponentItem):
***************
*** 138,146 ****
 	want = 'sing'
 
! string = plain_text
 
! class system_dictionary(aetools.ComponentItem):
! 	"""system dictionary - """
! 	want = 'aeut'
 
 class target_id(aetools.ComponentItem):
--- 144,154 ----
 	want = 'sing'
 
! class scrap_styles(aetools.ComponentItem):
! 	"""scrap styles - """
! 	want = 'styl'
 
! class type_suite_info(aetools.ComponentItem):
! 	"""type suite info - """
! 	want = 'suin'
 
 class target_id(aetools.ComponentItem):
***************
*** 148,178 ****
 	want = 'targ'
 
! class type_class_info(aetools.ComponentItem):
! 	"""type class info - information about properties and elements of a class """
! 	want = 'gcli'
! 
! class type_element_info(aetools.ComponentItem):
! 	"""type element info - """
! 	want = 'elin'
! 
! class type_event_info(aetools.ComponentItem):
! 	"""type event info - information about an event """
! 	want = 'evin'
 
! class type_parameter_info(aetools.ComponentItem):
! 	"""type parameter info - """
! 	want = 'pmin'
 
! class type_property_info(aetools.ComponentItem):
! 	"""type property info - """
! 	want = 'pinf'
 
! class type_suite_info(aetools.ComponentItem):
! 	"""type suite info - """
! 	want = 'suin'
 
! class unsigned_integer(aetools.ComponentItem):
! 	"""unsigned integer - """
! 	want = 'magn'
 
 class version(aetools.ComponentItem):
--- 156,178 ----
 	want = 'targ'
 
! class dash_style(aetools.ComponentItem):
! 	"""dash style - """
! 	want = 'tdas'
 
! class pixel_map_record(aetools.ComponentItem):
! 	"""pixel map record - """
! 	want = 'tpmm'
 
! class RGB16_color(aetools.ComponentItem):
! 	"""RGB16 color - """
! 	want = 'tr16'
 
! class RGB96_color(aetools.ComponentItem):
! 	"""RGB96 color - """
! 	want = 'tr96'
 
! class rotation(aetools.ComponentItem):
! 	"""rotation - """
! 	want = 'trot'
 
 class version(aetools.ComponentItem):
***************
*** 184,196 ****
 PostScript_picture._privelemdict = {
 }
! RGB16_color._superclassnames = []
! RGB16_color._privpropdict = {
 }
! RGB16_color._privelemdict = {
 }
! RGB96_color._superclassnames = []
! RGB96_color._privpropdict = {
 }
! RGB96_color._privelemdict = {
 }
 TIFF_picture._superclassnames = []
--- 184,196 ----
 PostScript_picture._privelemdict = {
 }
! point._superclassnames = []
! point._privpropdict = {
 }
! point._privelemdict = {
 }
! string._superclassnames = []
! string._privpropdict = {
 }
! string._privelemdict = {
 }
 TIFF_picture._superclassnames = []
***************
*** 204,211 ****
 application_dictionary._privelemdict = {
 }
! bounding_rectangle._superclassnames = []
! bounding_rectangle._privpropdict = {
 }
! bounding_rectangle._privelemdict = {
 }
 color_table._superclassnames = []
--- 204,211 ----
 application_dictionary._privelemdict = {
 }
! system_dictionary._superclassnames = []
! system_dictionary._privpropdict = {
 }
! system_dictionary._privelemdict = {
 }
 color_table._superclassnames = []
***************
*** 214,221 ****
 color_table._privelemdict = {
 }
! dash_style._superclassnames = []
! dash_style._privpropdict = {
 }
! dash_style._privelemdict = {
 }
 double_integer._superclassnames = []
--- 214,226 ----
 color_table._privelemdict = {
 }
! menu_item._superclassnames = []
! menu_item._privpropdict = {
 }
! menu_item._privelemdict = {
! }
! menu._superclassnames = []
! menu._privpropdict = {
! }
! menu._privelemdict = {
 }
 double_integer._superclassnames = []
***************
*** 224,227 ****
--- 229,242 ----
 double_integer._privelemdict = {
 }
+ type_element_info._superclassnames = []
+ type_element_info._privpropdict = {
+ }
+ type_element_info._privelemdict = {
+ }
+ type_event_info._superclassnames = []
+ type_event_info._privpropdict = {
+ }
+ type_event_info._privelemdict = {
+ }
 extended_real._superclassnames = []
 extended_real._privpropdict = {
***************
*** 244,247 ****
--- 259,267 ----
 fixed_rectangle._privelemdict = {
 }
+ type_class_info._superclassnames = []
+ type_class_info._privpropdict = {
+ }
+ type_class_info._privelemdict = {
+ }
 location_reference._superclassnames = []
 location_reference._privpropdict = {
***************
*** 249,257 ****
 location_reference._privelemdict = {
 }
- long_fixed._superclassnames = []
- long_fixed._privpropdict = {
- }
- long_fixed._privelemdict = {
- }
 long_fixed_point._superclassnames = []
 long_fixed_point._privpropdict = {
--- 269,272 ----
***************
*** 264,267 ****
--- 279,287 ----
 long_fixed_rectangle._privelemdict = {
 }
+ long_fixed._superclassnames = []
+ long_fixed._privpropdict = {
+ }
+ long_fixed._privelemdict = {
+ }
 long_point._superclassnames = []
 long_point._privpropdict = {
***************
*** 279,291 ****
 machine_location._privelemdict = {
 }
! menu._superclassnames = []
! menu._privpropdict = {
! }
! menu._privelemdict = {
! }
! menu_item._superclassnames = []
! menu_item._privpropdict = {
 }
! menu_item._privelemdict = {
 }
 null._superclassnames = []
--- 299,306 ----
 machine_location._privelemdict = {
 }
! unsigned_integer._superclassnames = []
! unsigned_integer._privpropdict = {
 }
! unsigned_integer._privelemdict = {
 }
 null._superclassnames = []
***************
*** 294,326 ****
 null._privelemdict = {
 }
! pixel_map_record._superclassnames = []
! pixel_map_record._privpropdict = {
! }
! pixel_map_record._privelemdict = {
! }
! plain_text._superclassnames = []
! plain_text._privpropdict = {
! }
! plain_text._privelemdict = {
! }
! plain_text._superclassnames = []
! plain_text._privpropdict = {
! }
! plain_text._privelemdict = {
! }
! point._superclassnames = []
! point._privpropdict = {
 }
! point._privelemdict = {
 }
! rotation._superclassnames = []
! rotation._privpropdict = {
 }
! rotation._privelemdict = {
 }
! scrap_styles._superclassnames = []
! scrap_styles._privpropdict = {
 }
! scrap_styles._privelemdict = {
 }
 small_integer._superclassnames = []
--- 309,326 ----
 null._privelemdict = {
 }
! type_property_info._superclassnames = []
! type_property_info._privpropdict = {
 }
! type_property_info._privelemdict = {
 }
! type_parameter_info._superclassnames = []
! type_parameter_info._privpropdict = {
 }
! type_parameter_info._privelemdict = {
 }
! bounding_rectangle._superclassnames = []
! bounding_rectangle._privpropdict = {
 }
! bounding_rectangle._privelemdict = {
 }
 small_integer._superclassnames = []
***************
*** 334,341 ****
 small_real._privelemdict = {
 }
! system_dictionary._superclassnames = []
! system_dictionary._privpropdict = {
 }
! system_dictionary._privelemdict = {
 }
 target_id._superclassnames = []
--- 334,346 ----
 small_real._privelemdict = {
 }
! scrap_styles._superclassnames = []
! scrap_styles._privpropdict = {
 }
! scrap_styles._privelemdict = {
! }
! type_suite_info._superclassnames = []
! type_suite_info._privpropdict = {
! }
! type_suite_info._privelemdict = {
 }
 target_id._superclassnames = []
***************
*** 344,381 ****
 target_id._privelemdict = {
 }
! type_class_info._superclassnames = []
! type_class_info._privpropdict = {
! }
! type_class_info._privelemdict = {
! }
! type_element_info._superclassnames = []
! type_element_info._privpropdict = {
! }
! type_element_info._privelemdict = {
! }
! type_event_info._superclassnames = []
! type_event_info._privpropdict = {
 }
! type_event_info._privelemdict = {
 }
! type_parameter_info._superclassnames = []
! type_parameter_info._privpropdict = {
 }
! type_parameter_info._privelemdict = {
 }
! type_property_info._superclassnames = []
! type_property_info._privpropdict = {
 }
! type_property_info._privelemdict = {
 }
! type_suite_info._superclassnames = []
! type_suite_info._privpropdict = {
 }
! type_suite_info._privelemdict = {
 }
! unsigned_integer._superclassnames = []
! unsigned_integer._privpropdict = {
 }
! unsigned_integer._privelemdict = {
 }
 version._superclassnames = []
--- 349,376 ----
 target_id._privelemdict = {
 }
! dash_style._superclassnames = []
! dash_style._privpropdict = {
 }
! dash_style._privelemdict = {
 }
! pixel_map_record._superclassnames = []
! pixel_map_record._privpropdict = {
 }
! pixel_map_record._privelemdict = {
 }
! RGB16_color._superclassnames = []
! RGB16_color._privpropdict = {
 }
! RGB16_color._privelemdict = {
 }
! RGB96_color._superclassnames = []
! RGB96_color._privpropdict = {
 }
! RGB96_color._privelemdict = {
 }
! rotation._superclassnames = []
! rotation._privpropdict = {
 }
! rotation._privelemdict = {
 }
 version._superclassnames = []
***************
*** 391,395 ****
 	'EPS ' : PostScript_picture,
 	'QDpt' : point,
! 	'TEXT' : plain_text,
 	'TIFF' : TIFF_picture,
 	'aete' : application_dictionary,
--- 386,390 ----
 	'EPS ' : PostScript_picture,
 	'QDpt' : point,
! 	'TEXT' : string,
 	'TIFF' : TIFF_picture,
 	'aete' : application_dictionary,

AltStyle によって変換されたページ (->オリジナル) /