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