yacy_search_server/htroot/api/citation.html
Michael Peter Christen fd1776a3b0 added a new 'Citations' function: each search result item can now be
explored for citations within other documents. A click on the
'Citations' link shows an analysis with all text lines in the document
each with a complete list of documents which contain the same line. A
second section shows the linking documents in ascending order of number
of citations from the original document. Because documents from
different hosts are most interesting here, they are listed at the top of
the page as possible 'copypasta' source.
2013-06-12 15:02:49 +02:00

35 lines
1.2 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy '#[clientname]#': Document Citations for url #[url]#</title>
#%env/templates/metas.template%#
</head>
<body>
#%env/templates/embeddedheader.template%#
<h1>Document Citations for<br><a href="#[url]#">#[url]#</a></h1>
#(similar)#::
<h3>Similar documents from different hosts:</h3>
<ul>#{links}#
<li><a href="#[url]#">#[url]#</a></li>
#{/links}#</ul>
#(/similar)#
<form action="#" name="" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
<fieldset>
<legend><label>List of Sentences in #[url]#</label></legend>
<dl>#{sentences}#
<dt>#[dt]#</dt><dd>#[dd]#</dd>
#{/sentences}#</dl>
</fieldset>
</form>
<form action="#" name="" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
<fieldset>
<legend><label>List of other web pages with citations</label></legend>
<dl>#{citations}#
<dt>#[dt]#</dt><dd>#[dd]#</dd>
#{/citations}#</dl>
</fieldset>
</form>
#%env/templates/embeddedfooter.template%#
</body>
</html>