diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-17 22:15:41 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-17 22:15:41 (GMT) |
commit | 47ff247e4b71b7341533635bfaf18a29389b024c (patch) | |
tree | 417fb03e79ce2bd85295159601c3946c1671fc9a /Mac/Lib/lib-scriptpackages/Netscape/__init__.py | |
parent | ff792c26880306f22a5e62edc4609df5072e868c (diff) | |
download | cpython-47ff247e4b71b7341533635bfaf18a29389b024c.zip cpython-47ff247e4b71b7341533635bfaf18a29389b024c.tar.gz cpython-47ff247e4b71b7341533635bfaf18a29389b024c.tar.bz2 |
Package with suites for talking to netscape.
Diffstat (limited to 'Mac/Lib/lib-scriptpackages/Netscape/__init__.py')
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Netscape/__init__.py | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/Mac/Lib/lib-scriptpackages/Netscape/__init__.py b/Mac/Lib/lib-scriptpackages/Netscape/__init__.py new file mode 100644 index 0000000..91b97f6 --- /dev/null +++ b/Mac/Lib/lib-scriptpackages/Netscape/__init__.py @@ -0,0 +1,55 @@ +""" +Package generated from Macintosh HD:Internet:Internet-programma's:Netscape Communicator-map:Netscape Communicator +Resource aete resid 0 +""" +import aetools +import Required_suite +import Standard_Suite +import Standard_URL_suite +import WorldWideWeb_suite +import Mozilla_suite +import PowerPlant +import Text + + +_code_to_module = { + 'reqd' : Required_suite, + 'CoRe' : Standard_Suite, + 'GURL' : Standard_URL_suite, + 'WWW!' : WorldWideWeb_suite, + 'MOSS' : Mozilla_suite, + 'ppnt' : PowerPlant, + 'TEXT' : Text, +} + + + +_code_to_fullname = { + 'reqd' : 'Netscape.Required_suite', + 'CoRe' : 'Netscape.Standard_Suite', + 'GURL' : 'Netscape.Standard_URL_suite', + 'WWW!' : 'Netscape.WorldWideWeb_suite', + 'MOSS' : 'Netscape.Mozilla_suite', + 'ppnt' : 'Netscape.PowerPlant', + 'TEXT' : 'Netscape.Text', +} + +from Required_suite import * +from Standard_Suite import * +from Standard_URL_suite import * +from WorldWideWeb_suite import * +from Mozilla_suite import * +from PowerPlant import * +from Text import * + + +class Netscape(Required_suite_Events, + Standard_Suite_Events, + Standard_URL_suite_Events, + WorldWideWeb_suite_Events, + Mozilla_suite_Events, + PowerPlant_Events, + Text_Events, + aetools.TalkTo): + _signature = 'MOSS' + |