/usr/share/pyshared/zope.app.publisher-3.10.2.egg-info/PKG-INFO is in python-zope.app.publisher 3.10.2-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | Metadata-Version: 1.1
Name: zope.app.publisher
Version: 3.10.2
Summary: Implementations and means for configuration of Zope 3-style views and resources.
Home-page: http://pypi.python.org/pypi/zope.app.publisher/
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: UNKNOWN
Description: ========
Overview
========
*This package is at present not reusable without depending on a large
chunk of the Zope Toolkit and its assumptions. It is maintained by the*
`Zope Toolkit project <http://docs.zope.org/zopetoolkit/>`_.
This package used to provide browser page, resource and menu classes
for use with zope.publisher object publishing framework, as well as some
other useful utilities and adapters, but most of things was factored out
to separate packages, leaving here only backward-compatibility imports.
However, some potentially useful things are still contained in this package:
* "date" field converter for zope.publisher's BrowserRequest field converter
mechanism.
* "Browser Skins" vocabulary (a vocabulary for IBrowserSkinType utilities)
* ManagementViewSelector (a browser view that redirects to a first available
management view)
* XML-RPC view and method publishing mechanism along with xmlrpc:view ZCML
directive.
=======
CHANGES
=======
3.10.2 (2010-09-14)
===================
- Remove a testing dependency on zope.app.securitypolicy.
3.10.1 (2010-01-08)
===================
- Fix tests using a newer zope.publisher that requires zope.login.
3.10.0 (2009-08-31)
===================
- Fix test dependency on zope.container, now we depend on
zope.container >= 3.9.
3.9.0 (2009-08-27)
==================
Refactor package, spliting it to several new packages:
* ``zope.browserresource`` - the resources mechanism was moved here, see its
CHANGES.txt for more information about changes during move.
* ``zope.ptresource`` - the page template resource was moved into another
package so zope.browserresource doesn't depend on any templating system.
See zope.ptresource's CHANGES.txt for more information.
* ``zope.browsermenu`` - the menu mechanism was moved here completely.
* ``zope.browserpage`` - the browser:page directive and friends were
moved here. Also, these directives don't depend hardly on menu system
anymore, so they simply ignore the "menu" argument when zope.browsermenu
is not available.
Backward-compatibility imports are provided, so there should not be much impact
for those who uses old imports.
The CacheableBrowserLanguages and ModifiableBrowserLanguages adapters were
moved into ``zope.publisher`` package, as well as browser:defaultSkin and
browser:defaultView ZCML directives and ZCML class configuration for
zope.publisher classes.
ZCML registrations of IXMLRPCPublisher adapters for zope.container were moved
into zope.container for now.
3.8.4 (2009-07-23)
==================
- Added dependency on ``zope.app.pagetemplate``, it is used by
``zope.app.publisher.browser.viewmeta``.
3.8.3 (2009-06-18)
==================
- Bugfix: Fix ``IAbsoluteURL`` for ``IResource`` configuration. The latest
release was moving the url generation for resources to an adapter which was
a good idea. But the adapter was configured for
``IDefaultBrowserLayer``. This means every existing project which dosen't
use ``IDefaultBrowserLayer`` will get a wrong ``IAbsoluteURL`` adapter and
is loosing the ``@@`` part in the resource url.
3.8.2 (2009-06-16)
==================
- Remove test dependency on ``zope.app.pagetemplate``.
- Calling a resource to get its URL now uses ``IAbsoluteURL``.
3.8.1 (2009-05-25)
==================
- Updated to use ``zope.pagetemplate.engine`` module (requires versino
3.5.0 or later), instead of ``zope.app.pagetemplate`` precursor.
- Replaced ``zope.deprecation`` dependency with BBB imports
3.8.0 (2009-05-23)
==================
- There is no direct dependency on zope.app.component anymore (even in
the tests).
- Moved the publicationtraverse module to zope.traversing, removing the
zope.app.publisher -> zope.app.publication dependency (which was a
cycle).
- Moved the DefaultViewName API from zope.app.publisher.browser to
zope.publisher.defaultview, making it accessible to other packages
that need it.
3.7.0 (2009-05-22)
==================
- Use zope.componentvocabulary instead of zope.app.component
(except for tests and IBasicViewInformation).
- Use zope.browser for IAdding interface (instead of zope.app.container)
- Update references to ``zope.app.component.tests.views`` to point to the new
locations in ``zope.component.testfiles.views``.
3.6.2 (2009-03-18)
==================
- Register ``IModifiableUserPreferredLanguages`` adapter in the ZCML
configuration of ``zope.app.publisher.browser`` package. This was previously
done by ``zope.app.i18n``.
3.6.1 (2009-03-12)
==================
- Remove deprecated code.
- Adapt to removal of deprecated interfaces from zope.component.interfaces.
The IResource is now moved to zope.app.publisher.interfaces. The IView
and IDefaultViewName is now in zope.publisher.interfaces. The IPresentation
interface was removed completely.
3.6.0 (2009-01-31)
==================
- Use zope.container instead of zope.app.container.
- Use zope.site.folder instead of zope.app.folder.
3.5.3 (2009-01-27)
==================
- Finally removed <browser:skin> and <browser:layer> that were marked as
deprecated in 2006/02.
3.5.2 (2008-12-06)
==================
- Added possibility to specify custom item class in menuItem, subMenuItem
and addMenuItem directives using the ``item_class`` argument (LP #291865).
- Menu items registered with <browser:page/> were not re-registered after the
first functional test layer ran. In any subsequent functional test layer the
items where not availabe (introduced in 3.5.0a3).
- Added a hook to specify a different BaseURL for resources. This makes sense
if you want to put resources on a Content Delivery Network. All you need to
do is to register an named Adapter 'resource' that implements IAbsoluteURL.
3.5.1 (2008-10-13)
==================
- Removed usage of deprecated LayerField from zope.app.component.back35.
3.5.0 (2008-08-05)
==================
- Refactored code to provide more hooks when deriving code from this pacakge.
* A resource's URL creation is now in its own method.
* The resource class of factories can be overwritten.
* The cache timeout value can now be set as a class or instance attribute.
3.5.0a4 (2007-12-28)
====================
- Backed out the changes for the controversial XML-RPC skin support.
3.5.0a3 (2007-11-27)
====================
- make it possible to override menus: this was not possible because new
interfaces where created any time a menu with the same name was created.
- Resolve ``ZopeSecurityPolicy`` deprecation warning.
3.5.0a2 (2007-08-23)
====================
- <browser:defaultView> now accepts classes as well as interfaces.
3.5.0a1 (2007-08-21)
====================
- Added a `layer` attribute to `xmlrpc:view`. This works just like layers for
`browser:view` etc. but uses the `IXMLRPCSkinType`.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
|