registered the deserializer for text/html as well to make it work with LL's agent domain

This commit is contained in:
tao.takashi
2008-07-29 17:52:40 +00:00
committed by Salad Dais
parent 1f52714e9c
commit d8a7e6f6f2

View File

@@ -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)