Metadata-Version: 1.0
Name: z3c.skin.pagelet
Version: 1.0.2
Summary: A base skin for pagelet-based UIs
Home-page: http://cheeseshop.python.org/pypi/z3c.skin.pagelet
Author: Roger Ineichen and the Zope Community
Author-email: zope3-dev@zope.org
License: ZPL 2.1
Description: This package provides a base skin for people wanting to develop 
        pagelet-based applications.
        
        
        Detailed Dcoumentation
        ----------------------
        
        
        =============================
        A base Skin based on Pagelets
        =============================
        
        The ``z3c.skin.pagelet`` package provides a skin for the ``z3c.pagelet``
        package.  Note, the pagelet skin is only registered in the test layer. You can
        use this skin as a base for your own skins or just use it as a sample for the
        ``z3c.pagelet`` package.
        
        Open a browser and access the ``Pagelet`` skin:
        
          >>> from z3c.etestbrowser.testing import ExtendedTestBrowser
          >>> user = ExtendedTestBrowser()
          >>> user.addHeader('Accept-Language', 'en')
          >>> user.open('http://localhost/++skin++Pagelet')
        
        Let's see how such a skin looks like:
        
          >>> print user.contents
          <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
          <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
                lang="en">
          <head>
          <base href="http://localhost/++skin++Pagelet/@@index.html" />
          <BLANKLINE>
          <BLANKLINE>
                      <title>Pagelet skin</title>
          <BLANKLINE>
          <meta http-equiv="cache-control" content="no-cache" />
          <meta http-equiv="pragma" content="no-cache" />
          <link type="text/css" rel="stylesheet"
                href="http://localhost/++skin++Pagelet/@@/pagelet.css"
                media="all" />
          <BLANKLINE>
          <script type="text/javascript">
                  var contextURL='http://localhost/++skin++Pagelet/';</script>
          <BLANKLINE>
          <link rel="icon" type="image/png"
                href="http://localhost/++skin++Pagelet/@@/favicon.png" />
          </head>
          <body>
          <div id="layoutWrapper">
            <div id="layoutContainer">
              <div id="headerContainer">
                <div id="breadcrumbs" class="sortable">
          <BLANKLINE>
                </div>
                <div id="user">
                  User: Manager
                </div>
                <img id="logo"
                     src="http://localhost/++skin++Pagelet/@@/img/logo.gif"
                     width="53" height="51" alt="logo" />
              </div>
              <div id="menuContainer"></div>
              <div id="naviContainer" class="sortable">
          <BLANKLINE>
          <BLANKLINE>
              </div>
              <div id="contentContainer">
                <div id="tabContainer"></div>
                <div id="content">
                  <div>This is the default index view</div>
          <BLANKLINE>
                </div>
              </div>
            </div>
          </div>
          </body>
          </html>
          <BLANKLINE>
        
        
        =======
        CHANGES
        =======
        
        1.0.2 (2007-11-01)
        ------------------
        
        - Add doctests to long description of package data.
        
        
        1.0.1 (2007-11-01)
        ------------------
        
        - Resolve ``ZopeSecurityPolicy`` deprecation warning.
        
        
        1.0.0 (2007-09-22)
        ------------------
        
        - Initial Release
        
Keywords: zope3 pagelet skin
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
