diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-17 12:39:12 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-17 12:39:12 (GMT) |
commit | ef5cd05c3d68137a59a84acd418342532e3940c6 (patch) | |
tree | 544f8c9b00c6eae068d570ccd5f4025b6c242dd9 /Mac/Demo/cgi.html | |
parent | 4cb945454a91188823fd289a13e417bdd20050e2 (diff) | |
download | cpython-ef5cd05c3d68137a59a84acd418342532e3940c6.zip cpython-ef5cd05c3d68137a59a84acd418342532e3940c6.tar.gz cpython-ef5cd05c3d68137a59a84acd418342532e3940c6.tar.bz2 |
Calling Application._quit() is now preferred over raising self.
Diffstat (limited to 'Mac/Demo/cgi.html')
-rw-r--r-- | Mac/Demo/cgi.html | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Mac/Demo/cgi.html b/Mac/Demo/cgi.html index 3932b28..c2369cf 100644 --- a/Mac/Demo/cgi.html +++ b/Mac/Demo/cgi.html @@ -30,11 +30,6 @@ This file contains two classes, <code>MiniApplication</code> and <code>AEServer< MiniApplication is a tiny replacement for <code>FrameWork.Application</code>, suitable if your application does not need windows and such. -<blockquote>Actually, Framework.Application has a problem for AE Servers, -due to the way it expects to be quit through an exception, and raising an exception -while inside an Apple Event handler is a very bad idea. This will be fixed. -</blockquote> - AEServer is a bit of glue that does part of the appleevent decoding for you. You call <code>installaehandler</code> passing it the class and id (4-char strings) of the event you have a handler for and the handler callback routine. When the @@ -45,7 +40,7 @@ suites provide. <p> You can test AEServer by double-clicking it. It will react to the standard run/open/print/quit OSA commands. If it is running as a normal python script and you -drag a file onto the interpreter the script will tell you what event is got. <p> +drag a file onto the interpreter the script will tell you what event it got. <p> <h2>A Minimal CGI script</h2> |