[Python-checkins] python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape Mozilla_suite.py,1.4,1.5 PowerPlant.py,1.3,1.4 Required_suite.py,1.2,1.3 Standard_Suite.py,1.3,1.4 Standard_URL_suite.py,1.2,1.3 Text.py,1.5,1.6 WorldWideWeb_suite.py,1.3,1.4 __init__.py,1.5,1.6

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 01 Apr 2003 14:05:28 -0800


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

Modified Files:
	Mozilla_suite.py PowerPlant.py Required_suite.py 
	Standard_Suite.py Standard_URL_suite.py Text.py 
	WorldWideWeb_suite.py __init__.py 
Log Message:
Regenerated with property names with _Prop_ prepended.


Index: Mozilla_suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/Mozilla_suite.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Mozilla_suite.py	28 Mar 2003 23:37:57 -0000	1.4
--- Mozilla_suite.py	1 Apr 2003 22:04:44 -0000	1.5
***************
*** 256,269 ****
  _classdeclarations = {
  }
- 
- _propdeclarations = {
- }
- 
- _compdeclarations = {
- }
- 
- _enumdeclarations = {
- 	'comp' : _Enum_comp,
- 	'dire' : _Enum_dire,
- 	'ncmd' : _Enum_ncmd,
- }
--- 256,257 ----

Index: PowerPlant.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PowerPlant.py	28 Mar 2003 22:07:18 -0000	1.3
--- PowerPlant.py	1 Apr 2003 22:04:45 -0000	1.4
***************
*** 75,86 ****
  _classdeclarations = {
  }
- 
- _propdeclarations = {
- }
- 
- _compdeclarations = {
- }
- 
- _enumdeclarations = {
- 	'dbac' : _Enum_dbac,
- }
--- 75,76 ----

Index: Required_suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/Required_suite.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Required_suite.py	23 Mar 2003 22:07:27 -0000	1.2
--- Required_suite.py	1 Apr 2003 22:04:45 -0000	1.3
***************
*** 98,108 ****
  _classdeclarations = {
  }
- 
- _propdeclarations = {
- }
- 
- _compdeclarations = {
- }
- 
- _enumdeclarations = {
- }
--- 98,99 ----

Index: Standard_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Standard_Suite.py	28 Mar 2003 23:37:57 -0000	1.3
--- Standard_Suite.py	1 Apr 2003 22:04:45 -0000	1.4
***************
*** 105,113 ****
  	"""application - An application program """
  	want = 'capp'
! class alert_application(aetools.NProperty):
  	"""alert application - Most of the alerts will be sent to this application using yet unspecified AE interface. We need a few alert boxes: alert, confirm and notify. Any ideas on how to design this event? mailto:atotic@netscape.com. I\xd5d like to conform to the standard. """
  	which = 'ALAP'
  	want = 'type'
! class kiosk_mode(aetools.NProperty):
  	"""kiosk mode - Kiosk mode leaves very few menus enabled """
  	which = 'KOSK'
--- 105,113 ----
  	"""application - An application program """
  	want = 'capp'
! class _Prop_alert_application(aetools.NProperty):
  	"""alert application - Most of the alerts will be sent to this application using yet unspecified AE interface. We need a few alert boxes: alert, confirm and notify. Any ideas on how to design this event? mailto:atotic@netscape.com. I\xd5d like to conform to the standard. """
  	which = 'ALAP'
  	want = 'type'
! class _Prop_kiosk_mode(aetools.NProperty):
  	"""kiosk mode - Kiosk mode leaves very few menus enabled """
  	which = 'KOSK'
***************
*** 118,178 ****
  	"""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):
  	"""index - the number of the window """
  	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'
--- 118,178 ----
  	"""window - A Window """
  	want = 'cwin'
! class _Prop_URL(aetools.NProperty):
  	"""URL - Current URL """
  	which = 'curl'
  	want = 'TEXT'
! class _Prop_bounds(aetools.NProperty):
  	"""bounds - the boundary rectangle for the window """
  	which = 'pbnd'
  	want = 'qdrt'
! class _Prop_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 _Prop_closeable(aetools.NProperty):
  	"""closeable - Does the window have a close box? """
  	which = 'hclb'
  	want = 'bool'
! class _Prop_floating(aetools.NProperty):
  	"""floating - Does the window float? """
  	which = 'isfl'
  	want = 'bool'
! class _Prop_index(aetools.NProperty):
  	"""index - the number of the window """
  	which = 'pidx'
  	want = 'long'
! class _Prop_modal(aetools.NProperty):
  	"""modal - Is the window modal? """
  	which = 'pmod'
  	want = 'bool'
! class _Prop_name(aetools.NProperty):
  	"""name - the title of the window """
  	which = 'pnam'
  	want = 'itxt'
! class _Prop_position(aetools.NProperty):
  	"""position - upper left coordinates of window """
  	which = 'ppos'
  	want = 'QDpt'
! class _Prop_resizable(aetools.NProperty):
  	"""resizable - Is the window resizable? """
  	which = 'prsz'
  	want = 'bool'
! class _Prop_titled(aetools.NProperty):
  	"""titled - Does the window have a title bar? """
  	which = 'ptit'
  	want = 'bool'
! class _Prop_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 _Prop_visible(aetools.NProperty):
  	"""visible - is the window visible? """
  	which = 'pvis'
  	want = 'bool'
! class _Prop_zoomable(aetools.NProperty):
  	"""zoomable - Is the window zoomable? """
  	which = 'iszm'
  	want = 'bool'
! class _Prop_zoomed(aetools.NProperty):
  	"""zoomed - Is the window zoomed? """
  	which = 'pzum'
***************
*** 180,185 ****
  application._superclassnames = []
  application._privpropdict = {
! 	'alert_application' : alert_application,
! 	'kiosk_mode' : kiosk_mode,
  }
  application._privelemdict = {
--- 180,185 ----
  application._superclassnames = []
  application._privpropdict = {
! 	'alert_application' : _Prop_alert_application,
! 	'kiosk_mode' : _Prop_kiosk_mode,
  }
  application._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 = {
--- 188,206 ----
  window._superclassnames = []
  window._privpropdict = {
! 	'URL' : _Prop_URL,
! 	'bounds' : _Prop_bounds,
! 	'busy' : _Prop_busy,
! 	'closeable' : _Prop_closeable,
! 	'floating' : _Prop_floating,
! 	'index' : _Prop_index,
! 	'modal' : _Prop_modal,
! 	'name' : _Prop_name,
! 	'position' : _Prop_position,
! 	'resizable' : _Prop_resizable,
! 	'titled' : _Prop_titled,
! 	'unique_ID' : _Prop_unique_ID,
! 	'visible' : _Prop_visible,
! 	'zoomable' : _Prop_zoomable,
! 	'zoomed' : _Prop_zoomed,
  }
  window._privelemdict = {
***************
*** 213,241 ****
  	'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,
- }
- 
- _compdeclarations = {
- }
- 
- _enumdeclarations = {
  }
--- 213,215 ----

Index: Standard_URL_suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/Standard_URL_suite.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Standard_URL_suite.py	23 Mar 2003 22:07:27 -0000	1.2
--- Standard_URL_suite.py	1 Apr 2003 22:04:45 -0000	1.3
***************
*** 48,58 ****
  _classdeclarations = {
  }
- 
- _propdeclarations = {
- }
- 
- _compdeclarations = {
- }
- 
- _enumdeclarations = {
- }
--- 48,49 ----

Index: Text.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/Text.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Text.py	30 Mar 2003 22:41:48 -0000	1.5
--- Text.py	1 Apr 2003 22:04:46 -0000	1.6
***************
*** 20,40 ****
  	"""text - independent text view objects """
  	want = 'ctxt'
! class beginning(aetools.NProperty):
  	"""beginning - Beginning of element """
  	which = 'bgng'
  	want = 'obj '
! class end(aetools.NProperty):
  	"""end - Ending of element """
  	which = 'end '
  	want = 'obj '
! class infront(aetools.NProperty):
  	"""infront - Immediately before element """
  	which = 'pBef'
  	want = 'obj '
! class justbehind(aetools.NProperty):
  	"""justbehind - Immediately after element """
  	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'
--- 20,40 ----
  	"""text - independent text view objects """
  	want = 'ctxt'
! class _Prop_beginning(aetools.NProperty):
  	"""beginning - Beginning of element """
  	which = 'bgng'
  	want = 'obj '
! class _Prop_end(aetools.NProperty):
  	"""end - Ending of element """
  	which = 'end '
  	want = 'obj '
! class _Prop_infront(aetools.NProperty):
  	"""infront - Immediately before element """
  	which = 'pBef'
  	want = 'obj '
! class _Prop_justbehind(aetools.NProperty):
  	"""justbehind - Immediately after element """
  	which = 'pAft'
  	want = 'obj '
! class _Prop_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'
***************
*** 45,69 ****
  	"""styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """
  	want = 'stys'
! class color(aetools.NProperty):
  	"""color - the color """
  	which = 'colr'
  	want = 'RGB '
! class font(aetools.NProperty):
  	"""font - font name """
  	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'
--- 45,69 ----
  	"""styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """
  	want = 'stys'
! class _Prop_color(aetools.NProperty):
  	"""color - the color """
  	which = 'colr'
  	want = 'RGB '
! class _Prop_font(aetools.NProperty):
  	"""font - font name """
  	which = 'font'
  	want = 'TEXT'
! class _Prop_name(aetools.NProperty):
  	"""name - style name """
  	which = 'pnam'
  	want = 'TEXT'
! class _Prop_size(aetools.NProperty):
  	"""size - the size in points """
  	which = 'ptsz'
  	want = 'long'
! class _Prop_style(aetools.NProperty):
  	"""style - the text styles or face attributes """
  	which = 'txst'
  	want = 'tsty'
! class _Prop_writing_code(aetools.NProperty):
  	"""writing code - the script system and language """
  	which = 'psct'
***************
*** 73,81 ****
  text._superclassnames = []
  text._privpropdict = {
! 	'beginning' : beginning,
! 	'end' : end,
! 	'infront' : infront,
! 	'justbehind' : justbehind,
! 	'updateLevel' : updateLevel,
  }
  text._privelemdict = {
--- 73,81 ----
  text._superclassnames = []
  text._privpropdict = {
! 	'beginning' : _Prop_beginning,
! 	'end' : _Prop_end,
! 	'infront' : _Prop_infront,
! 	'justbehind' : _Prop_justbehind,
! 	'updateLevel' : _Prop_updateLevel,
  }
  text._privelemdict = {
***************
*** 84,93 ****
  styleset._superclassnames = []
  styleset._privpropdict = {
! 	'color' : color,
! 	'font' : font,
! 	'name' : name,
! 	'size' : size,
! 	'style' : style,
! 	'writing_code' : writing_code,
  }
  styleset._privelemdict = {
--- 84,93 ----
  styleset._superclassnames = []
  styleset._privpropdict = {
! 	'color' : _Prop_color,
! 	'font' : _Prop_font,
! 	'name' : _Prop_name,
! 	'size' : _Prop_size,
! 	'style' : _Prop_style,
! 	'writing_code' : _Prop_writing_code,
  }
  styleset._privelemdict = {
***************
*** 100,122 ****
  	'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,
- }
- 
- _compdeclarations = {
- }
- 
- _enumdeclarations = {
  }
--- 100,102 ----

Index: WorldWideWeb_suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/WorldWideWeb_suite.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** WorldWideWeb_suite.py	28 Mar 2003 22:07:20 -0000	1.3
--- WorldWideWeb_suite.py	1 Apr 2003 22:04:47 -0000	1.4
***************
*** 416,426 ****
  _classdeclarations = {
  }
- 
- _propdeclarations = {
- }
- 
- _compdeclarations = {
- }
- 
- _enumdeclarations = {
- }
--- 416,417 ----

Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Netscape/__init__.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** __init__.py	30 Mar 2003 22:41:49 -0000	1.5
--- __init__.py	1 Apr 2003 22:04:48 -0000	1.6
***************
*** 62,67 ****
  getbaseclasses(window)
  getbaseclasses(application)
- getbaseclasses(text)
- getbaseclasses(styleset)
  getbaseclasses(StdSuites.Text_Suite.text_flow)
  getbaseclasses(StdSuites.Text_Suite.character)
--- 62,65 ----
***************
*** 71,74 ****
--- 69,74 ----
  getbaseclasses(StdSuites.Text_Suite.paragraph)
  getbaseclasses(StdSuites.Text_Suite.text)
+ getbaseclasses(text)
+ getbaseclasses(styleset)
  
  #
***************
*** 78,83 ****
  	'cwin' : window,
  	'capp' : application,
- 	'ctxt' : text,
- 	'stys' : styleset,
  	'cflo' : StdSuites.Text_Suite.text_flow,
  	'cha ' : StdSuites.Text_Suite.character,
--- 78,81 ----
***************
*** 87,90 ****
--- 85,90 ----
  	'cpar' : StdSuites.Text_Suite.paragraph,
  	'ctxt' : StdSuites.Text_Suite.text,
+ 	'ctxt' : text,
+ 	'stys' : styleset,
  }