diff options
-rwxr-xr-x | projects.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projects.rb b/projects.rb index 0668e07..8c73569 100755 --- a/projects.rb +++ b/projects.rb @@ -17,12 +17,12 @@ projects_q = Query.new do pattern [:proj_uri, GentooWiki::PROP_NAME, :proj_name] pattern [:proj_uri, GentooWiki::PROP_CONTACT, :proj_email] pattern [:proj_uri, GentooWiki::PROP_DESC, :proj_desc] - pattern [:proj_uri, RDFS.label, :proj_title] + pattern [:proj_uri, RDF::RDFS.label, :proj_title] pattern [:proj_uri, GentooWiki::PROP_PAGE, :proj_href] # Find parents pattern [:proj_uri, GentooWiki::PROP_PARENT_PROJECT, :parent_uri] - pattern [:parent_uri, RDFS.label, :parent_title] + pattern [:parent_uri, RDF::RDFS.label, :parent_title] pattern [:proj_uri, GentooWiki::PROP_PROPAGATES_MEMBERS, :propagates_members], optional: true pattern [:proj_uri, GentooWiki::PROP_IRC, :proj_irc], optional: true |