Hi,
For compatibility reasons with an older project, I'm trying to get CherryPy to return a header in uppercase, eg: X-UPPERCASE-TEST: Hello! My code for this looks something like this: class Root(controllers.RootController) @expose(....) def index(self, *args, **kw): cherrypy.response.headers['X-UPPERCASE-TEST'] = 'Hello!' My problem is that the header is being returned as Title Case by the server, and I'm not sure why: $ wget -S http://etc.etc.etc:8080/ ... X-Uppercase-Test: Hello! Could anyone suggest what's going on here? I'm I'm truly breaking standards here I could switch to using Title Case, but it'd be a pain to. I'm using TG 1.0b1 Thanks and regards, Nick Murdoch --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

