Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Products.DCWorkflow
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
Products.DCWorkflow
Commits
44a6c26d
Commit
44a6c26d
authored
Jul 07, 2009
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- moved the Zope dependency to version 2.12.0b3dev
- updated some imports - removed obsolete BBB code
parent
badd4128
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
15 deletions
+9
-15
Products/DCWorkflow/CHANGES.txt
Products/DCWorkflow/CHANGES.txt
+2
-0
Products/DCWorkflow/browser/configure.zcml
Products/DCWorkflow/browser/configure.zcml
+1
-1
Products/DCWorkflow/testing.py
Products/DCWorkflow/testing.py
+2
-11
setup.py
setup.py
+4
-3
No files found.
Products/DCWorkflow/CHANGES.txt
View file @
44a6c26d
...
...
@@ -4,6 +4,8 @@ Products.DCWorkflow Changelog
2.2.0 (unreleased)
------------------
- moved the Zope dependency to version 2.12.0b3dev
- Worklists: The catalog variable match setting can now be a
formatted string (as before), but also a qualified TAL
expression, meaning it has a prefix like "string:", "python:".
...
...
Products/DCWorkflow/browser/configure.zcml
View file @
44a6c26d
...
...
@@ -4,7 +4,7 @@
>
<browser:page
for="zope.
app.contain
er.interfaces.IAdding"
for="zope.
brows
er.interfaces.IAdding"
name="addDCWorkflowDefinition.html"
template="addWithPresettings.pt"
class="Products.DCWorkflow.browser.workflow.DCWorkflowDefinitionAddView"
...
...
Products/DCWorkflow/testing.py
View file @
44a6c26d
...
...
@@ -16,12 +16,13 @@ $Id$
"""
from
Products.Five
import
zcml
from
Testing.ZopeTestCase.layer
import
ZopeLite
from
zope.testing.cleanup
import
cleanUp
from
Products.CMFCore.testing
import
_DUMMY_ZCML
class
ExportImportZCMLLayer
:
class
ExportImportZCMLLayer
(
ZopeLite
)
:
@
classmethod
def
setUp
(
cls
):
...
...
@@ -44,13 +45,3 @@ class ExportImportZCMLLayer:
@
classmethod
def
tearDown
(
cls
):
cleanUp
()
# Derive from ZopeLite layer if available
try
:
from
Testing.ZopeTestCase.layer
import
ZopeLite
except
ImportError
:
pass
# Zope < 2.11
else
:
ExportImportZCMLLayer
.
__bases__
=
(
ZopeLite
,)
setup.py
View file @
44a6c26d
...
...
@@ -45,13 +45,14 @@ setup(name='Products.%s' % NAME,
setup_requires
=
[
'eggtestinfo'
,
],
install_requires
=
[
#'Zope >= 2.10.4',
'setuptools'
,
'Zope2 >= 2.12.0b3dev'
,
'Products.CMFCore'
,
'Products.GenericSetup'
,
],
tests_require
=
[
'zope.testing>=3.7.0'
,
],
tests_require
=
[
'zope.testing >= 3.7.0'
,
],
test_loader
=
'zope.testing.testrunner.eggsupport:SkipLayers'
,
test_suite
=
'Products.%s.tests'
%
NAME
,
entry_points
=
"""
...
...
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