Author: bree
Date: Mon Apr 17 15:42:22 2006
New Revision: 2858

Modified:
   azax/branches/plugin/parsers.py
Log:
commented out adding of xmlns namespace to 1st level tags in the kukit params; 
I think this is not needed any more, after kukit patches r25865, r25866

Modified: azax/branches/plugin/parsers.py
==============================================================================
--- azax/branches/plugin/parsers.py     (original)
+++ azax/branches/plugin/parsers.py     Mon Apr 17 15:42:22 2006
@@ -56,8 +56,12 @@
     def __init__(self, value):
         value = force_unicode(value)
         self.soup = self.BeautifulSoup(value)
-        for tag in self.soup.fetch(recursive=False):
-            tag['xmlns'] = "http://www.w3.org/1999/xhtml";
+        #
+        # XXX ree: I think these are not needed any more. See
+        # kukit patches r25865, r25866 that IMO fix this on IE.
+        #
+        #for tag in self.soup.fetch(recursive=False):
+        #    tag['xmlns'] = "http://www.w3.org/1999/xhtml";
 
     def __call__(self):
         return unicode(self.soup)
-- 
http://lists.nuxeo.com/mailman/listinfo/z3lab-checkins

Reply via email to