Commit 3e1c30b7 authored by Andreas Jung's avatar Andreas Jung

deprecated StructuredText module

parent 10998639
...@@ -26,6 +26,9 @@ Zope Changes ...@@ -26,6 +26,9 @@ Zope Changes
Features added Features added
- the 'StructuredText' module is deprecated. Use zope.structuredtext
instead
- removed ZopeTutorial (Elvis is now really dead) - removed ZopeTutorial (Elvis is now really dead)
- ZClasses are deprecated and should no longer be used. - ZClasses are deprecated and should no longer be used.
......
...@@ -11,6 +11,13 @@ ...@@ -11,6 +11,13 @@
# #
############################################################################## ##############################################################################
import warnings
warnings.warn('Using StructuredText is deprecated (will be removed in Zope '
'2.12). Instead use zope.structuredtext.',
DeprecationWarning,
stacklevel=2)
import HTMLClass, DocumentClass import HTMLClass, DocumentClass
import ClassicDocumentClass import ClassicDocumentClass
from StructuredText import html_with_references, HTML, html_quote from StructuredText import html_with_references, HTML, html_quote
......
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