Commit 9bfa6890 authored by Hanno Schlichting's avatar Hanno Schlichting

Catch up with the rest of the Zope Toolkit of the day and loose dependencies...

Catch up with the rest of the Zope Toolkit of the day and loose dependencies on zope.app.appsetup, zope.app.component and zope.app.container.
parent 0bfd8aae
...@@ -17,14 +17,17 @@ eggs = ...@@ -17,14 +17,17 @@ eggs =
tempstorage tempstorage
zLOG zLOG
zope.annotation zope.annotation
zope.authentication
zope.broken zope.broken
zope.browser zope.browser
zope.cachedescriptors zope.cachedescriptors
zope.component zope.component
zope.componentvocabulary
zope.configuration zope.configuration
zope.container zope.container
zope.contentprovider zope.contentprovider
zope.contenttype zope.contenttype
zope.copy
zope.datetime zope.datetime
zope.deferredimport zope.deferredimport
zope.deprecation zope.deprecation
...@@ -33,6 +36,7 @@ eggs = ...@@ -33,6 +36,7 @@ eggs =
zope.error zope.error
zope.event zope.event
zope.exceptions zope.exceptions
zope.filerepresentation
zope.formlib zope.formlib
zope.hookable zope.hookable
zope.i18n zope.i18n
...@@ -44,6 +48,8 @@ eggs = ...@@ -44,6 +48,8 @@ eggs =
zope.minmax zope.minmax
zope.modulealias zope.modulealias
zope.pagetemplate zope.pagetemplate
zope.password
zope.processlifetime
zope.proxy zope.proxy
zope.publisher zope.publisher
zope.schema zope.schema
...@@ -60,14 +66,19 @@ eggs = ...@@ -60,14 +66,19 @@ eggs =
zope.thread zope.thread
zope.traversing zope.traversing
zope.viewlet zope.viewlet
zope.app.form
zope.app.pagetemplate
zope.app.publication
zope.app.publisher
zope.app.schema
# Fetch undeclared ftests dependencies # Fetch undeclared ftests dependencies
zope.app.broken zope.app.applicationcontrol
zope.app.exception
zope.app.http
zope.app.principalannotation zope.app.principalannotation
zope.app.schema
zope.app.securitypolicy zope.app.securitypolicy
zope.app.testing
zope.app.zcmlfiles
zope.app.zptpage zope.app.zptpage
python-gettext zope.app.zcmlfiles
defaults = ['--module', '!^(zope[.]app)[.]'] defaults = ['--module', '!^(zope[.]app)[.]']
...@@ -20,9 +20,30 @@ Features Added ...@@ -20,9 +20,30 @@ Features Added
- Testing.ZopeTestCase: Include a copy of ZODB.tests.warnhook to silence - Testing.ZopeTestCase: Include a copy of ZODB.tests.warnhook to silence
a DeprecationWarning under Python 2.6. a DeprecationWarning under Python 2.6.
- Updated packages: pytz 2009g, zope.browser 1.2, zope.container 3.8.2, - Updated packages:
zope.lifecycleevent 3.5.2, zope.location 3.5.4, zope.publisher 3.7.0,
zope.testing 3.7.4. * pytz 2009g
* zope.app.applicationcontrol = 3.5.0
* zope.app.appsetup 3.11
* zope.app.component 3.8.2
* zope.app.container 3.8.0
* zope.app.http 3.6.0
* zope.app.interface 3.5.0
* zope.app.pagetemplate 3.6.0
* zope.app.publication 3.7.0
* zope.app.publisher 3.8.0
* zope.browser 1.2
* zope.component 3.7.0
* zope.componentvocabulary 1.0
* zope.container 3.8.2
* zope.formlib 3.6.0
* zope.lifecycleevent 3.5.2
* zope.location 3.5.4
* zope.processlifetime 1.0
* zope.publisher 3.8.0
* zope.security 3.7.0
* zope.testing 3.7.4
* zope.traversing 3.7.0
Bugs Fixed Bugs Fixed
++++++++++ ++++++++++
......
...@@ -102,17 +102,18 @@ params = dict(name='Zope2', ...@@ -102,17 +102,18 @@ params = dict(name='Zope2',
install_requires=[ install_requires=[
'Acquisition', 'Acquisition',
'DateTime', 'DateTime',
'docutils',
'ExtensionClass', 'ExtensionClass',
'Persistence', 'Persistence',
'pytz',
'RestrictedPython', 'RestrictedPython',
'tempstorage',
'ZConfig', 'ZConfig',
'zLOG',
'zdaemon',
'ZODB3', 'ZODB3',
'zodbcode', 'docutils',
'pytz',
'setuptools',
'tempstorage',
'transaction',
'zdaemon',
'zLOG',
'zope.component', 'zope.component',
'zope.configuration', 'zope.configuration',
'zope.container', 'zope.container',
...@@ -128,6 +129,7 @@ params = dict(name='Zope2', ...@@ -128,6 +129,7 @@ params = dict(name='Zope2',
'zope.lifecycleevent', 'zope.lifecycleevent',
'zope.location', 'zope.location',
'zope.pagetemplate', 'zope.pagetemplate',
'zope.processlifetime',
'zope.proxy', 'zope.proxy',
'zope.publisher', 'zope.publisher',
'zope.schema', 'zope.schema',
...@@ -143,9 +145,6 @@ params = dict(name='Zope2', ...@@ -143,9 +145,6 @@ params = dict(name='Zope2',
'zope.testing', 'zope.testing',
'zope.traversing', 'zope.traversing',
'zope.viewlet', 'zope.viewlet',
'zope.app.appsetup',
'zope.app.component',
'zope.app.container',
'zope.app.form', 'zope.app.form',
'zope.app.pagetemplate', 'zope.app.pagetemplate',
'zope.app.publication', 'zope.app.publication',
......
...@@ -16,9 +16,3 @@ e.g. Fields and Actions in order to define and select fields and to add ...@@ -16,9 +16,3 @@ e.g. Fields and Actions in order to define and select fields and to add
actions to your form. actions to your form.
See Products.Five.formlib.tests for a minimal example. See Products.Five.formlib.tests for a minimal example.
Note:
-----
Currently zope.formlib.page and zope.formlib.namedtemplate are not
supported in Five.
...@@ -17,13 +17,11 @@ $Id$ ...@@ -17,13 +17,11 @@ $Id$
""" """
import os.path import os.path
from datetime import datetime
import zope.event import zope.event
import zope.formlib import zope.formlib
import zope.lifecycleevent import zope.lifecycleevent
from zope import interface from zope import interface
from zope.formlib import interfaces, form, namedtemplate from zope.formlib import interfaces, form
from zope.i18nmessageid import MessageFactory from zope.i18nmessageid import MessageFactory
_ = MessageFactory("zope") _ = MessageFactory("zope")
......
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
<meta:directive <meta:directive
name="view" name="view"
schema="zope.app.component.metadirectives.IViewDirective" schema="zope.component.zcml.IViewDirective"
handler="zope.app.component.metaconfigure.view" handler="zope.component.zcml.view"
/> />
<meta:complexDirective <meta:complexDirective
......
...@@ -24,7 +24,7 @@ from zope.interface import implements, Interface ...@@ -24,7 +24,7 @@ from zope.interface import implements, Interface
from zope.component import queryMultiAdapter from zope.component import queryMultiAdapter
from zope.event import notify from zope.event import notify
from zope.app.publication.interfaces import EndRequestEvent from zope.app.publication.interfaces import EndRequestEvent
from zope.app.publisher.browser import queryDefaultViewName from zope.publisher.defaultview import queryDefaultViewName
from zope.publisher.interfaces import IPublishTraverse from zope.publisher.interfaces import IPublishTraverse
from zope.publisher.interfaces.browser import IBrowserPublisher from zope.publisher.interfaces.browser import IBrowserPublisher
from zope.traversing.interfaces import TraversalError from zope.traversing.interfaces import TraversalError
......
...@@ -39,7 +39,7 @@ import Zope2 ...@@ -39,7 +39,7 @@ import Zope2
import ZPublisher import ZPublisher
from zope.event import notify from zope.event import notify
from zope.app import appsetup from zope.processlifetime import DatabaseOpened
app = None app = None
startup_time = asctime() startup_time = asctime()
...@@ -82,7 +82,7 @@ def startup(): ...@@ -82,7 +82,7 @@ def startup():
else: else:
DB = ZODB.DB(m.Storage, databases=databases) DB = ZODB.DB(m.Storage, databases=databases)
notify(appsetup.interfaces.DatabaseOpened(DB)) notify(DatabaseOpened(DB))
Globals.BobobaseName = DB.getName() Globals.BobobaseName = DB.getName()
......
...@@ -31,7 +31,7 @@ import ZConfig ...@@ -31,7 +31,7 @@ import ZConfig
from ZConfig.components.logger import loghandler from ZConfig.components.logger import loghandler
from zope.event import notify from zope.event import notify
from zope.app import appsetup from zope.processlifetime import ProcessStarting
logger = logging.getLogger("Zope") logger = logging.getLogger("Zope")
started = False started = False
...@@ -73,7 +73,7 @@ class ZopeStarter: ...@@ -73,7 +73,7 @@ class ZopeStarter:
def sendEvents(self): def sendEvents(self):
notify(appsetup.interfaces.ProcessStarting()) notify(ProcessStarting())
def prepare(self): def prepare(self):
self.setupInitialLogging() self.setupInitialLogging()
......
...@@ -8,7 +8,6 @@ from socket import gethostbyaddr ...@@ -8,7 +8,6 @@ from socket import gethostbyaddr
try: try:
import twisted.internet import twisted.internet
from twisted.application.service import MultiService from twisted.application.service import MultiService
import zope.app.appsetup.interfaces
import zope.app.twisted.main import zope.app.twisted.main
import twisted.web2.wsgi import twisted.web2.wsgi
......
...@@ -29,14 +29,14 @@ zdaemon = 2.0.4 ...@@ -29,14 +29,14 @@ zdaemon = 2.0.4
zodbcode = 3.4.0 zodbcode = 3.4.0
zope.annotation = 3.4.2 zope.annotation = 3.4.2
zope.app.apidoc = 3.6.2 zope.app.apidoc = 3.6.2
zope.app.applicationcontrol = 3.4.3 zope.app.applicationcontrol = 3.5.0
zope.app.appsetup = 3.10.1 zope.app.appsetup = 3.11
zope.app.basicskin = 3.4.0 zope.app.basicskin = 3.4.0
zope.app.broken = 3.5.0 zope.app.broken = 3.5.0
zope.app.cache = 3.5.0 zope.app.cache = 3.5.0
zope.app.catalog = 3.8.0 zope.app.catalog = 3.8.0
zope.app.component = 3.7.0 zope.app.component = 3.8.2
zope.app.container = 3.7.2 zope.app.container = 3.8.0
zope.app.content = 3.4.0 zope.app.content = 3.4.0
zope.app.dav = 3.5.0 zope.app.dav = 3.5.0
zope.app.debug = 3.4.1 zope.app.debug = 3.4.1
...@@ -48,16 +48,16 @@ zope.app.file = 3.5.0 ...@@ -48,16 +48,16 @@ zope.app.file = 3.5.0
zope.app.folder = 3.5.1 zope.app.folder = 3.5.1
zope.app.form = 3.7.3 zope.app.form = 3.7.3
zope.app.generations = 3.5.0 zope.app.generations = 3.5.0
zope.app.http = 3.5.2 zope.app.http = 3.6.0
zope.app.i18n = 3.6.0 zope.app.i18n = 3.6.0
zope.app.interface = 3.4.0 zope.app.interface = 3.5.0
zope.app.intid = 3.7.0 zope.app.intid = 3.7.0
zope.app.locales = 3.5.1 zope.app.locales = 3.5.1
zope.app.localpermission = 3.7.0 zope.app.localpermission = 3.7.0
zope.app.pagetemplate = 3.5.0 zope.app.pagetemplate = 3.6.0
zope.app.principalannotation = 3.6.1 zope.app.principalannotation = 3.6.1
zope.app.publication = 3.5.3 zope.app.publication = 3.7.0
zope.app.publisher = 3.6.2 zope.app.publisher = 3.8.0
zope.app.renderer = 3.5.0 zope.app.renderer = 3.5.0
zope.app.schema = 3.5.0 zope.app.schema = 3.5.0
zope.app.security = 3.7.0 zope.app.security = 3.7.0
...@@ -77,7 +77,8 @@ zope.broken = 3.5.0 ...@@ -77,7 +77,8 @@ zope.broken = 3.5.0
zope.browser = 1.2 zope.browser = 1.2
zope.cachedescriptors = 3.5.0 zope.cachedescriptors = 3.5.0
zope.catalog = 3.8.0 zope.catalog = 3.8.0
zope.component = 3.6.0 zope.component = 3.7.0
zope.componentvocabulary = 1.0
zope.configuration = 3.6.0 zope.configuration = 3.6.0
zope.container = 3.8.2 zope.container = 3.8.2
zope.contentprovider = 3.5.0 zope.contentprovider = 3.5.0
...@@ -95,7 +96,7 @@ zope.error = 3.6.0 ...@@ -95,7 +96,7 @@ zope.error = 3.6.0
zope.event = 3.4.1 zope.event = 3.4.1
zope.exceptions = 3.5.2 zope.exceptions = 3.5.2
zope.filerepresentation = 3.5.0 zope.filerepresentation = 3.5.0
zope.formlib = 3.5.2 zope.formlib = 3.6.0
zope.hookable = 3.4.1 zope.hookable = 3.4.1
zope.i18n = 3.7.0 zope.i18n = 3.7.0
zope.i18nmessageid = 3.4.3 zope.i18nmessageid = 3.4.3
...@@ -110,10 +111,11 @@ zope.password = 3.5.1 ...@@ -110,10 +111,11 @@ zope.password = 3.5.1
zope.pagetemplate = 3.4.2 zope.pagetemplate = 3.4.2
zope.principalannotation = 3.6.0 zope.principalannotation = 3.6.0
zope.principalregistry = 3.7.0 zope.principalregistry = 3.7.0
zope.processlifetime = 1.0
zope.proxy = 3.5.0 zope.proxy = 3.5.0
zope.publisher = 3.7.0 zope.publisher = 3.8.0
zope.schema = 3.5.4 zope.schema = 3.5.4
zope.security = 3.6.3 zope.security = 3.7.0
zope.securitypolicy = 3.6.0 zope.securitypolicy = 3.6.0
zope.sendmail = 3.5.1 zope.sendmail = 3.5.1
zope.sequencesort = 3.4.0 zope.sequencesort = 3.4.0
...@@ -126,5 +128,5 @@ zope.tal = 3.5.1 ...@@ -126,5 +128,5 @@ zope.tal = 3.5.1
zope.tales = 3.4.0 zope.tales = 3.4.0
zope.testbrowser = 3.6.0a2 zope.testbrowser = 3.6.0a2
zope.testing = 3.7.4 zope.testing = 3.7.4
zope.traversing = 3.6.0 zope.traversing = 3.7.0
zope.viewlet = 3.5.0 zope.viewlet = 3.5.0
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment