mirror of
https://github.com/python/cpython.git
synced 2025-10-31 21:51:50 +00:00
Regenerated with OSA class inheritance and fix for non-ascii chars.
This commit is contained in:
parent
7ff034b65b
commit
295105f3aa
42 changed files with 2217 additions and 818 deletions
|
|
@ -1,7 +1,7 @@
|
|||
"""Suite Standard Suite: Common terms for most applications
|
||||
Level 1, version 1
|
||||
|
||||
Generated from Moes:Applications (Mac OS 9):Netscape CommunicatorŽ Folder:Netscape CommunicatorŽ
|
||||
Generated from /Volumes/Sap/Applications (Mac OS 9)/Netscape Communicator\xe2\x84\xa2 Folder/Netscape Communicator\xe2\x84\xa2
|
||||
AETE/AEUT resource version 1/0, language 0, script 0
|
||||
"""
|
||||
|
||||
|
|
@ -80,7 +80,7 @@ def get(self, _object, _attributes={}, **_arguments):
|
|||
}
|
||||
|
||||
def set(self, _object, _attributes={}, **_arguments):
|
||||
"""set: Set an objectÕs data
|
||||
"""set: Set an object\xd5s data
|
||||
Required argument: the object to change
|
||||
Keyword argument to: the new value
|
||||
Keyword argument _attributes: AppleEvent attribute dictionary
|
||||
|
|
@ -105,7 +105,7 @@ class application(aetools.ComponentItem):
|
|||
"""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Õd like to conform to the standard. """
|
||||
"""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):
|
||||
|
|
@ -170,21 +170,23 @@ class URL(aetools.NProperty):
|
|||
which = 'curl'
|
||||
want = 'TEXT'
|
||||
class unique_ID(aetools.NProperty):
|
||||
"""unique ID - WindowÕs unique ID (a bridge between WWW! suite window idÕs and standard AE windows) """
|
||||
"""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._propdict = {
|
||||
application._superclassnames = []
|
||||
application._privpropdict = {
|
||||
'alert_application' : alert_application,
|
||||
'kiosk_mode' : kiosk_mode,
|
||||
}
|
||||
application._elemdict = {
|
||||
application._privelemdict = {
|
||||
'window' : window,
|
||||
}
|
||||
window._propdict = {
|
||||
window._superclassnames = []
|
||||
window._privpropdict = {
|
||||
'bounds' : bounds,
|
||||
'closeable' : closeable,
|
||||
'titled' : titled,
|
||||
|
|
@ -201,7 +203,7 @@ class busy(aetools.NProperty):
|
|||
'unique_ID' : unique_ID,
|
||||
'busy' : busy,
|
||||
}
|
||||
window._elemdict = {
|
||||
window._privelemdict = {
|
||||
}
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue