Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
55866a45
Commit
55866a45
authored
Sep 18, 2009
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Note current status; document script for checking direct deps.
parent
f4ea56d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
10 deletions
+27
-10
ZOPE_APP_DEPENDENCIES.rst
ZOPE_APP_DEPENDENCIES.rst
+27
-10
No files found.
ZOPE_APP_DEPENDENCIES.rst
View file @
55866a45
...
...
@@ -16,7 +16,8 @@ Zope2 depends on the following zope.app packages directly:
* Products/Five/browser/doc/products/ViewsTutorial/configure.zcml
- [_] zope.app.form
o Products.Five.form.*
o Products.Five.form.* (should be factored out into a separate
package, maybe ``five.forms``)
- [X] zope.app.pagetemplate
* Products.PageTemplates.Expressions
...
...
@@ -25,21 +26,37 @@ Zope2 depends on the following zope.app packages directly:
- [_] zope.app.publication
o ZPublisher.BaseRequest (for ``EndRequestEvent``)
o Products.Five.component (for ``IBeginRequestEvent``,
``IEndRequestEvent``, and ``BeforeTraverseEvent``.)
o Products.Five.component (for ``BeforeTraverseEvent``)
- [X] zope.app.publisher
* ZPublisher.BaseRequest
o
Products.Five.browser.adding (for ``getMenu``)
o
Products/Five/browser/configure.zcml (for ``IMenuItemType``,
*
Products.Five.browser.adding (for ``getMenu``)
*
Products/Five/browser/configure.zcml (for ``IMenuItemType``,
``MenuAccessView``, and ``IMenuAccessView``)
o
Products.Five.viewlet.metaconfigure (for ``viewmeta``)
o
Products.Five.form.metaconfigure (for ``menuItemDirective``)
o
Products.Five.fivedirectives (for ``IBasicResourceInformation``)
*
Products.Five.viewlet.metaconfigure (for ``viewmeta``)
*
Products.Five.form.metaconfigure (for ``menuItemDirective``)
*
Products.Five.fivedirectives (for ``IBasicResourceInformation``)
- [_] zope.app.schema
o Products.Five
o Products.Five (imports ``zope.app.schema.vocabulary`` for
side-effects ?!).
- [_] zope.app.twisted
o Zope2.Startup.datatypes (conditionally imports ``ServerFactory``)
o Zope2.Startup.handlers (conditionally imports ``ServerType``,
``SSLServerType``, ``IServerType``; worse, conditionally imports
``zope.app.twisted.main`` for side effects, which includes pulling
back ``zope.app.appsetup`` as well as adding ``zope.app.wsgi``?!)
This shell script can be used to verify the direct dependencies::
#! /bin/sh
for f in $(find src/ -name "*.py" | xargs grep -l "zope\.app"); do
echo ====================================================
echo $f
echo ====================================================
grep "zope\.app" $f
done
Zope2 has transitive dependencies on these packages:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment