blob: d1d3fd322dd7c0c2e9310110f9aa988640d17b4a (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<p>The most recent three comments for each patch will be displayed below. To
view all the comments for a particular patch, or to add a comment or make other
changes, click on the patch name.</p>
[% IF filter_text.size > 0 %]
<p style='color: #00f; font-weight: bold'>[% FOREACH f = filter_text %][% f | html %][% END %]</p>
[% END %]
[% IF status_count_list.size > 0 %]
<p><b>Status Summary</b>.
[% FOREACH sc = status_count_list %]
<a href='/https/git.postgresql.org/action/commitfest_view?id=[% d.id %]&status=[% sc.patch_status_id %]'>[% sc.patch_status %]</a>: [% sc.num_patches %][% IF !loop.last %],[% ELSE %].[% END %]
[% END %] <a href='/https/git.postgresql.org/action/commitfest_view?id=[% d.id %]'>Total</a>: [% total_count %].
</p>
[% END %]
[% FOREACH g = patch_grouping %]
[% IF g.patch_list.size > 0 || filter_text.size == 0 %]
<h2>[% g.name | htmlsafe %]</h2>
[% IF g.patch_list.size %]
<div class='tblBasic'>
<table cellspacing='0' class='tblBasicGrey' style='width: 100%'>
<tr class='firstrow'>
<th class='colFirst' style='width: 60%'>Patch Name</th>
<th>Status</th>
<th>Author</th>
<th>Reviewers</th>
<th class='colLast'>[% IF g.closed %]Date Closed[% ELSE %]Last Activity[% END %]</th>
</tr>
[% FOREACH p = g.patch_list %]
<tr[% IF loop.last %] class='lastrow'[% END %]>
[% IF p.topic_header %]
<td class='colFirstT' colspan='5'><h3 style='margin: 0px'>[% p.commitfest_topic | htmlsafe %]</h3></td>
<td class='colLast'> </td>
[% ELSE %]
<td class='colFirstT'><a href='/https/git.postgresql.org/action/patch_view?id=[% p.id %]'>[% p.name | htmlsafe %]</a>
<div style='padding-left: 1em'>
[% FOREACH c = p.comment_list %]
<div style='margin-left: 1em; text-indent: -1em'><span class='txtAttribution'>[% IF c.message_id != '' %]<a href='http://archives.postgresql.org/message-id/[% c.message_id | htmlsafe %]'>[% END %][% c.patch_comment_type | htmlsafe %][% IF c.message_id != '' %]</a>[% END %] by [% c.creator | html %] on [% c.creation_time | html %]:</span> [% c.content | html | html_line_break %]</div>
[% END %]
</div>
</td>
<td class='colMidT'>[% p.patch_status | htmlsafe %]</td>
<td class='colMidT'>[% p.author | htmlsafe %]</td>
<td class='colMidT'>[% IF p.reviewers != '' %][% p.reviewers %][% ELSE %]<span class='controlerror'>Nobody</span>[% END %]</td>
<td class='colLastT'>[% IF g.closed %][% IF p.date_closed.defined %][% p.date_closed %][% ELSE %](None)[% END %][% ELSE %][% IF p.comment_list.defined && p.comment_list.-1.defined %][% p.comment_list.-1.creation_time %][% ELSE %](None)[% END %][% END %]</td>
[% END %]
</tr>
[% END %]
</table>
</div>
[% ELSE %]
<div>No patches.</div>
[% END %]
[% END %]
[% END %]
|