Commit 7763ce75 authored by Andreas Jung's avatar Andreas Jung

Re-enabling inner links for STXNG only worked when using STXNG

standalone but not through DTML. Fixed !
parent 60d19637
...@@ -217,8 +217,8 @@ Evaluating expressions without rendering results ...@@ -217,8 +217,8 @@ Evaluating expressions without rendering results
''' # ' ''' # '
__rcs_id__='$Id: DT_Var.py,v 1.45 2001/10/26 16:07:50 matt Exp $' __rcs_id__='$Id: DT_Var.py,v 1.46 2001/10/29 16:56:43 andreasjung Exp $'
__version__='$Revision: 1.45 $'[11:-2] __version__='$Revision: 1.46 $'[11:-2]
from DT_Util import parse_params, name_param, str from DT_Util import parse_params, name_param, str
import re, string, sys import re, string, sys
...@@ -417,8 +417,9 @@ def len_comma(v, name='(Unknown name)', md={}): ...@@ -417,8 +417,9 @@ def len_comma(v, name='(Unknown name)', md={}):
StructuredText=None StructuredText=None
def structured_text(v, name='(Unknown name)', md={}): def structured_text(v, name='(Unknown name)', md={}):
global StructuredText global StructuredText
if StructuredText is None: from StructuredText import html_with_references if StructuredText is None:
return str(html_with_references(str(v),level=3,header=0)) from StructuredText.StructuredText import HTML
return HTML(str(v),level=3,header=0)
def sql_quote(v, name='(Unknown name)', md={}): def sql_quote(v, name='(Unknown name)', md={}):
"""Quote single quotes in a string by doubling them. """Quote single quotes in a string by doubling them.
......
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