-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathproject.html
More file actions
79 lines (73 loc) · 1.95 KB
/
Copy pathproject.html
File metadata and controls
79 lines (73 loc) · 1.95 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{% extends "base.html" %}
{% block title %}{{ project.name }}{% endblock %}
{% block info_active %}active{% endblock %}
{% block body %}
<h1>About {{ project.name }}</h1>
<table class="horizontal">
<tr>
<th>Name</th>
<td>{{ project.name }}
</tr>
<tr>
<th>List address</th>
<td>{{ project.listemail }}</td>
</tr>
{% if project.list_archive_url %}
<tr>
<th>List archive</th>
<td><a href="{{ project.list_archive_url }}">{{ project.list_archive_url }}</a></td>
</tr>
{% endif %}
<tr>
<th>Maintainer{{ maintainers|length|pluralize }}</th>
<td>
{% for maintainer in maintainers %}
{{ maintainer.profile.name }}
<<a href="mailto:{{ maintainer.email }}">{{ maintainer.email }}</a>>
<br />
{% endfor %}
</td>
</tr>
<tr>
<th>Patches </th>
<td>{{ n_patches }} (+ {{ n_archived_patches }} archived)</td>
</tr>
{% if project.web_url %}
<tr>
<th>Website</th>
<td><a href="{{ project.web_url }}">{{ project.web_url }}</a></td>
</tr>
{% endif %}
{% if project.webscm_url %}
<tr>
<th>Source Code Web Interface</th>
<td><a href="{{ project.webscm_url }}">{{ project.webscm_url }}</a></td>
</tr>
{% endif %}
{% if project.scm_url %}
<tr>
<th>Source Code Manager URL</th>
<td><a href="{{ project.scm_url }}">{{ project.scm_url }}</a></td>
</tr>
{% endif %}
</table>
{% if enable_xmlrpc %}
<h2>pwclient</h2>
<p>
<code>pwclient</code> is the command-line client for Patchwork. Currently,
it provides access to some read-only features of Patchwork, such as
downloading and applying patches.
</p>
<p>To use pwclient, you will need:</p>
<ul>
<li>
The <a href="https://github.com/getpatchwork/pwclient">pwclient</a>
program.
</li>
<li>
(Optional) A <code><a href="{% url 'pwclientrc' project.linkname %}">.pwclientrc</a></code>
file for this project, which should be stored in your home directory.
</li>
</ul>
{% endif %}
{% endblock %}