blob: 7c9000fc1288260a7917f8666e525729419eddde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{% extends "base.html" %}
{% block title %}Debian duplication detector{% endblock %}
{% block header %}
<script type="text/javascript">
function getLinkTarget() {
var pkg = document.getElementById("pkg_name").value;
if(pkg) {
return "/binary/"+pkg;
}
return '#';
}
function processData() {
var link = document.getElementById("perma_link");
link.href = getLinkTarget();
link.text = location.href + getLinkTarget();
}
window.onload = function() {
document.getElementById('pkg_name').onkeyup = processData;
document.getElementById("pkg_form").onsubmit = function () {
location.href = getLinkTarget();
return false;
}
processData();
document.getElementById("form_div").style.display = '';
}
</script>
{% endblock %}
{% block content %}
<h1>Debian duplication detector</h1>
<ul>
<li>To inspect a particlar binary package, go to <pre>binary/<packagename></pre> Example: <a href="binary/git">binary/git</a>
<div style="display:none" id="form_div"><fieldset>
<legend>Inspect package</legend>
<noscript><b>This form is dysfunctional when javascript is not enabled</b></noscript>
Enter binary package to inspect - Note: Non-existing packages will result in <b>404</b>-Errors
<form id="pkg_form">
<label for="pkg_name">Name: </label><input type="text" size="30" name="pkg_name" id="pkg_name">
<input type="submit" value="Go"> Permanent Link: <a id="perma_link" href="#"></a>
</form>
</fieldset></div></li>
<li>To inspect a combination of binary packages go to <pre>compare/<firstpackage>/<secondpackage></pre> Example: <a href="compare/git/git">compare/git/git</a></li>
<li>To discover package shipping a particular file go to <pre>hash/sha512/<hashvalue></pre> Example: <a href="hash/sha512/7633623b66b5e686bb94dd96a7cdb5a7e5ee00e87004fab416a5610d59c62badaf512a2e26e34e2455b7ed6b76690d2cd47464836d7d85d78b51d50f7e933d5c">hash/sha512/7633623b66b5e686bb94dd96a7cdb5a7e5ee00e87004fab416a5610d59c62badaf512a2e26e34e2455b7ed6b76690d2cd47464836d7d85d78b51d50f7e933d5c</a></li>
</ul>
{% endblock %}
|