From d8a7e6f6f2b675783b904e079fcabf39a359c07a Mon Sep 17 00:00:00 2001 From: "tao.takashi" Date: Tue, 29 Jul 2008 17:52:40 +0000 Subject: [PATCH] registered the deserializer for text/html as well to make it work with LL's agent domain --- pyogp/lib/base/caps.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyogp/lib/base/caps.py b/pyogp/lib/base/caps.py index 87bd063..ac625cd 100644 --- a/pyogp/lib/base/caps.py +++ b/pyogp/lib/base/caps.py @@ -147,6 +147,11 @@ class LLSDDeserializer(grok.GlobalUtility): data = fp.read() return self.deserialize_string(data) +# TODO: remove this again! Just a workaround for SVC-2682 +grok.global_utility(LLSDDeserializer, + provides=IDeserialization, + name='text/html', + direct=False)