Commit a686741e174d5b6bba01cf05109f8ec5902a98c3

Authored by Evandro Jr
2 parents bbe7e5ec dd846d23

Merge branch 'virtuoso_integration' of gitlab.com:participa/noosfero into virtuoso_integration

plugins/virtuoso/lib/ext/uri.rb 0 → 100644
... ... @@ -0,0 +1,7 @@
  1 +class RDF::URI
  2 +
  3 + def to_liquid
  4 + value
  5 + end
  6 +
  7 +end
... ...
plugins/virtuoso/views/virtuoso_plugin_admin/index.html.erb
... ... @@ -51,7 +51,7 @@
51 51 <div class="triple-management">
52 52 <div class="actions">
53 53 <%= button :edit, _('Triples management'), :action => :triples_management %>
54   - <%= button :edit, _('Custom Queries'), :action => :index, :controller => 'virtuoso_plugin_custom_queries' %>
  54 + <%= button :edit, _('Custom Templates'), :action => :index, :controller => 'virtuoso_plugin_custom_queries' %>
55 55 <%= button :edit, _('Ontology mapping'), :action => :index, :controller => 'virtuoso_plugin_ontology_mapping' %>
56 56 </div>
57 57 </div>
... ...
plugins/virtuoso/views/virtuoso_plugin_custom_queries/edit.html.erb
1   -<h1><%= _('Manage Custom Queries - Edit') %></h1>
  1 +<h1><%= _('Manage Custom Templates - Edit') %></h1>
2 2  
3 3 <%= render 'form' %>
4 4  
... ...
plugins/virtuoso/views/virtuoso_plugin_custom_queries/index.html.erb
1   -<h1><%= _('Manage Custom Queries') %></h1>
  1 +<h1><%= _('Manage Custom Templates') %></h1>
2 2  
3 3 <table>
4 4 <tr>
... ...
plugins/virtuoso/views/virtuoso_plugin_custom_queries/new.html.erb
1   -<h1><%= _('Manage Custom Queries - New') %></h1>
  1 +<h1><%= _('Manage Custom Templates - New') %></h1>
2 2  
3 3 <%= render 'form' %>
4 4  
... ...