--- src/factory.h Mon Feb 03 10:55:11 2014 +++ src/factory.h Mon Feb 03 10:57:44 2014 @@ -64,7 +64,12 @@ if (it == this->_object_map.end()) { //throw FactoryExceptions::TypeNotRegistered(id); - g_warning("unknown type: %s", id.c_str()); + if (!(id.empty() // comments, usually + or id == "rdf:RDF" // no SP node yet + or id == "inkscape:clipboard" // SP node not necessary + or id == "inkscape:_templateinfo")) { + g_warning("unknown type: %s", id.c_str()); + } return NULL; }