Commit 45c9edb1 authored by Łukasz Nowak's avatar Łukasz Nowak

Force Content-Type everywhere.

parent 25452f88
...@@ -162,7 +162,7 @@ class SlapTool(BaseTool): ...@@ -162,7 +162,7 @@ class SlapTool(BaseTool):
.getCachePluginList()[0] .getCachePluginList()[0]
def _getCacheComputerInformation(self, computer_id, user): def _getCacheComputerInformation(self, computer_id, user):
self.REQUEST.response.setHeader('Content-Type', 'text/xml') self.REQUEST.response.setHeader('Content-Type', 'text/xml; charset=utf-8')
slap_computer = Computer(computer_id) slap_computer = Computer(computer_id)
parent_uid = self._getComputerUidByReference(computer_id) parent_uid = self._getComputerUidByReference(computer_id)
...@@ -225,7 +225,7 @@ class SlapTool(BaseTool): ...@@ -225,7 +225,7 @@ class SlapTool(BaseTool):
user_document = _assertACI(self.getPortalObject().portal_catalog.unrestrictedGetResultValue( user_document = _assertACI(self.getPortalObject().portal_catalog.unrestrictedGetResultValue(
reference=user, portal_type=['Person', 'Computer', 'Software Instance'])) reference=user, portal_type=['Person', 'Computer', 'Software Instance']))
user_type = user_document.getPortalType() user_type = user_document.getPortalType()
self.REQUEST.response.setHeader('Content-Type', 'text/xml') self.REQUEST.response.setHeader('Content-Type', 'text/xml; charset=utf-8')
slap_computer = Computer(computer_id) slap_computer = Computer(computer_id)
parent_uid = self._getComputerUidByReference(computer_id) parent_uid = self._getComputerUidByReference(computer_id)
...@@ -297,7 +297,7 @@ class SlapTool(BaseTool): ...@@ -297,7 +297,7 @@ class SlapTool(BaseTool):
'getComputerPartitionCertificate') 'getComputerPartitionCertificate')
def getComputerPartitionCertificate(self, computer_id, computer_partition_id): def getComputerPartitionCertificate(self, computer_id, computer_partition_id):
"""Method to fetch certificate""" """Method to fetch certificate"""
self.REQUEST.response.setHeader('Content-Type', 'text/xml') self.REQUEST.response.setHeader('Content-Type', 'text/xml; charset=utf-8')
software_instance = self._getSoftwareInstanceForComputerPartition( software_instance = self._getSoftwareInstanceForComputerPartition(
computer_id, computer_partition_id) computer_id, computer_partition_id)
certificate_dict = dict( certificate_dict = dict(
......
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