changeset 365:feac60b5d82b

Add dc:title for plugin library
author Chris Cannam
date Thu, 05 Jun 2014 15:40:04 +0100
parents 2741e4323d1d
children aede6e90a6b8
files rdf/generator/vamp-rdf-template-generator.cpp
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rdf/generator/vamp-rdf-template-generator.cpp	Fri Mar 28 13:13:08 2014 +0000
+++ b/rdf/generator/vamp-rdf-template-generator.cpp	Thu Jun 05 15:40:04 2014 +0100
@@ -93,7 +93,7 @@
 {
     string res=\
         ":"+libname+" a  vamp:PluginLibrary ;\n\
-    vamp:identifier \""+libname+"\" ";
+    vamp:identifier \""+libname+"\"";
 
     for (size_t i = 0; i < plugins.size(); ++i) {
         res += " ; \n\
@@ -101,6 +101,7 @@
     }
 
     res += " ; \n\
+#   dc:title \"\" ; # Place a descriptive name for the plugin library here and uncomment\n\
 #   foaf:page <Place more-information HTML page URL here and uncomment> ;\n\
     .\n\n";
     return res;