Metadata-Version: 1.1
Name: zope.app.pythonpage
Version: 3.5.1
Summary: Python Page -- Zope 3 Content Components
Home-page: http://pypi.python.org/pypi/zope.app.pythonpage
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: Python Page provides the user with a content object that interprets
        Python in content space.
        
        
        Detailed Dcoumentation
        ----------------------
        
        
        ===========
        Python Page
        ===========
        
        Python Page provides the user with a content object that interprets
        Python in content space.  To save typing and useless messing with
        output, any free-standing string and print statement are considered
        for output; see the example below.
        
        
        Example
        -------
        
        Create a new content type called "Python Page" and enter the following
        code example::
        
          '''
          <html>
            <body>
              <ul>
          '''
        
          import time
          print time.asctime()
        
          '''
              </ul>
            </body>
          </html>
          '''
        
        
        =======
        CHANGES
        =======
        
        3.5.1 (2009-08-15)
        ------------------
        
        - Fixed a spurious test failure when run with with Python 2.6
        
        3.5.0 (2009-02-01)
        ------------------
        
        - Replace ``zope.app.container`` with ``zope.container``.
        
        3.4.1 (2007-07-30)
        ------------------
        
        - Get rid of zope.app.zapi as a dependency.
          See https://bugs.launchpad.net/zope3/+bug/219302
        
        - Fix deprecation warning in zope/app/pythonpage/browser.py: zope.app.i18n
          was moved to zope.i18nmessageid.
        
        3.4.0 (2007-10-24)
        ------------------
        
        - Initial release independent of the main Zope tree.
        
Keywords: zope3 python page content component
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
