Code

r19136@shi: ted | 2008-04-24 19:44:01 -0700
[inkscape.git] / src / extension / system.cpp
index 16e13c94defaf1c59e2a188f67a91e2f2b770002..cd70042b6e758d2918956fe0fa2268817a95927c 100644 (file)
@@ -392,7 +392,7 @@ build_from_reprdoc(Inkscape::XML::Document *doc, Implementation::Implementation
     /* sp_repr_print(repr); */
 
     if (strcmp(repr->name(), INKSCAPE_EXTENSION_NS "inkscape-extension")) {
-        g_warning("Extension definition started with <%s> instead of <" INKSCAPE_EXTENSION_NS "inkscape-extension>.  Extension will not be created.\n", repr->name());
+        g_warning("Extension definition started with <%s> instead of <" INKSCAPE_EXTENSION_NS "inkscape-extension>.  Extension will not be created. See http://wiki.inkscape.org/wiki/index.php/Extensions for reference.\n", repr->name());
         return NULL;
     }
 
@@ -495,8 +495,6 @@ build_from_reprdoc(Inkscape::XML::Document *doc, Implementation::Implementation
 Extension *
 build_from_file(gchar const *filename)
 {
-    /* TODO: Need to define namespace here, need to write the
-       DTD in general for this stuff */
     Inkscape::XML::Document *doc = sp_repr_read_file(filename, INKSCAPE_EXTENSION_URI);
     Extension *ext = build_from_reprdoc(doc, NULL);
     if (ext != NULL)