I have a Python method in a product, which in turn calls a DTML Method.
def test(self, REQUEST=None):
return self.myDTMLMethod(REQUEST)
But the DTML Method doesn't have access to the namespace!
I see I can pass in a mapping to the DTML Method, but how do I get the
namespace in Python?
Thanks!
Andrew