Metadata-Version: 1.0
Name: zope.app.boston
Version: 3.5.0
Summary: Boston -- A Zope 3 ZMI Skin
Home-page: http://cheeseshop.python.org/pypi/zope.app.boston
Author: Zope Corporation and Contributors
Author-email: zope3-dev@zope.org
License: ZPL 2.1
Description: The Boston skin is a new UI for the Zope Management Interface called ZMI.
        
        
        Detailed Dcoumentation
        ----------------------
        
        
        ===============
        The Boston Skin
        ===============
        
        The Boston skin is a new UI for the Zope Management Interface called ZMI.
        Feel free to write comments, ideas and wishes to the zope3-dev mailinglist.
        
        >>> from zope.testbrowser.testing import Browser
        >>> browser = Browser()
        >>> browser.addHeader('Authorization', 'Basic mgr:mgrpw')
        >>> browser.handleErrors = False
        
        Check if the css viewlet is available in the Boston skin.
        
        >>> browser.open('http://localhost/++skin++Boston/@@contents.html')
        >>> browser.url
        'http://localhost/++skin++Boston/@@contents.html'
        >>> browser.contents
        '...href="http://localhost/++skin++Boston/@@/skin.css"...'
        >>> browser.contents
        '...href="http://localhost/++skin++Boston/@@/widget.css"...'
        >>> browser.contents
        '...href="http://localhost/++skin++Boston/@@/toolbar.css"...'
        >>> browser.contents
        '...href="http://localhost/++skin++Boston/@@/xmltree.css"...'
        
        Check if the javascript viewlet is available in the Boston skin.
        
        >>> browser.open('http://localhost/++skin++Boston/@@contents.html')
        >>> browser.url
        'http://localhost/++skin++Boston/@@contents.html'
        >>> browser.contents
        '...src="http://localhost/++skin++Boston/@@/boston.js"...'
        >>> browser.contents
        '...src="http://localhost/++skin++Boston/@@/xmltree.js"...'
        
        Check if the left viewlet is available in the Boston skin.
        
        >>> browser.open('http://localhost/++skin++Boston/@@contents.html')
        >>> browser.url
        'http://localhost/++skin++Boston/@@contents.html'
        >>> browser.contents
        '...id="ToolBar"...'
        >>> browser.contents
        '...id="xmltree"...'
        >>> browser.contents
        '...id="addinginfo"...'
        
        Make sure the edit form "works":
        
        >>> browser.open(
        ...     'http://localhost/++skin++Boston/+/zope.app.dtmlpage.DTMLPage=')
        
        
        =======
        CHANGES
        =======
        
        3.5.0 (2010-01-05)
        ------------------
        
        - Use zope.container instead of zope.app.container.
        
        - Use zope.browsermenu instead of zope.app.publisher.
        
        - Use zope.publisher 3.12 and new zope.login to make tests work.
        
        3.4.0 (2007-11-03)
        ------------------
        
        - Initial release independent of the main Zope tree.
        
        3.4.0b1
        -------
        
        - Fixed invalid HTML in wiget_macros.
        
Keywords: zope3 boston skin zmi
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
