Re: [users@httpd] mod_proxy_html Issue

2012-01-24 Thread Roman Gelfand
 "word1 word2" becomes "word1 word2" is what happens. Perhaps, the libxml2 that ships with debian lenny, os I am using, is outdated. Is there a way, other than mod_proxy_html, to get rid of the base tag. Thanks, On Mon, Jan 23, 2012 at 8:57 PM, Igor Cicimov wrote: > Sorry mate not a C person m

Re: [users@httpd] mod_proxy_html Issue

2012-01-23 Thread Igor Cicimov
Sorry mate not a C person my self :) From the look of it that function puts the non HTML characters like <,&,>" into HTML format. Since   is already HTML formatted this function shouldn't affect it at all. But as I said I'm not the right person to comment on this hopefully someone alse can help.

Re: [users@httpd] mod_proxy_html Issue

2012-01-23 Thread Roman Gelfand
I think I have the latest version as I picked it up from the site. Actually, after doing a little digging, I found that mod_proxy_html by way of mod_xml2enc parses the html and, ultimately, puts it back together again. At the time of parsing, it replaces   with 0xc2 0xca or something like that.

Re: [users@httpd] mod_proxy_html Issue

2012-01-23 Thread Igor Cicimov
Which version? If it is the newest one have you loaded mod_xml2enc too? Did you look for answer on the module web site? http://apache.webthing.com/mod_proxy_html/config.html Igor On Tue, Jan 24, 2012 at 10:29 AM, Roman Gelfand wrote: > I am using this module to rewrite the contents of html doc

[users@httpd] mod_proxy_html Issue

2012-01-23 Thread Roman Gelfand
I am using this module to rewrite the contents of html documents. It appears that it strips   which causes me all kinds of grief with IE. Looking, briefly, at mod_proxy_html.c, I couldn't find reference to  . Unless, it is a setting in mod_proxy_html config file? Any suggestions are appreciated