blob: 517feb7f3277f364e16d76ada06302cb32cebb3b (
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
|
{% extends "base.html" %}
{% block title %}
Debian Project patch tracking system
{% endblock %}
{% block content %}
<h1>Debian Project patch tracking system</h1>
<h2>Introduction</h2>
<p>
This site is used to track/visualize the changes made in the source code
of software packaged in the debian distribution.
</p>
<h2>Quick access</h2>
<ul>
<li><span class="url">{{ conf.root_url }}/package/<p></span>
- search for package p</li>
<li><span class="url">{{ conf.root_url }}/package/<p>/<v></span>
- go directly to the page for package p, version v</li>
<li><span class="url">{{ conf.root_url }}/email/<u></span>
- show packages with maintainer address containing u.</li>
</ul>
<h3>Browse patches by package name</h3>
<div class="quicklinks">
{% for index in indices %}
<a href="{% url patchtracker.views.display_toc index=index %}">{{ index }}</a>
{% if not forloop.last %}
-
{% endif %}
{% empty %}
Error fetching indices of available packages
{% endfor %}
<!-- <a href="index/"{{ k }}">{{ k }}</a> -->
</div>
<h3>Jump to package / Package search</h3>
<div class="framed">
<form name="jumper" action="jump" method="post">
<input type="text" name="package" />
<input type="submit" name="submit" />
</form>
</div>
{% endblock %}
|