/usr/share/pyshared/zope.app.applicationcontrol-3.5.10.egg-info/PKG-INFO is in python-zope.app.applicationcontrol 3.5.10-0ubuntu1.
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 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | Metadata-Version: 1.1
Name: zope.app.applicationcontrol
Version: 3.5.10
Summary: Zope application control
Home-page: http://cheeseshop.python.org/pypi/zope.app.applicationcontrol
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: ===========================
zope.app.applicationcontrol
===========================
The application control instance is usually generated upon startup.
This package provides runtime information adapter for application
control and Zope version. Also provide a utility with methods for
shutting down and restarting the server.
Developer Resources
-------------------
- Subversion browser:
http://svn.zope.org/zope.app.applicationcontrol/
- Read-only Subversion checkout::
$ svn co svn://svn.zope.org/repos/main/zope.app.applicationcontrol/trunk
- Writable Subversion checkout::
$ svn co svn+ssh://userid@svn.zope.org/repos/main/zope.app.applicationcontrol/trunk
=======================
Installing This Package
=======================
Prerequisites
-------------
The installation steps below assume that you have the cool new 'setuptools'
package installed in your Python. Here is where to get it::
$ wget http://peak.telecommunity.com/dist/ez_setup.py
$ /path/to/your/python ez_setup.py # req. write access to 'site-packages'
- Docs for EasyInstall:
http://peak.telecommunity.com/DevCenter/EasyInstall
- Docs for setuptools:
http://peak.telecommunity.com/DevCenter/setuptools
- Docs for eggs:
http://peak.telecommunity.com/DevCenter/PythonEggs
Installing a Development Checkout
---------------------------------
Check out the package from subversion::
$ svn co svn+ssh://svn.zope.org/repos/main/zope.app.applicationcontrol/trunk \
src/zope.app.applicationcontrol
$ cd src/zope.app.applicationcontrol
Install it as a "devlopment egg" (which also installs its "hard"
dependencies)::
$ /path/to/your/python setup.py devel
The installation of dependency eggs uses the 'setup.cfg' file in
the checkout. You can supply '--find-links' on the command line to
point it at a non-standard package repository.
Running the Tests
-----------------
To test the package, you will also need the 'zope.testing' package, which
can't (yet) be automatically installed. Eventually, you should be able to
type::
$ /path/to/your/python setup.py test
and have it install the "testing dependencies." Today, the workaround
is to install it manually::
$ /path/to/easy_install --find-links="...." zope.testing
You can then run the tests (finally) from the checkout directory::
$ /path/to/your/python test.py
Running:
.............
Ran 13 tests with 0 failures and 0 errors in 0.094 seconds.
Installing a Source Distribution
--------------------------------
You can also install it from a source distribution::
$ /path/to/easy_install --find-links="...." -eb src zope.app.applicationcontrol
$ cd src/zope.app.applicationcontrol
$ /path/to/your/python setup.py devel
Installing a Binary Egg
-----------------------
Install the package as a "binary egg" (which also installs its "hard"
dependencies)::
$ /path/to/easy_install --find-links="...." zope.app.applicationcontrol
=======
CHANGES
=======
3.5.10 (2011-11-02)
-------------------
- Extended the locale-specific fix from version 3.5.6 for hosts
which set ``LC_*`` in the environment: those variables shadow ``LANG``.
- Replaced a testing dependency on zope.app.authentication with
zope.password.
- Removed unneeded zope.app.appsetup test dependency.
3.5.9 (2010-12-18)
------------------
- Bugfix: AttributeError: 'module' object has no attribute '__file__'
when you used ``pip install`` instead of ``easy_install``.
The IZopeVersion utility now returns "Meaningless", since there's no
monolithic Zope 3 in the modern eggified world.
3.5.8 (2010-09-17)
------------------
- Replaced a testing dependency on zope.app.securitypolicy with one on
zope.securitypolicy.
3.5.7 (2010-07-08)
------------------
- 3.5.6 was a bad egg release.
3.5.6 (2010-07-07)
------------------
- Bugfix: Launching ``svn`` replaced the whole environment instead of just
appending ``LANG``.
3.5.5 (2010-01-09)
------------------
- Extracted RuntimeInfo and ApplicationRoot functionality into
zope.applicationcontrol. Import this functionality from this package
instead (see BBB imports inside this package).
3.5.4 (2010-01-08)
------------------
- Test dependency on zptpage removed.
3.5.3 (2010-01-05)
------------------
- Updated to use newer zope.publisher 3.12 and zope.login to make
tests work.
3.5.2 (2009-12-19)
------------------
- Move 'zope.ManageApplication' permission from zope.app.security package
- Break dependency on ``zope.app.appsetup`` by using a conditional import
3.5.1 (2009-08-15)
------------------
- Added missing (normal and test) dependencies.
- Renenabled functional tests.
3.5.0 (2009-05-23)
------------------
- The application controller is now registered as a utility so that other
packages like zope.traversing and zope.app.publication do not need
to depend on this package directly. This also makes the application
controller pluggable.
3.4.3 (2008-07-30)
------------------
- Make the test for the ZopeVersion bugfix in 3.4.2 not fail when run from an
egg rather than a checkout.
3.4.2 (2008-07-30)
------------------
- Substitute zope.app.zapi by direct calls to its wrapped apis.
See http://launchpad.net/bugs/219302
- Bugfix: ZopeVersion used to report an unknown version when running on a
machine with a locale different than English.
See http://launchpad.net/bugs/177733
- Fixed deprecation warning in ftesting.zcml: import ZopeSecurityPolicy from
the new location.
3.4.1 (2007-09-27)
------------------
- rebumped to replace faulty egg
3.4.0 (2007-09-25)
------------------
- Initial documented release
- Reflect changes form zope.app.error refactoring
Keywords: zope3 application control
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
|