[Python-checkins] python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape Mozilla_suite.py,1.3,1.4 Standard_Suite.py,1.2,1.3 Text.py,1.3,1.4

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


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

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


Index: Mozilla_suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/Mozilla_suite.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Mozilla_suite.py	28 Mar 2003 22:07:18 -0000	1.3
--- Mozilla_suite.py	28 Mar 2003 23:37:57 -0000	1.4
***************
*** 265,269 ****
  _enumdeclarations = {
  	'comp' : _Enum_comp,
- 	'ncmd' : _Enum_ncmd,
  	'dire' : _Enum_dire,
  }
--- 265,269 ----
  _enumdeclarations = {
  	'comp' : _Enum_comp,
  	'dire' : _Enum_dire,
+ 	'ncmd' : _Enum_ncmd,
  }

Index: Standard_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/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:57 -0000	1.3
***************
*** 118,132 ****
  	"""window - A Window """
  	want = 'cwin'
  class bounds(aetools.NProperty):
  	"""bounds - the boundary rectangle for the window """
  	which = 'pbnd'
  	want = 'qdrt'
  class closeable(aetools.NProperty):
  	"""closeable - Does the window have a close box? """
  	which = 'hclb'
  	want = 'bool'
! class titled(aetools.NProperty):
! 	"""titled - Does the window have a title bar? """
! 	which = 'ptit'
  	want = 'bool'
  class index(aetools.NProperty):
--- 118,140 ----
  	"""window - A Window """
  	want = 'cwin'
+ class URL(aetools.NProperty):
+ 	"""URL - Current URL """
+ 	which = 'curl'
+ 	want = 'TEXT'
  class bounds(aetools.NProperty):
  	"""bounds - the boundary rectangle for the window """
  	which = 'pbnd'
  	want = 'qdrt'
+ class busy(aetools.NProperty):
+ 	"""busy - Is window loading something right now. 2, window is busy and will reject load requests. 1, window is busy, but will interrupt outstanding loads """
+ 	which = 'busy'
+ 	want = 'long'
  class closeable(aetools.NProperty):
  	"""closeable - Does the window have a close box? """
  	which = 'hclb'
  	want = 'bool'
! class floating(aetools.NProperty):
! 	"""floating - Does the window float? """
! 	which = 'isfl'
  	want = 'bool'
  class index(aetools.NProperty):
***************
*** 134,181 ****
  	which = 'pidx'
  	want = 'long'
- class floating(aetools.NProperty):
- 	"""floating - Does the window float? """
- 	which = 'isfl'
- 	want = 'bool'
  class modal(aetools.NProperty):
  	"""modal - Is the window modal? """
  	which = 'pmod'
  	want = 'bool'
- class resizable(aetools.NProperty):
- 	"""resizable - Is the window resizable? """
- 	which = 'prsz'
- 	want = 'bool'
- class zoomable(aetools.NProperty):
- 	"""zoomable - Is the window zoomable? """
- 	which = 'iszm'
- 	want = 'bool'
- class zoomed(aetools.NProperty):
- 	"""zoomed - Is the window zoomed? """
- 	which = 'pzum'
- 	want = 'bool'
  class name(aetools.NProperty):
  	"""name - the title of the window """
  	which = 'pnam'
  	want = 'itxt'
- class visible(aetools.NProperty):
- 	"""visible - is the window visible? """
- 	which = 'pvis'
- 	want = 'bool'
  class position(aetools.NProperty):
  	"""position - upper left coordinates of window """
  	which = 'ppos'
  	want = 'QDpt'
! class URL(aetools.NProperty):
! 	"""URL - Current URL """
! 	which = 'curl'
! 	want = 'TEXT'
  class unique_ID(aetools.NProperty):
  	"""unique ID - Window\xd5s unique ID (a bridge between WWW! suite window id\xd5s and standard AE windows) """
  	which = 'wiid'
  	want = 'long'
! class busy(aetools.NProperty):
! 	"""busy - Is window loading something right now. 2, window is busy and will reject load requests. 1, window is busy, but will interrupt outstanding loads """
! 	which = 'busy'
! 	want = 'long'
  application._superclassnames = []
  application._privpropdict = {
--- 142,181 ----
  	which = 'pidx'
  	want = 'long'
  class modal(aetools.NProperty):
  	"""modal - Is the window modal? """
  	which = 'pmod'
  	want = 'bool'
  class name(aetools.NProperty):
  	"""name - the title of the window """
  	which = 'pnam'
  	want = 'itxt'
  class position(aetools.NProperty):
  	"""position - upper left coordinates of window """
  	which = 'ppos'
  	want = 'QDpt'
! class resizable(aetools.NProperty):
! 	"""resizable - Is the window resizable? """
! 	which = 'prsz'
! 	want = 'bool'
! class titled(aetools.NProperty):
! 	"""titled - Does the window have a title bar? """
! 	which = 'ptit'
! 	want = 'bool'
  class unique_ID(aetools.NProperty):
  	"""unique ID - Window\xd5s unique ID (a bridge between WWW! suite window id\xd5s and standard AE windows) """
  	which = 'wiid'
  	want = 'long'
! class visible(aetools.NProperty):
! 	"""visible - is the window visible? """
! 	which = 'pvis'
! 	want = 'bool'
! class zoomable(aetools.NProperty):
! 	"""zoomable - Is the window zoomable? """
! 	which = 'iszm'
! 	want = 'bool'
! class zoomed(aetools.NProperty):
! 	"""zoomed - Is the window zoomed? """
! 	which = 'pzum'
! 	want = 'bool'
  application._superclassnames = []
  application._privpropdict = {
***************
*** 188,206 ****
  window._superclassnames = []
  window._privpropdict = {
  	'bounds' : bounds,
  	'closeable' : closeable,
- 	'titled' : titled,
- 	'index' : index,
  	'floating' : floating,
  	'modal' : modal,
- 	'resizable' : resizable,
- 	'zoomable' : zoomable,
- 	'zoomed' : zoomed,
  	'name' : name,
- 	'visible' : visible,
  	'position' : position,
! 	'URL' : URL,
  	'unique_ID' : unique_ID,
! 	'busy' : busy,
  }
  window._privelemdict = {
--- 188,206 ----
  window._superclassnames = []
  window._privpropdict = {
+ 	'URL' : URL,
  	'bounds' : bounds,
+ 	'busy' : busy,
  	'closeable' : closeable,
  	'floating' : floating,
+ 	'index' : index,
  	'modal' : modal,
  	'name' : name,
  	'position' : position,
! 	'resizable' : resizable,
! 	'titled' : titled,
  	'unique_ID' : unique_ID,
! 	'visible' : visible,
! 	'zoomable' : zoomable,
! 	'zoomed' : zoomed,
  }
  window._privelemdict = {
***************
*** 211,236 ****
  #
  _classdeclarations = {
- 	'cwin' : window,
  	'capp' : application,
  }
  
  _propdeclarations = {
! 	'prsz' : resizable,
! 	'busy' : busy,
  	'KOSK' : kiosk_mode,
! 	'pvis' : visible,
  	'hclb' : closeable,
! 	'pmod' : modal,
! 	'wiid' : unique_ID,
! 	'pbnd' : bounds,
  	'iszm' : zoomable,
! 	'ALAP' : alert_application,
  	'pidx' : index,
! 	'isfl' : floating,
  	'pnam' : name,
  	'ppos' : position,
! 	'curl' : URL,
! 	'pzum' : zoomed,
  	'ptit' : titled,
  }
  
--- 211,236 ----
  #
  _classdeclarations = {
  	'capp' : application,
+ 	'cwin' : window,
  }
  
  _propdeclarations = {
! 	'ALAP' : alert_application,
  	'KOSK' : kiosk_mode,
! 	'busy' : busy,
! 	'curl' : URL,
  	'hclb' : closeable,
! 	'isfl' : floating,
  	'iszm' : zoomable,
! 	'pbnd' : bounds,
  	'pidx' : index,
! 	'pmod' : modal,
  	'pnam' : name,
  	'ppos' : position,
! 	'prsz' : resizable,
  	'ptit' : titled,
+ 	'pvis' : visible,
+ 	'pzum' : zoomed,
+ 	'wiid' : unique_ID,
  }
  

Index: Text.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/Text.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Text.py	28 Mar 2003 22:07:19 -0000	1.3
--- Text.py	28 Mar 2003 23:37:57 -0000	1.4
***************
*** 20,27 ****
  	"""styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """
  	want = 'stys'
- class name(aetools.NProperty):
- 	"""name - style name """
- 	which = 'pnam'
- 	want = 'TEXT'
  class color(aetools.NProperty):
  	"""color - the color """
--- 20,23 ----
***************
*** 32,47 ****
  	which = 'font'
  	want = 'TEXT'
  class size(aetools.NProperty):
  	"""size - the size in points """
  	which = 'ptsz'
  	want = 'long'
- class writing_code(aetools.NProperty):
- 	"""writing code - the script system and language """
- 	which = 'psct'
- 	want = 'tsty'
  class style(aetools.NProperty):
  	"""style - the text styles or face attributes """
  	which = 'txst'
  	want = 'tsty'
  
  stylesets = styleset
--- 28,47 ----
  	which = 'font'
  	want = 'TEXT'
+ class name(aetools.NProperty):
+ 	"""name - style name """
+ 	which = 'pnam'
+ 	want = 'TEXT'
  class size(aetools.NProperty):
  	"""size - the size in points """
  	which = 'ptsz'
  	want = 'long'
  class style(aetools.NProperty):
  	"""style - the text styles or face attributes """
  	which = 'txst'
  	want = 'tsty'
+ class writing_code(aetools.NProperty):
+ 	"""writing code - the script system and language """
+ 	which = 'psct'
+ 	want = 'tsty'
  
  stylesets = styleset
***************
*** 50,57 ****
  	"""text - independent text view objects """
  	want = 'ctxt'
- class updateLevel(aetools.NProperty):
- 	"""updateLevel - updating level.  Can only be incremented or decremented.  Do so only in a try block -- if the level is greater than zero, visual text updating will cease. """
- 	which = 'pUpL'
- 	want = 'long'
  class beginning(aetools.NProperty):
  	"""beginning - Beginning of element """
--- 50,53 ----
***************
*** 70,82 ****
  	which = 'pAft'
  	want = 'obj '
  #        element 'stys' as ['indx', 'name']
  styleset._superclassnames = []
  styleset._privpropdict = {
- 	'name' : name,
  	'color' : color,
  	'font' : font,
  	'size' : size,
- 	'writing_code' : writing_code,
  	'style' : style,
  }
  styleset._privelemdict = {
--- 66,82 ----
  	which = 'pAft'
  	want = 'obj '
+ class updateLevel(aetools.NProperty):
+ 	"""updateLevel - updating level.  Can only be incremented or decremented.  Do so only in a try block -- if the level is greater than zero, visual text updating will cease. """
+ 	which = 'pUpL'
+ 	want = 'long'
  #        element 'stys' as ['indx', 'name']
  styleset._superclassnames = []
  styleset._privpropdict = {
  	'color' : color,
  	'font' : font,
+ 	'name' : name,
  	'size' : size,
  	'style' : style,
+ 	'writing_code' : writing_code,
  }
  styleset._privelemdict = {
***************
*** 84,92 ****
  text._superclassnames = []
  text._privpropdict = {
- 	'updateLevel' : updateLevel,
  	'beginning' : beginning,
  	'end' : end,
  	'infront' : infront,
  	'justbehind' : justbehind,
  }
  text._privelemdict = {
--- 84,92 ----
  text._superclassnames = []
  text._privpropdict = {
  	'beginning' : beginning,
  	'end' : end,
  	'infront' : infront,
  	'justbehind' : justbehind,
+ 	'updateLevel' : updateLevel,
  }
  text._privelemdict = {
***************
*** 98,117 ****
  #
  _classdeclarations = {
- 	'stys' : styleset,
  	'ctxt' : text,
  }
  
  _propdeclarations = {
- 	'ptsz' : size,
  	'bgng' : beginning,
  	'colr' : color,
- 	'txst' : style,
- 	'psct' : writing_code,
- 	'pAft' : justbehind,
- 	'font' : font,
  	'end ' : end,
  	'pUpL' : updateLevel,
  	'pnam' : name,
! 	'pBef' : infront,
  }
  
--- 98,117 ----
  #
  _classdeclarations = {
  	'ctxt' : text,
+ 	'stys' : styleset,
  }
  
  _propdeclarations = {
  	'bgng' : beginning,
  	'colr' : color,
  	'end ' : end,
+ 	'font' : font,
+ 	'pAft' : justbehind,
+ 	'pBef' : infront,
  	'pUpL' : updateLevel,
  	'pnam' : name,
! 	'psct' : writing_code,
! 	'ptsz' : size,
! 	'txst' : style,
  }