フォルダー オブジェクトなどのテスト ケースを使用せずに、REPL から Zope DTML をどのようにレンダリングしますか?
次の内容の /tmp/tmp.dtml というファイルがあります。
<dtml-var test>
私はこれまで得ることができました:
from AccessControl import ImplC as impl
from App.special_dtml import DTMLFile
#globals has test variable define if that helps?
dtml_page = DTMLFile('/tmp/tmp',globals())
dtml_page() give "None\n"
DTMLFile オブジェクトまたは呼び出し中に正しい名前空間を挿入するにはどうすればよいですか?