summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--base.html7
-rwxr-xr-xwebapp.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/base.html b/base.html
index 65bc6df..08069a9 100644
--- a/base.html
+++ b/base.html
@@ -6,5 +6,12 @@
<body>
{% block content %}
{% endblock %}
+<hr>
+<ul>
+ <h4>Details about this service</h4>
+ <li>Maintainer: Helmut Grohne &lt;helmut@subdivi.de&gt;</li>
+ <li>Source: git://murkel.subdivi.de/~helmut/debian-dedup.git</li>
+ <li>Bugs reports / Feedback / Patches: to the maintainer</li>
+</ul>
</body>
</html>
diff --git a/webapp.py b/webapp.py
index e175507..df8cba7 100755
--- a/webapp.py
+++ b/webapp.py
@@ -91,7 +91,7 @@ index_template = jinjaenv.from_string(
<li>To inspect a particlar binary package, go to <pre>binary/&lt;packagename&gt;</pre> Example: <a href="binary/git">binary/git</a></li>
<li>To inspect a combination of binary packages go to <pre>compare/&lt;firstpackage&gt;/&lt;secondpackage&gt;</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/&lt;hashvalue&gt;</pre> Example: <a href="hash/sha512/ed94df7781793f06f9426a600c1bde86397afc7b35cb3aa11b60214bd31e35ad893b53a04a2cf4676154982d7c204c4aa165d6ccdaac0170031364a05dbab3bc">hash/sha512/ed94df7781793f06f9426a600c1bde86397afc7b35cb3aa11b60214bd31e35ad893b53a04a2cf4676154982d7c204c4aa165d6ccdaac0170031364a05dbab3bc</a></li>
-<ul>
+</ul>
{% endblock %}""")
class Application(object):