2000-08-17 19:14:57 -03:00
|
|
|
"""Suite AppleScript Suite: Standard terms for AppleScript
|
|
|
|
Level 1, version 1
|
|
|
|
|
2003-06-13 11:31:19 -03:00
|
|
|
Generated from /Volumes/Sap/System Folder/Extensions/AppleScript
|
2000-08-17 19:14:57 -03:00
|
|
|
AETE/AEUT resource version 1/0, language 0, script 0
|
|
|
|
"""
|
|
|
|
|
|
|
|
import aetools
|
|
|
|
import MacOS
|
|
|
|
|
|
|
|
_code = 'ascr'
|
|
|
|
|
|
|
|
class AppleScript_Suite_Events:
|
|
|
|
|
2003-04-12 19:27:11 -03:00
|
|
|
def _26_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""&: Concatenation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'ccat'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _2a_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""*: Multiplication
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '* '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _2b_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""+: Addition
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '+ '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _2d_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""-: Subtraction
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '- '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _3c_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""<: Less than
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '< '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _3d_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""=: Equality
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '= '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _3e_(self, _object, _attributes={}, **_arguments):
|
|
|
|
""">: Greater than
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '> '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
_argmap_Call_a5_subroutine = {
|
|
|
|
'at' : 'at ',
|
|
|
|
'from_' : 'from',
|
|
|
|
'for_' : 'for ',
|
|
|
|
'to' : 'to ',
|
|
|
|
'thru' : 'thru',
|
|
|
|
'through' : 'thgh',
|
|
|
|
'by' : 'by ',
|
|
|
|
'on' : 'on ',
|
|
|
|
'into' : 'into',
|
|
|
|
'onto' : 'onto',
|
|
|
|
'between' : 'btwn',
|
|
|
|
'against' : 'agst',
|
|
|
|
'out_of' : 'outo',
|
|
|
|
'instead_of' : 'isto',
|
|
|
|
'aside_from' : 'asdf',
|
|
|
|
'around' : 'arnd',
|
|
|
|
'beside' : 'bsid',
|
|
|
|
'beneath' : 'bnth',
|
|
|
|
'under' : 'undr',
|
|
|
|
'over' : 'over',
|
|
|
|
'above' : 'abve',
|
|
|
|
'below' : 'belw',
|
|
|
|
'apart_from' : 'aprt',
|
|
|
|
'about' : 'abou',
|
|
|
|
'since' : 'snce',
|
|
|
|
'given' : 'givn',
|
|
|
|
'with' : 'with',
|
|
|
|
'without' : 'wout',
|
|
|
|
}
|
|
|
|
|
|
|
|
def Call_a5_subroutine(self, _object=None, _attributes={}, **_arguments):
|
|
|
|
"""Call\xa5subroutine: A subroutine call
|
|
|
|
Required argument: anything
|
|
|
|
Keyword argument at: a preposition
|
|
|
|
Keyword argument from_: a preposition
|
|
|
|
Keyword argument for_: a preposition
|
|
|
|
Keyword argument to: a preposition
|
|
|
|
Keyword argument thru: a preposition
|
|
|
|
Keyword argument through: a preposition
|
|
|
|
Keyword argument by: a preposition
|
|
|
|
Keyword argument on: a preposition
|
|
|
|
Keyword argument into: a preposition
|
|
|
|
Keyword argument onto: a preposition
|
|
|
|
Keyword argument between: a preposition
|
|
|
|
Keyword argument against: a preposition
|
|
|
|
Keyword argument out_of: a preposition
|
|
|
|
Keyword argument instead_of: a preposition
|
|
|
|
Keyword argument aside_from: a preposition
|
|
|
|
Keyword argument around: a preposition
|
|
|
|
Keyword argument beside: a preposition
|
|
|
|
Keyword argument beneath: a preposition
|
|
|
|
Keyword argument under: a preposition
|
|
|
|
Keyword argument over: a preposition
|
|
|
|
Keyword argument above: a preposition
|
|
|
|
Keyword argument below: a preposition
|
|
|
|
Keyword argument apart_from: a preposition
|
|
|
|
Keyword argument about: a preposition
|
|
|
|
Keyword argument since: a preposition
|
|
|
|
Keyword argument given: parameter:value pairs, comma-separated
|
|
|
|
Keyword argument with: formal parameter set to true if matching actual parameter is provided
|
|
|
|
Keyword argument without: formal parameter set to false if matching actual parmeter is provided
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'psbr'
|
|
|
|
|
|
|
|
aetools.keysubst(_arguments, self._argmap_Call_a5_subroutine)
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _5e_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""^: Exponentiation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '^ '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def activate(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""activate: Bring the targeted application program to the front
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'misc'
|
|
|
|
_subcode = 'actv'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def and_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""and: Logical conjunction
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'AND '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def as(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""as: Coercion
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'coer'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def contains(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""contains: Containment
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'cont'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def div(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""div: Quotient
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'div '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def end_tell(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""end tell: Record or log an \xd4end tell\xd5 statement
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'tend'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def ends_with(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""ends with: Ends with
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'ends'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
_argmap_error = {
|
|
|
|
'number' : 'errn',
|
|
|
|
'partial_result' : 'ptlr',
|
|
|
|
'from_' : 'erob',
|
|
|
|
'to' : 'errt',
|
|
|
|
}
|
|
|
|
|
|
|
|
def error(self, _object=None, _attributes={}, **_arguments):
|
|
|
|
"""error: Raise an error
|
|
|
|
Required argument: anything
|
|
|
|
Keyword argument number: an error number
|
|
|
|
Keyword argument partial_result: any partial result occurring before the error
|
|
|
|
Keyword argument from_: the object that caused the error
|
|
|
|
Keyword argument to: the desired class for a failed coercion
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'err '
|
|
|
|
|
|
|
|
aetools.keysubst(_arguments, self._argmap_error)
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def idle(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""idle: Sent to a script application when it is idle
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: the number of seconds to wait for next idle event
|
|
|
|
"""
|
|
|
|
_code = 'misc'
|
|
|
|
_subcode = 'idle'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def launch(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""launch: Start an application for scripting
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'noop'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def log(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""log: Cause a comment to be logged
|
|
|
|
Required argument: undocumented, typecode 'TEXT'
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'cmnt'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def mod(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""mod: Remainder
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'mod '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def negate(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""negate: Numeric negation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'neg '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def not_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""not: Logical negation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'NOT '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def or_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""or: Logical disjunction
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'OR '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def start_log(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""start log: Start event logging in the script editor
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ToyS'
|
|
|
|
_subcode = 'log1'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def starts_with(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""starts with: Starts with
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'bgwt'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def stop_log(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""stop log: Stop event logging in the script editor
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ToyS'
|
|
|
|
_subcode = 'log0'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def tell(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""tell: Record or log a \xd4tell\xd5 statement
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'tell'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _ad_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""\xad: Inequality
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '\xad '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _b2_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""\xb2: Less than or equal to
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '<= '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _b3_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""\xb3: Greater than or equal to
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '>= '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _d6_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""\xd6: Division
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '/ '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
|
|
|
if _arguments.get('errn', 0):
|
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
2000-08-17 19:14:57 -03:00
|
|
|
|
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class anything(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""anything - any class or reference """
|
|
|
|
want = '****'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class pictures(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""pictures - """
|
|
|
|
want = 'PICT'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
picture = pictures
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class styled_text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""styled text - text with font, size, and style information """
|
|
|
|
want = 'STXT'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
styled_text = styled_text
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class strings(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""strings - """
|
|
|
|
want = 'TEXT'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
string = strings
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-06-13 11:31:19 -03:00
|
|
|
class alias(aetools.ComponentItem):
|
|
|
|
"""alias - a file on a disk or server. The file must exist when you check the syntax of your script. """
|
2003-04-12 19:27:11 -03:00
|
|
|
want = 'alis'
|
2003-06-13 11:31:19 -03:00
|
|
|
class _Prop_POSIX_path(aetools.NProperty):
|
|
|
|
"""POSIX path - the POSIX path of the file """
|
|
|
|
which = 'psxp'
|
|
|
|
want = 'TEXT'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-06-13 11:31:19 -03:00
|
|
|
aliases = alias
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class April(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""April - the month of April """
|
|
|
|
want = 'apr '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class August(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""August - the month of August """
|
|
|
|
want = 'aug '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class booleans(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""booleans - """
|
|
|
|
want = 'bool'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
boolean = booleans
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class RGB_colors(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""RGB colors - """
|
|
|
|
want = 'cRGB'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
RGB_color = RGB_colors
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class application(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""application - specifies global properties of AppleScript """
|
|
|
|
want = 'capp'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_AppleScript(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""AppleScript - the top-level script object """
|
|
|
|
which = 'ascr'
|
|
|
|
want = 'scpt'
|
2003-06-13 11:31:19 -03:00
|
|
|
AppleScript = _Prop_AppleScript()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_days(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""days - the number of seconds in a day """
|
|
|
|
which = 'days'
|
|
|
|
want = 'long'
|
2003-06-13 11:31:19 -03:00
|
|
|
days = _Prop_days()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_hours(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""hours - the number of seconds in an hour """
|
|
|
|
which = 'hour'
|
|
|
|
want = 'long'
|
2003-06-13 11:31:19 -03:00
|
|
|
hours = _Prop_hours()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_minutes(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""minutes - the number of seconds in a minute """
|
|
|
|
which = 'min '
|
|
|
|
want = 'long'
|
2003-06-13 11:31:19 -03:00
|
|
|
minutes = _Prop_minutes()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_pi(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""pi - the constant pi """
|
|
|
|
which = 'pi '
|
|
|
|
want = 'doub'
|
2003-06-13 11:31:19 -03:00
|
|
|
pi = _Prop_pi()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_print_depth(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""print depth - the maximum depth to print """
|
|
|
|
which = 'prdp'
|
|
|
|
want = 'long'
|
2003-06-13 11:31:19 -03:00
|
|
|
print_depth = _Prop_print_depth()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_print_length(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""print length - the maximum length to print """
|
|
|
|
which = 'prln'
|
|
|
|
want = 'long'
|
2003-06-13 11:31:19 -03:00
|
|
|
print_length = _Prop_print_length()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_result(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""result - the last result of evaluation """
|
|
|
|
which = 'rslt'
|
|
|
|
want = '****'
|
2003-06-13 11:31:19 -03:00
|
|
|
result = _Prop_result()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_return_(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""return - a return character """
|
|
|
|
which = 'ret '
|
|
|
|
want = 'cha '
|
2003-06-13 11:31:19 -03:00
|
|
|
return_ = _Prop_return_()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_space(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""space - a space character """
|
|
|
|
which = 'spac'
|
|
|
|
want = 'cha '
|
2003-06-13 11:31:19 -03:00
|
|
|
space = _Prop_space()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_tab(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""tab - a tab character """
|
|
|
|
which = 'tab '
|
|
|
|
want = 'cha '
|
2003-06-13 11:31:19 -03:00
|
|
|
tab = _Prop_tab()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_text_item_delimiters(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""text item delimiters - the text item delimiters of a string """
|
|
|
|
which = 'txdl'
|
|
|
|
want = 'list'
|
2003-06-13 11:31:19 -03:00
|
|
|
text_item_delimiters = _Prop_text_item_delimiters()
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_weeks(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""weeks - the number of seconds in a week """
|
|
|
|
which = 'week'
|
|
|
|
want = 'long'
|
2003-06-13 11:31:19 -03:00
|
|
|
weeks = _Prop_weeks()
|
2003-03-28 18:07:22 -04:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
applications = application
|
2003-03-28 18:07:22 -04:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
app = application
|
2003-03-28 18:07:22 -04:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class upper_case(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""upper case - Text with lower case converted to upper case """
|
|
|
|
want = 'case'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class cubic_centimeters(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""cubic centimeters - a volume measurement in SI cubic centimeters """
|
|
|
|
want = 'ccmt'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
cubic_centimetres = cubic_centimeters
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class cubic_feet(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""cubic feet - a volume measurement in Imperial cubic feet """
|
|
|
|
want = 'cfet'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class characters(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""characters - """
|
|
|
|
want = 'cha '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
character = characters
|
|
|
|
|
|
|
|
class writing_code_info(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""writing code info - script code and language code of text run """
|
|
|
|
want = 'citl'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_language_code(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""language code - the language code for the text """
|
|
|
|
which = 'plcd'
|
|
|
|
want = 'shor'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_script_code(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""script code - the script code for the text """
|
|
|
|
which = 'pscd'
|
|
|
|
want = 'shor'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
writing_code_infos = writing_code_info
|
|
|
|
|
|
|
|
class text_items(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""text items - """
|
|
|
|
want = 'citm'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
text_item = text_items
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class cubic_meters(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""cubic meters - a volume measurement in SI cubic meters """
|
|
|
|
want = 'cmet'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
cubic_metres = cubic_meters
|
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class centimeters(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""centimeters - a distance measurement in SI centimeters """
|
|
|
|
want = 'cmtr'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
centimetres = centimeters
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class item(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""item - An item of any type """
|
|
|
|
want = 'cobj'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_id(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""id - the unique ID number of this object """
|
|
|
|
which = 'ID '
|
|
|
|
want = 'long'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
items = item
|
|
|
|
|
|
|
|
class C_strings(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""C strings - """
|
|
|
|
want = 'cstr'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
C_string = C_strings
|
|
|
|
|
|
|
|
class text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""text - text with language and style information """
|
|
|
|
want = 'ctxt'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class cubic_inches(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""cubic inches - a volume measurement in Imperial cubic inches """
|
|
|
|
want = 'cuin'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class cubic_yards(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""cubic yards - a distance measurement in Imperial cubic yards """
|
|
|
|
want = 'cyrd'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class December(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""December - the month of December """
|
|
|
|
want = 'dec '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class degrees_Celsius(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""degrees Celsius - a temperature measurement in SI degrees Celsius """
|
|
|
|
want = 'degc'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class degrees_Fahrenheit(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""degrees Fahrenheit - a temperature measurement in degrees Fahrenheit """
|
|
|
|
want = 'degf'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class degrees_Kelvin(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""degrees Kelvin - a temperature measurement in degrees Kelvin """
|
|
|
|
want = 'degk'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class reals(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""reals - """
|
|
|
|
want = 'doub'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
real = reals
|
|
|
|
|
|
|
|
class encoded_strings(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""encoded strings - """
|
|
|
|
want = 'encs'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
encoded_string = encoded_strings
|
|
|
|
|
|
|
|
class constants(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""constants - """
|
|
|
|
want = 'enum'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
constant = constants
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class events(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""events - """
|
|
|
|
want = 'evnt'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
event = events
|
|
|
|
|
|
|
|
class February(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""February - the month of February """
|
|
|
|
want = 'feb '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class feet(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""feet - a distance measurement in Imperial feet """
|
|
|
|
want = 'feet'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class Friday(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Friday - Friday """
|
|
|
|
want = 'fri '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
2003-06-13 11:31:19 -03:00
|
|
|
class file_specification(aetools.ComponentItem):
|
|
|
|
"""file specification - a file specification as used by the operating system """
|
2003-04-12 19:27:11 -03:00
|
|
|
want = 'fss '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-06-13 11:31:19 -03:00
|
|
|
file_specifications = file_specification
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class gallons(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""gallons - a volume measurement in Imperial gallons """
|
|
|
|
want = 'galn'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class grams(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""grams - a mass measurement in SI meters """
|
|
|
|
want = 'gram'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class handlers(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""handlers - """
|
|
|
|
want = 'hand'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
handler = handlers
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class inches(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""inches - a distance measurement in Imperial inches """
|
|
|
|
want = 'inch'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class international_text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""international text - text that begins with a writing code """
|
|
|
|
want = 'itxt'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
international_text = international_text
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class January(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""January - the month of January """
|
|
|
|
want = 'jan '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class July(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""July - the month of July """
|
|
|
|
want = 'jul '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class June(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""June - the month of June """
|
|
|
|
want = 'jun '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class reference_forms(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""reference forms - """
|
|
|
|
want = 'kfrm'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
reference_form = reference_forms
|
|
|
|
|
|
|
|
class kilograms(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""kilograms - a mass measurement in SI kilograms """
|
|
|
|
want = 'kgrm'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class kilometers(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""kilometers - a distance measurement in SI kilometers """
|
|
|
|
want = 'kmtr'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
kilometres = kilometers
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class keystroke(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""keystroke - a press of a key combination on a Macintosh keyboard """
|
|
|
|
want = 'kprs'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_key(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""key - the character for the key was pressed (ignoring modifiers) """
|
|
|
|
which = 'kMsg'
|
|
|
|
want = 'cha '
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_key_kind(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""key kind - the kind of key that was pressed """
|
|
|
|
which = 'kknd'
|
|
|
|
want = 'ekst'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_modifiers(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""modifiers - the modifier keys pressed in combination """
|
|
|
|
which = 'kMod'
|
|
|
|
want = 'eMds'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
keystrokes = keystroke
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class pounds(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""pounds - a weight measurement in SI meters """
|
|
|
|
want = 'lbs '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class date(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""date - Absolute date and time values """
|
|
|
|
want = 'ldt '
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_date_string(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""date string - the date portion of a date-time value as text """
|
|
|
|
which = 'dstr'
|
|
|
|
want = 'TEXT'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_day(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""day - the day of the month of a date """
|
|
|
|
which = 'day '
|
|
|
|
want = 'long'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_month(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""month - the month of a date """
|
|
|
|
which = 'mnth'
|
|
|
|
want = 'mnth'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_time(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""time - the time since midnight of a date """
|
|
|
|
which = 'time'
|
|
|
|
want = 'long'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_time_string(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""time string - the time portion of a date-time value as text """
|
|
|
|
which = 'tstr'
|
|
|
|
want = 'TEXT'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_weekday(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""weekday - the day of a week of a date """
|
|
|
|
which = 'wkdy'
|
|
|
|
want = 'wkdy'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_year(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""year - the year of a date """
|
|
|
|
which = 'year'
|
|
|
|
want = 'long'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
dates = date
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class list(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""list - An ordered collection of items """
|
|
|
|
want = 'list'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_length(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""length - the length of a list """
|
|
|
|
which = 'leng'
|
|
|
|
want = 'long'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_rest(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""rest - all items of the list excluding first """
|
|
|
|
which = 'rest'
|
|
|
|
want = 'list'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_reverse(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""reverse - the items of the list in reverse order """
|
|
|
|
which = 'rvse'
|
|
|
|
want = 'list'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
lists = list
|
|
|
|
|
|
|
|
class liters(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""liters - a volume measurement in SI liters """
|
|
|
|
want = 'litr'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
litres = liters
|
|
|
|
|
|
|
|
class linked_list(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""linked list - An ordered collection of items """
|
|
|
|
want = 'llst'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
linked_lists = linked_list
|
|
|
|
|
|
|
|
class integers(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""integers - """
|
|
|
|
want = 'long'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
integer = integers
|
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class list_or_record(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""list or record - a list or record """
|
|
|
|
want = 'lr '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class list_2c__record_or_text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""list, record or text - a list, record or text """
|
|
|
|
want = 'lrs '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class list_or_string(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""list or string - a list or string """
|
|
|
|
want = 'ls '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class machines(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""machines - """
|
|
|
|
want = 'mach'
|
2003-03-28 18:07:22 -04:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
machine = machines
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class March(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""March - the month of March """
|
|
|
|
want = 'mar '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class May(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""May - the month of May """
|
|
|
|
want = 'may '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class meters(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""meters - a distance measurement in SI meters """
|
|
|
|
want = 'metr'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
metres = meters
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class miles(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""miles - a distance measurement in Imperial miles """
|
|
|
|
want = 'mile'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class months(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""months - """
|
|
|
|
want = 'mnth'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
month = months
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class Monday(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Monday - Monday """
|
|
|
|
want = 'mon '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class missing_values(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""missing values - """
|
|
|
|
want = 'msng'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
missing_value = missing_values
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class number_or_date(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""number or date - a number or date """
|
|
|
|
want = 'nd '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class number_2c__date_or_text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""number, date or text - a number, date or text """
|
|
|
|
want = 'nds '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class numbers(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""numbers - """
|
|
|
|
want = 'nmbr'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
number = numbers
|
|
|
|
|
|
|
|
class November(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""November - the month of November """
|
|
|
|
want = 'nov '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class number_or_string(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""number or string - a number or string """
|
|
|
|
want = 'ns '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class references(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""references - """
|
|
|
|
want = 'obj '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
reference = references
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class October(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""October - the month of October """
|
|
|
|
want = 'oct '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class ounces(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""ounces - a weight measurement in SI meters """
|
|
|
|
want = 'ozs '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class class_(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""class - the type of a value """
|
|
|
|
want = 'pcls'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop__3c_Inheritance_3e_(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""<Inheritance> - inherits some of its properties from this class """
|
|
|
|
which = 'c@#^'
|
|
|
|
want = 'type'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
classes = class_
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class prepositions(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""prepositions - """
|
|
|
|
want = 'prep'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
preposition = prepositions
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class properties(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""properties - """
|
|
|
|
want = 'prop'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
property = properties
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class writing_code(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""writing code - codes that identify the language and script system """
|
|
|
|
want = 'psct'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class Pascal_strings(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Pascal strings - """
|
|
|
|
want = 'pstr'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
Pascal_string = Pascal_strings
|
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class quarts(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""quarts - a volume measurement in Imperial quarts """
|
|
|
|
want = 'qrts'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class data(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""data - an AppleScript raw data object """
|
|
|
|
want = 'rdat'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class records(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""records - """
|
|
|
|
want = 'reco'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
record = records
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class Saturday(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Saturday - Saturday """
|
|
|
|
want = 'sat '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class seconds(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""seconds - more than one second """
|
|
|
|
want = 'scnd'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class script(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""script - An AppleScript script """
|
|
|
|
want = 'scpt'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_name(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""name - the name of the script """
|
|
|
|
which = 'pnam'
|
|
|
|
want = 'TEXT'
|
2003-04-01 18:05:14 -04:00
|
|
|
class _Prop_parent(aetools.NProperty):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""parent - its parent, i.e. the script that will handle events that this script doesn\xd5t """
|
|
|
|
which = 'pare'
|
|
|
|
want = 'scpt'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
scripts = script
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class September(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""September - the month of September """
|
|
|
|
want = 'sep '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class alias_or_string(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""alias or string - an alias or string """
|
|
|
|
want = 'sf '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class sounds(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""sounds - """
|
|
|
|
want = 'snd '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
sound = sounds
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class square_feet(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""square feet - an area measurement in Imperial square feet """
|
|
|
|
want = 'sqft'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class square_kilometers(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""square kilometers - an area measurement in SI square kilometers """
|
|
|
|
want = 'sqkm'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
square_kilometres = square_kilometers
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class square_miles(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""square miles - an area measurement in Imperial square miles """
|
|
|
|
want = 'sqmi'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class square_meters(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""square meters - an area measurement in SI square meters """
|
|
|
|
want = 'sqrm'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
square_metres = square_meters
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class square_yards(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""square yards - an area measurement in Imperial square yards """
|
|
|
|
want = 'sqyd'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class styled_Clipboard_text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""styled Clipboard text - clipboard text with font, size, and style information """
|
|
|
|
want = 'styl'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Clipboard_text = styled_Clipboard_text
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class Sunday(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Sunday - Sunday """
|
|
|
|
want = 'sun '
|
2003-03-30 18:41:53 -04:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class styled_Unicode_text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""styled Unicode text - styled text in the Unicode format """
|
|
|
|
want = 'sutx'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Unicode_text = styled_Unicode_text
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class Thursday(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Thursday - Thursday """
|
|
|
|
want = 'thu '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class Tuesday(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Tuesday - Tuesday """
|
|
|
|
want = 'tue '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class type_class(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""type class - the name of a particular class (or any four-character code) """
|
|
|
|
want = 'type'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class empty_ae_name_(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
""" - the undefined value """
|
|
|
|
want = 'undf'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
class Unicode_text(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Unicode text - text in the Unicode format (cannot be viewed without conversion) """
|
|
|
|
want = 'utxt'
|
2003-03-30 18:41:53 -04:00
|
|
|
|
|
|
|
Unicode_text = Unicode_text
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class vector(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""vector - An ordered collection of items """
|
|
|
|
want = 'vect'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
vectors = vector
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class version(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""version - a version value """
|
|
|
|
want = 'vers'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class Wednesday(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""Wednesday - Wednesday """
|
|
|
|
want = 'wed '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class weekdays(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""weekdays - """
|
|
|
|
want = 'wkdy'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
weekday = weekdays
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
class yards(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""yards - a distance measurement in Imperial yards """
|
|
|
|
want = 'yard'
|
2000-08-17 19:14:57 -03:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
class zones(aetools.ComponentItem):
|
2003-04-12 19:27:11 -03:00
|
|
|
"""zones - """
|
|
|
|
want = 'zone'
|
2003-03-28 18:07:22 -04:00
|
|
|
|
2003-03-30 18:41:53 -04:00
|
|
|
zone = zones
|
|
|
|
anything._superclassnames = []
|
|
|
|
anything._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
anything._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
pictures._superclassnames = []
|
|
|
|
pictures._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
pictures._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
styled_text._superclassnames = []
|
|
|
|
styled_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
styled_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
styled_text._superclassnames = []
|
|
|
|
styled_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
styled_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
strings._superclassnames = []
|
|
|
|
strings._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
strings._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-06-13 11:31:19 -03:00
|
|
|
alias._superclassnames = []
|
|
|
|
alias._privpropdict = {
|
|
|
|
'POSIX_path' : _Prop_POSIX_path,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-06-13 11:31:19 -03:00
|
|
|
alias._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
April._superclassnames = []
|
|
|
|
April._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
April._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
August._superclassnames = []
|
|
|
|
August._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
August._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
booleans._superclassnames = []
|
|
|
|
booleans._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
booleans._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
RGB_colors._superclassnames = []
|
|
|
|
RGB_colors._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
RGB_colors._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
application._superclassnames = []
|
|
|
|
application._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'AppleScript' : _Prop_AppleScript,
|
|
|
|
'days' : _Prop_days,
|
|
|
|
'hours' : _Prop_hours,
|
|
|
|
'minutes' : _Prop_minutes,
|
|
|
|
'pi' : _Prop_pi,
|
|
|
|
'print_depth' : _Prop_print_depth,
|
|
|
|
'print_length' : _Prop_print_length,
|
|
|
|
'result' : _Prop_result,
|
|
|
|
'return_' : _Prop_return_,
|
|
|
|
'space' : _Prop_space,
|
|
|
|
'tab' : _Prop_tab,
|
|
|
|
'text_item_delimiters' : _Prop_text_item_delimiters,
|
|
|
|
'weeks' : _Prop_weeks,
|
2003-03-30 18:41:53 -04:00
|
|
|
}
|
|
|
|
application._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
upper_case._superclassnames = []
|
|
|
|
upper_case._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
upper_case._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
cubic_centimeters._superclassnames = []
|
|
|
|
cubic_centimeters._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
cubic_centimeters._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
cubic_feet._superclassnames = []
|
|
|
|
cubic_feet._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
cubic_feet._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
characters._superclassnames = []
|
|
|
|
characters._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
characters._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
writing_code_info._superclassnames = []
|
|
|
|
writing_code_info._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'language_code' : _Prop_language_code,
|
|
|
|
'script_code' : _Prop_script_code,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
writing_code_info._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
text_items._superclassnames = []
|
|
|
|
text_items._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
text_items._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
cubic_meters._superclassnames = []
|
|
|
|
cubic_meters._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
cubic_meters._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
centimeters._superclassnames = []
|
|
|
|
centimeters._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
centimeters._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
item._superclassnames = []
|
|
|
|
item._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'id' : _Prop_id,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
item._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
C_strings._superclassnames = []
|
|
|
|
C_strings._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
C_strings._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
text._superclassnames = []
|
|
|
|
text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
cubic_inches._superclassnames = []
|
|
|
|
cubic_inches._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
cubic_inches._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
cubic_yards._superclassnames = []
|
|
|
|
cubic_yards._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
cubic_yards._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
December._superclassnames = []
|
|
|
|
December._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
December._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
degrees_Celsius._superclassnames = []
|
|
|
|
degrees_Celsius._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
degrees_Celsius._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
degrees_Fahrenheit._superclassnames = []
|
|
|
|
degrees_Fahrenheit._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
degrees_Fahrenheit._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
degrees_Kelvin._superclassnames = []
|
|
|
|
degrees_Kelvin._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
degrees_Kelvin._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
reals._superclassnames = []
|
|
|
|
reals._privpropdict = {
|
|
|
|
}
|
|
|
|
reals._privelemdict = {
|
|
|
|
}
|
|
|
|
encoded_strings._superclassnames = []
|
|
|
|
encoded_strings._privpropdict = {
|
|
|
|
}
|
|
|
|
encoded_strings._privelemdict = {
|
|
|
|
}
|
|
|
|
constants._superclassnames = []
|
|
|
|
constants._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
constants._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
events._superclassnames = []
|
|
|
|
events._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
events._privelemdict = {
|
|
|
|
}
|
|
|
|
February._superclassnames = []
|
|
|
|
February._privpropdict = {
|
|
|
|
}
|
|
|
|
February._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
feet._superclassnames = []
|
|
|
|
feet._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
feet._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Friday._superclassnames = []
|
|
|
|
Friday._privpropdict = {
|
|
|
|
}
|
|
|
|
Friday._privelemdict = {
|
|
|
|
}
|
2003-06-13 11:31:19 -03:00
|
|
|
file_specification._superclassnames = []
|
|
|
|
file_specification._privpropdict = {
|
|
|
|
'POSIX_path' : _Prop_POSIX_path,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-06-13 11:31:19 -03:00
|
|
|
file_specification._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
gallons._superclassnames = []
|
|
|
|
gallons._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
gallons._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
grams._superclassnames = []
|
|
|
|
grams._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
grams._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
handlers._superclassnames = []
|
|
|
|
handlers._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
handlers._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
inches._superclassnames = []
|
|
|
|
inches._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
inches._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
international_text._superclassnames = []
|
|
|
|
international_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
international_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
international_text._superclassnames = []
|
|
|
|
international_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
international_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
January._superclassnames = []
|
|
|
|
January._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
January._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
July._superclassnames = []
|
|
|
|
July._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
July._privelemdict = {
|
|
|
|
}
|
|
|
|
June._superclassnames = []
|
|
|
|
June._privpropdict = {
|
|
|
|
}
|
|
|
|
June._privelemdict = {
|
|
|
|
}
|
|
|
|
reference_forms._superclassnames = []
|
|
|
|
reference_forms._privpropdict = {
|
|
|
|
}
|
|
|
|
reference_forms._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
kilograms._superclassnames = []
|
|
|
|
kilograms._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
kilograms._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
kilometers._superclassnames = []
|
|
|
|
kilometers._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
kilometers._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
keystroke._superclassnames = []
|
|
|
|
keystroke._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'key' : _Prop_key,
|
|
|
|
'key_kind' : _Prop_key_kind,
|
|
|
|
'modifiers' : _Prop_modifiers,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
keystroke._privelemdict = {
|
|
|
|
}
|
|
|
|
pounds._superclassnames = []
|
|
|
|
pounds._privpropdict = {
|
|
|
|
}
|
|
|
|
pounds._privelemdict = {
|
|
|
|
}
|
|
|
|
date._superclassnames = []
|
|
|
|
date._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'date_string' : _Prop_date_string,
|
|
|
|
'day' : _Prop_day,
|
|
|
|
'month' : _Prop_month,
|
|
|
|
'time' : _Prop_time,
|
|
|
|
'time_string' : _Prop_time_string,
|
|
|
|
'weekday' : _Prop_weekday,
|
|
|
|
'year' : _Prop_year,
|
2003-03-30 18:41:53 -04:00
|
|
|
}
|
|
|
|
date._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
list._superclassnames = []
|
|
|
|
list._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'length' : _Prop_length,
|
|
|
|
'rest' : _Prop_rest,
|
|
|
|
'reverse' : _Prop_reverse,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
list._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
liters._superclassnames = []
|
|
|
|
liters._privpropdict = {
|
|
|
|
}
|
|
|
|
liters._privelemdict = {
|
|
|
|
}
|
|
|
|
linked_list._superclassnames = []
|
|
|
|
linked_list._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'length' : _Prop_length,
|
2003-03-30 18:41:53 -04:00
|
|
|
}
|
|
|
|
linked_list._privelemdict = {
|
|
|
|
}
|
|
|
|
integers._superclassnames = []
|
|
|
|
integers._privpropdict = {
|
|
|
|
}
|
|
|
|
integers._privelemdict = {
|
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
list_or_record._superclassnames = []
|
|
|
|
list_or_record._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
list_or_record._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
list_2c__record_or_text._superclassnames = []
|
|
|
|
list_2c__record_or_text._privpropdict = {
|
|
|
|
}
|
|
|
|
list_2c__record_or_text._privelemdict = {
|
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
list_or_string._superclassnames = []
|
|
|
|
list_or_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
list_or_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
machines._superclassnames = []
|
|
|
|
machines._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
machines._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
March._superclassnames = []
|
|
|
|
March._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
March._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
May._superclassnames = []
|
|
|
|
May._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
May._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
meters._superclassnames = []
|
|
|
|
meters._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
meters._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
miles._superclassnames = []
|
|
|
|
miles._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
miles._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
months._superclassnames = []
|
|
|
|
months._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
months._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Monday._superclassnames = []
|
|
|
|
Monday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Monday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
missing_values._superclassnames = []
|
|
|
|
missing_values._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
missing_values._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
number_or_date._superclassnames = []
|
|
|
|
number_or_date._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
number_or_date._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
number_2c__date_or_text._superclassnames = []
|
|
|
|
number_2c__date_or_text._privpropdict = {
|
|
|
|
}
|
|
|
|
number_2c__date_or_text._privelemdict = {
|
|
|
|
}
|
|
|
|
numbers._superclassnames = []
|
|
|
|
numbers._privpropdict = {
|
|
|
|
}
|
|
|
|
numbers._privelemdict = {
|
|
|
|
}
|
|
|
|
November._superclassnames = []
|
|
|
|
November._privpropdict = {
|
|
|
|
}
|
|
|
|
November._privelemdict = {
|
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
number_or_string._superclassnames = []
|
|
|
|
number_or_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
number_or_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
references._superclassnames = []
|
|
|
|
references._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
references._privelemdict = {
|
|
|
|
}
|
|
|
|
October._superclassnames = []
|
|
|
|
October._privpropdict = {
|
|
|
|
}
|
|
|
|
October._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
ounces._superclassnames = []
|
|
|
|
ounces._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
ounces._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
class_._superclassnames = ['type_class']
|
|
|
|
class_._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
class_._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
prepositions._superclassnames = []
|
|
|
|
prepositions._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
prepositions._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
properties._superclassnames = []
|
|
|
|
properties._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
properties._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
writing_code._superclassnames = []
|
|
|
|
writing_code._privpropdict = {
|
|
|
|
}
|
|
|
|
writing_code._privelemdict = {
|
|
|
|
}
|
|
|
|
Pascal_strings._superclassnames = []
|
|
|
|
Pascal_strings._privpropdict = {
|
|
|
|
}
|
|
|
|
Pascal_strings._privelemdict = {
|
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
quarts._superclassnames = []
|
|
|
|
quarts._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
quarts._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
data._superclassnames = []
|
|
|
|
data._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
data._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
records._superclassnames = []
|
|
|
|
records._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
records._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Saturday._superclassnames = []
|
|
|
|
Saturday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Saturday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
seconds._superclassnames = []
|
|
|
|
seconds._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
seconds._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
script._superclassnames = []
|
|
|
|
script._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'name' : _Prop_name,
|
|
|
|
'parent' : _Prop_parent,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
script._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
September._superclassnames = []
|
|
|
|
September._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
September._privelemdict = {
|
|
|
|
}
|
|
|
|
alias_or_string._superclassnames = []
|
|
|
|
alias_or_string._privpropdict = {
|
|
|
|
}
|
|
|
|
alias_or_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
sounds._superclassnames = []
|
|
|
|
sounds._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
sounds._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_feet._superclassnames = []
|
|
|
|
square_feet._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_feet._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
square_kilometers._superclassnames = []
|
|
|
|
square_kilometers._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
square_kilometers._privelemdict = {
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_miles._superclassnames = []
|
|
|
|
square_miles._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_miles._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
square_meters._superclassnames = []
|
|
|
|
square_meters._privpropdict = {
|
|
|
|
}
|
|
|
|
square_meters._privelemdict = {
|
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
square_yards._superclassnames = []
|
|
|
|
square_yards._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
square_yards._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Clipboard_text._superclassnames = []
|
|
|
|
styled_Clipboard_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Clipboard_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Clipboard_text._superclassnames = []
|
|
|
|
styled_Clipboard_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Clipboard_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Sunday._superclassnames = []
|
|
|
|
Sunday._privpropdict = {
|
|
|
|
}
|
|
|
|
Sunday._privelemdict = {
|
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Unicode_text._superclassnames = []
|
|
|
|
styled_Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Unicode_text._superclassnames = []
|
|
|
|
styled_Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
styled_Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Thursday._superclassnames = []
|
|
|
|
Thursday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Thursday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Tuesday._superclassnames = []
|
|
|
|
Tuesday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Tuesday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
type_class._superclassnames = []
|
|
|
|
type_class._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
type_class._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
empty_ae_name_._superclassnames = []
|
|
|
|
empty_ae_name_._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
empty_ae_name_._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Unicode_text._superclassnames = []
|
|
|
|
Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Unicode_text._superclassnames = []
|
|
|
|
Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
vector._superclassnames = []
|
|
|
|
vector._privpropdict = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'length' : _Prop_length,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
vector._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
version._superclassnames = []
|
|
|
|
version._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
version._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Wednesday._superclassnames = []
|
|
|
|
Wednesday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
Wednesday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
weekdays._superclassnames = []
|
|
|
|
weekdays._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
weekdays._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
yards._superclassnames = []
|
|
|
|
yards._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-28 18:07:22 -04:00
|
|
|
yards._privelemdict = {
|
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
zones._superclassnames = []
|
|
|
|
zones._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2003-03-30 18:41:53 -04:00
|
|
|
zones._privelemdict = {
|
2003-03-28 18:07:22 -04:00
|
|
|
}
|
|
|
|
_Enum_boov = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'true' : 'true', # the true boolean value
|
|
|
|
'false' : 'fals', # the false boolean value
|
2003-03-28 18:07:22 -04:00
|
|
|
}
|
|
|
|
|
2000-08-17 19:14:57 -03:00
|
|
|
_Enum_cons = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'case' : 'case', # case
|
|
|
|
'diacriticals' : 'diac', # diacriticals
|
|
|
|
'white_space' : 'whit', # white space
|
|
|
|
'hyphens' : 'hyph', # hyphens
|
|
|
|
'expansion' : 'expa', # expansion
|
|
|
|
'punctuation' : 'punc', # punctuation
|
|
|
|
'application_responses' : 'rmte', # remote event replies
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
_Enum_eMds = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'option_down' : 'Kopt', #
|
|
|
|
'command_down' : 'Kcmd', #
|
|
|
|
'control_down' : 'Kctl', #
|
|
|
|
'shift_down' : 'Ksft', #
|
|
|
|
'caps_lock_down' : 'Kclk', #
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
_Enum_ekst = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'escape_key' : 'ks5\x00', #
|
|
|
|
'delete_key' : 'ks3\x00', #
|
|
|
|
'tab_key' : 'ks0\x00', #
|
|
|
|
'return_key' : 'ks$\x00', #
|
|
|
|
'clear_key' : 'ksG\x00', #
|
|
|
|
'enter_key' : 'ksL\x00', #
|
|
|
|
'up_arrow_key' : 'ks~\x00', #
|
|
|
|
'down_arrow_key' : 'ks}\x00', #
|
|
|
|
'left_arrow_key' : 'ks{\x00', #
|
|
|
|
'right_arrow_key' : 'ks|\x00', #
|
|
|
|
'help_key' : 'ksr\x00', #
|
|
|
|
'home_key' : 'kss\x00', #
|
|
|
|
'page_up_key' : 'kst\x00', #
|
|
|
|
'page_down_key' : 'ksy\x00', #
|
|
|
|
'forward_del_key' : 'ksu\x00', #
|
|
|
|
'end_key' : 'ksw\x00', #
|
|
|
|
'F1_key' : 'ksz\x00', #
|
|
|
|
'F2_key' : 'ksx\x00', #
|
|
|
|
'F3_key' : 'ksc\x00', #
|
|
|
|
'F4_key' : 'ksv\x00', #
|
|
|
|
'F5_key' : 'ks`\x00', #
|
|
|
|
'F6_key' : 'ksa\x00', #
|
|
|
|
'F7_key' : 'ksb\x00', #
|
|
|
|
'F8_key' : 'ksd\x00', #
|
|
|
|
'F9_key' : 'kse\x00', #
|
|
|
|
'F10_key' : 'ksm\x00', #
|
|
|
|
'F11_key' : 'ksg\x00', #
|
|
|
|
'F12_key' : 'kso\x00', #
|
|
|
|
'F13_key' : 'ksi\x00', #
|
|
|
|
'F14_key' : 'ksk\x00', #
|
|
|
|
'F15_key' : 'ksq\x00', #
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
|
|
|
|
2003-03-28 18:07:22 -04:00
|
|
|
_Enum_misc = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'current_application' : 'cura', # the current application
|
2003-03-28 18:07:22 -04:00
|
|
|
}
|
|
|
|
|
2000-08-17 19:14:57 -03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Indices of types declared in this module
|
|
|
|
#
|
|
|
|
_classdeclarations = {
|
2003-04-12 19:27:11 -03:00
|
|
|
'****' : anything,
|
|
|
|
'PICT' : pictures,
|
|
|
|
'STXT' : styled_text,
|
|
|
|
'TEXT' : strings,
|
2003-06-13 11:31:19 -03:00
|
|
|
'alis' : alias,
|
2003-04-12 19:27:11 -03:00
|
|
|
'apr ' : April,
|
|
|
|
'aug ' : August,
|
|
|
|
'bool' : booleans,
|
|
|
|
'cRGB' : RGB_colors,
|
|
|
|
'capp' : application,
|
|
|
|
'case' : upper_case,
|
|
|
|
'ccmt' : cubic_centimeters,
|
|
|
|
'cfet' : cubic_feet,
|
|
|
|
'cha ' : characters,
|
|
|
|
'citl' : writing_code_info,
|
|
|
|
'citm' : text_items,
|
|
|
|
'cmet' : cubic_meters,
|
|
|
|
'cmtr' : centimeters,
|
|
|
|
'cobj' : item,
|
|
|
|
'cstr' : C_strings,
|
|
|
|
'ctxt' : text,
|
|
|
|
'cuin' : cubic_inches,
|
|
|
|
'cyrd' : cubic_yards,
|
|
|
|
'dec ' : December,
|
|
|
|
'degc' : degrees_Celsius,
|
|
|
|
'degf' : degrees_Fahrenheit,
|
|
|
|
'degk' : degrees_Kelvin,
|
|
|
|
'doub' : reals,
|
|
|
|
'encs' : encoded_strings,
|
|
|
|
'enum' : constants,
|
|
|
|
'evnt' : events,
|
|
|
|
'feb ' : February,
|
|
|
|
'feet' : feet,
|
|
|
|
'fri ' : Friday,
|
2003-06-13 11:31:19 -03:00
|
|
|
'fss ' : file_specification,
|
2003-04-12 19:27:11 -03:00
|
|
|
'galn' : gallons,
|
|
|
|
'gram' : grams,
|
|
|
|
'hand' : handlers,
|
|
|
|
'inch' : inches,
|
|
|
|
'itxt' : international_text,
|
|
|
|
'jan ' : January,
|
|
|
|
'jul ' : July,
|
|
|
|
'jun ' : June,
|
|
|
|
'kfrm' : reference_forms,
|
|
|
|
'kgrm' : kilograms,
|
|
|
|
'kmtr' : kilometers,
|
|
|
|
'kprs' : keystroke,
|
|
|
|
'lbs ' : pounds,
|
|
|
|
'ldt ' : date,
|
|
|
|
'list' : list,
|
|
|
|
'litr' : liters,
|
|
|
|
'llst' : linked_list,
|
|
|
|
'long' : integers,
|
|
|
|
'lr ' : list_or_record,
|
|
|
|
'lrs ' : list_2c__record_or_text,
|
|
|
|
'ls ' : list_or_string,
|
|
|
|
'mach' : machines,
|
|
|
|
'mar ' : March,
|
|
|
|
'may ' : May,
|
|
|
|
'metr' : meters,
|
|
|
|
'mile' : miles,
|
|
|
|
'mnth' : months,
|
|
|
|
'mon ' : Monday,
|
|
|
|
'msng' : missing_values,
|
|
|
|
'nd ' : number_or_date,
|
|
|
|
'nds ' : number_2c__date_or_text,
|
|
|
|
'nmbr' : numbers,
|
|
|
|
'nov ' : November,
|
|
|
|
'ns ' : number_or_string,
|
|
|
|
'obj ' : references,
|
|
|
|
'oct ' : October,
|
|
|
|
'ozs ' : ounces,
|
|
|
|
'pcls' : class_,
|
|
|
|
'prep' : prepositions,
|
|
|
|
'prop' : properties,
|
|
|
|
'psct' : writing_code,
|
|
|
|
'pstr' : Pascal_strings,
|
|
|
|
'qrts' : quarts,
|
|
|
|
'rdat' : data,
|
|
|
|
'reco' : records,
|
|
|
|
'sat ' : Saturday,
|
|
|
|
'scnd' : seconds,
|
|
|
|
'scpt' : script,
|
|
|
|
'sep ' : September,
|
|
|
|
'sf ' : alias_or_string,
|
|
|
|
'snd ' : sounds,
|
|
|
|
'sqft' : square_feet,
|
|
|
|
'sqkm' : square_kilometers,
|
|
|
|
'sqmi' : square_miles,
|
|
|
|
'sqrm' : square_meters,
|
|
|
|
'sqyd' : square_yards,
|
|
|
|
'styl' : styled_Clipboard_text,
|
|
|
|
'sun ' : Sunday,
|
|
|
|
'sutx' : styled_Unicode_text,
|
|
|
|
'thu ' : Thursday,
|
|
|
|
'tue ' : Tuesday,
|
|
|
|
'type' : type_class,
|
|
|
|
'undf' : empty_ae_name_,
|
|
|
|
'utxt' : Unicode_text,
|
|
|
|
'vect' : vector,
|
|
|
|
'vers' : version,
|
|
|
|
'wed ' : Wednesday,
|
|
|
|
'wkdy' : weekdays,
|
|
|
|
'yard' : yards,
|
|
|
|
'zone' : zones,
|
|
|
|
}
|
|
|
|
|
|
|
|
_propdeclarations = {
|
|
|
|
'ID ' : _Prop_id,
|
|
|
|
'ascr' : _Prop_AppleScript,
|
|
|
|
'c@#^' : _Prop__3c_Inheritance_3e_,
|
|
|
|
'day ' : _Prop_day,
|
|
|
|
'days' : _Prop_days,
|
|
|
|
'dstr' : _Prop_date_string,
|
|
|
|
'hour' : _Prop_hours,
|
|
|
|
'kMod' : _Prop_modifiers,
|
|
|
|
'kMsg' : _Prop_key,
|
|
|
|
'kknd' : _Prop_key_kind,
|
|
|
|
'leng' : _Prop_length,
|
|
|
|
'min ' : _Prop_minutes,
|
|
|
|
'mnth' : _Prop_month,
|
|
|
|
'pare' : _Prop_parent,
|
|
|
|
'pi ' : _Prop_pi,
|
|
|
|
'plcd' : _Prop_language_code,
|
|
|
|
'pnam' : _Prop_name,
|
|
|
|
'prdp' : _Prop_print_depth,
|
|
|
|
'prln' : _Prop_print_length,
|
|
|
|
'pscd' : _Prop_script_code,
|
2003-06-13 11:31:19 -03:00
|
|
|
'psxp' : _Prop_POSIX_path,
|
2003-04-12 19:27:11 -03:00
|
|
|
'rest' : _Prop_rest,
|
|
|
|
'ret ' : _Prop_return_,
|
|
|
|
'rslt' : _Prop_result,
|
|
|
|
'rvse' : _Prop_reverse,
|
|
|
|
'spac' : _Prop_space,
|
|
|
|
'tab ' : _Prop_tab,
|
|
|
|
'time' : _Prop_time,
|
|
|
|
'tstr' : _Prop_time_string,
|
|
|
|
'txdl' : _Prop_text_item_delimiters,
|
|
|
|
'week' : _Prop_weeks,
|
|
|
|
'wkdy' : _Prop_weekday,
|
|
|
|
'year' : _Prop_year,
|
|
|
|
}
|
|
|
|
|
|
|
|
_compdeclarations = {
|
|
|
|
}
|
|
|
|
|
|
|
|
_enumdeclarations = {
|
|
|
|
'boov' : _Enum_boov,
|
|
|
|
'cons' : _Enum_cons,
|
|
|
|
'eMds' : _Enum_eMds,
|
|
|
|
'ekst' : _Enum_ekst,
|
|
|
|
'misc' : _Enum_misc,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|