Commit 23e9a894 authored by 's avatar

- removed 'Main' and 'Zope' wrappers for Test.publish

parent a8b516e4
......@@ -11,6 +11,10 @@ Trunk (unreleased)
Restructuring
+++++++++++++
- ZPublisher: Removed 'Main' and 'Zope' wrappers for Test.publish.
If anybody really used them, he can easily use ZPublisher.test instead. In
the long run ZPublisher.test and ZPublisher.Test might also be removed.
- Moved AccessControl, DocumentTemplate (incl. TreeDisplay) and
Products.ZCTextIndex to their own distributions. This removes the last
direct C extensions from the Zope2 distribution.
......
......@@ -28,16 +28,3 @@ def test(*args, **kw):
import Test
test=Test.publish
return apply(test, args, kw)
def Main(*args, **kw):
global test
import Test
test=Test.publish
return apply(test, ('Main',)+args, kw)
# What can we say. ;/
def Zope(*args, **kw):
global test
import Test
test=Test.publish
return apply(test, ('Zope',)+args, kw)
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