# HG changeset patch # User root@ismi-dev.rz-berlin.mpg.de # Date 1444396354 -7200 # Node ID b709419d4235b7ae2bdb4237f9049dab62de359a # Parent d964d9a238377cc8b65bf0d588b6a70f6626796b show id for author in detail panel. diff -r d964d9a23837 -r b709419d4235 ismi-python-neo4jrestclient/static/commentaries_authors3.html --- a/ismi-python-neo4jrestclient/static/commentaries_authors3.html Fri Oct 09 15:01:20 2015 +0200 +++ b/ismi-python-neo4jrestclient/static/commentaries_authors3.html Fri Oct 09 15:12:34 2015 +0200 @@ -114,7 +114,7 @@ $(this).next().slideToggle(); }); // provide search and graph - backendApiPrefix = ""; + backendApiPrefix = "/netvis-ismi"; searchApi = {}; $(function () { function showText(text_id) { @@ -123,7 +123,7 @@ if (!data) return; $("#title").text("Title: "+data.title); var $list = $("#info").empty(); - $list.append($("
  • Author: " + data.author.label + "
  • ") + $list.append($("
  • Author: " + data.author.label + " [" + data.author.ismi_id + "]
  • ") .click(function() { search(data.author.ismi_id, true); })); @@ -222,7 +222,7 @@ .attr("class","arrowHead"); // load graph - d3.json(backendApiPrefix+"/graph?limit=10", function(error, graph) { + d3.json(backendApiPrefix+"/graph?limit=1000", function(error, graph) { if (error) return; force.nodes(graph.nodes).links(graph.links).start();