diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-02-25 15:40:35 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-02-25 15:40:35 (GMT) |
commit | a2139fef94c0f94bb897a62f4e2c53f40eb40cc4 (patch) | |
tree | 7a5b1646a79fb78449c298b79432da1c90ec65fa /Mac/Demo/example2.html | |
parent | b92dce38e7834dcde4f450c89da1c10f81a6d1a0 (diff) | |
download | cpython-a2139fef94c0f94bb897a62f4e2c53f40eb40cc4.zip cpython-a2139fef94c0f94bb897a62f4e2c53f40eb40cc4.tar.gz cpython-a2139fef94c0f94bb897a62f4e2c53f40eb40cc4.tar.bz2 |
Added (minimal) documentation on how to build standalone applications
with Python.
Updated various things (versions of libraries used, urls).
Diffstat (limited to 'Mac/Demo/example2.html')
-rw-r--r-- | Mac/Demo/example2.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Mac/Demo/example2.html b/Mac/Demo/example2.html index 84c766f..95e2d0a 100644 --- a/Mac/Demo/example2.html +++ b/Mac/Demo/example2.html @@ -134,16 +134,20 @@ nothing has changed. <p> Now let us try to turn the python script into an applet, a standalone application. This will <em>not</em> work if you have the "classic 68k" -Python distribution, only if you have the cfm68k or PPC distribution. +Python distribution, only if you have the cfm68k or PPC distribution. + +<blockquote> Actually, "standalone" is probably not the correct term here, since an applet does still depend on a lot of the python environment: the PythonCore shared library, the Python Preferences file, the python Lib folder and any other modules that the main module depends on. It is -possible to get rid of all these dependencies except for the dependency -on PythonCore, but at the moment that is still quite difficult so we -will ignore that possibility for now. By standalone we mean here that +possible to get rid of all these dependencies and create true standalone +applications in Python, but this is a bit difficult. See <a href="standalone.html"> +Standalone Applications in Python</a> for details. For this +document, by standalone we mean here that the script has the look-and-feel of an application, including the -ability to have its own document types, be droppable, etc. <p> +ability to have its own document types, be droppable, etc. +</blockquote> The easiest way to create an applet is to take your source file and drop it onto "BuildApplet", located in the Python home |