Is anybody seeing errors due to changes in PluginManifestParser with revision 394228. With the following code being commented out I am seeing protocol not found errors:

                       /*
NamedNodeMap list = oneImplementation.getAttributes();
                       for (int k = 0; k < list.getLength(); k++) {
                           Node attribute = list.item(k);
                           String name = attribute.getNodeName();
                           if (name.equals("id") || name.equals("class"))
                               continue;
                           String value = attribute.getNodeValue();
                           extension.addAttribute(name, value);
                       }*/

Dennis

Reply via email to