diff --git a/db/publications.json b/db/publications.json index f99f7a63..4d9d6ade 100644 --- a/db/publications.json +++ b/db/publications.json @@ -1,4 +1,16 @@ [ + { + "title" : "Adaptive Schema Databases", + "authors" : [ + "William Spoth", "Bahareh Sadat Arab", "Eric S. Chan", "Dieter Gawlick", + "Adel Ghoneimy", "Boris Glavic", "Beda Hammerschmidt", "Oliver Kennedy", + "Seokki Lee", "Zhen Hua Liu", "Xing Niu", "Ying Yang" + ], + "venue" : "CIDR", + "year" : 2016, + "projects" : ["mimir", "vizier"], + "authornote" : "alpha" + }, { "title" : "Exploiting Qualitative User Feedback in Deterministic and Probabilistic Databases", "authors" : ["Niccolò Meneghetti"], diff --git a/src/research/mimir/index.erb b/src/research/mimir/index.erb index b41e807d..5245ea56 100644 --- a/src/research/mimir/index.erb +++ b/src/research/mimir/index.erb @@ -83,7 +83,9 @@ libraryDependencies += "info.mimirdb" %% "mimir" % "0.1-SNAPSHOT" where { |pub| pub.fetch("projects", []).include? "mimir" }. each do |pub| %> -
<%=pub["title"]%>   <%=pub["venue"]%>   ( <%= pub["urls"].map { |r, url| "#{r}"}.join(" | ") %> )
+
<%=pub["title"]%>   <%=pub["venue"]%><% if pub.has_key? "urls" %> +    ( <%= pub["urls"].map { |r, url| "#{r}"}.join(" | ") %> ) + <% end %>
<% end %> diff --git a/src/vizier/index.erb b/src/vizier/index.erb index e2126c46..7580aa07 100644 --- a/src/vizier/index.erb +++ b/src/vizier/index.erb @@ -45,7 +45,9 @@ template: templates/empty.erb where { |pub| pub.fetch("projects", []).include? "vizier" }. each do |pub| %> -
<%=pub["title"]%>   <%=pub["venue"]%>   ( <%= pub["urls"].map { |r, url| "#{r}"}.join(" | ") %> )
+
<%=pub["title"]%>   <%=pub["venue"]%><% if pub.has_key? "urls" %> +    ( <%= pub["urls"].map { |r, url| "#{r}"}.join(" | ") %> ) + <% end %>
<% end %>