diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-28 22:07:22 (GMT) |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-28 22:07:22 (GMT) |
| commit | 7377bec6ae20e2a3b83f7084bc98af47e5bd3886 (patch) | |
| tree | fef9adf10767b4f12a5918345a392cda9eb67f04 /Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py | |
| parent | 03b9c91afff90cd8ac2e0b84f486d0f2ebf4e549 (diff) | |
| download | cpython-7377bec6ae20e2a3b83f7084bc98af47e5bd3886.zip cpython-7377bec6ae20e2a3b83f7084bc98af47e5bd3886.tar.gz cpython-7377bec6ae20e2a3b83f7084bc98af47e5bd3886.tar.bz2 | |
Regenerated (from resource files) with sorting version of gensuitemodule.
This is a first step towards regenerating the modules with newer, MacOSX,
versions of these programs, and using the programmatic interface to
get at the terminology in stead of poking in resource files.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py')
| -rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py b/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py index b1cc8ee..d69b987 100644 --- a/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py +++ b/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py @@ -12,21 +12,20 @@ _code = 'ppnt' class PowerPlant_Events: - _argmap_select = { - 'data' : 'data', + _argmap_SwitchTellTarget = { + 'to' : 'data', } - def select(self, _object, _attributes={}, **_arguments): - """select: Sets the present selection - Required argument: object to select or container of sub-objects to select - Keyword argument data: sub-object(s) to select + def SwitchTellTarget(self, _no_object=None, _attributes={}, **_arguments): + """SwitchTellTarget: Makes an object the \xd2focus\xd3 of AppleEvents + Keyword argument to: reference to new focus of AppleEvents Keyword argument _attributes: AppleEvent attribute dictionary """ - _code = 'misc' - _subcode = 'slct' + _code = 'ppnt' + _subcode = 'sttg' - aetools.keysubst(_arguments, self._argmap_select) - _arguments['----'] = _object + aetools.keysubst(_arguments, self._argmap_SwitchTellTarget) + if _no_object != None: raise TypeError, 'No direct arg expected' _reply, _arguments, _attributes = self.send(_code, _subcode, @@ -37,20 +36,21 @@ class PowerPlant_Events: if _arguments.has_key('----'): return _arguments['----'] - _argmap_SwitchTellTarget = { - 'to' : 'data', + _argmap_select = { + 'data' : 'data', } - def SwitchTellTarget(self, _no_object=None, _attributes={}, **_arguments): - """SwitchTellTarget: Makes an object the \xd2focus\xd3 of AppleEvents - Keyword argument to: reference to new focus of AppleEvents + def select(self, _object, _attributes={}, **_arguments): + """select: Sets the present selection + Required argument: object to select or container of sub-objects to select + Keyword argument data: sub-object(s) to select Keyword argument _attributes: AppleEvent attribute dictionary """ - _code = 'ppnt' - _subcode = 'sttg' + _code = 'misc' + _subcode = 'slct' - aetools.keysubst(_arguments, self._argmap_SwitchTellTarget) - if _no_object != None: raise TypeError, 'No direct arg expected' + aetools.keysubst(_arguments, self._argmap_select) + _arguments['----'] = _object _reply, _arguments, _attributes = self.send(_code, _subcode, |
