-
Notifications
You must be signed in to change notification settings - Fork 19
/
news.html.tmpl
131 lines (130 loc) · 4.98 KB
/
news.html.tmpl
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[%# News file for the FreeBSD bugzilla instance #%]
[% news = [
{
date => '2015-02-28',
text => '<ul>
<li>The auto assigner will not add comments on adding CCs or reassignments
anymore. You can see such changes via the inline history
(<a href="userprefs.cgi">General Preferences</a>, <strong>When
viewing a bug, show all bug activity</strong>).</li>
<li>The <strong>When viewing a bug, show all bug activity</strong>
preference setting is enabled by default now.</li>
<li>Ports bugs containing <strong>[category/port]</strong> are
recognized again by the auto assigner.</li>
<li>The auto assigner will send mails to port maintainers not being
signed up for FreeBSD Bugzilla now, if a bug report is submitted.</li>
<li>If a ports bug is submitted for a platform, which is not i386 and not amd64,
the architecture-specific mailing list (e.g. freebsd-mips or freebsd-ia64)
is added to the bug report automatically now.</li>
<li>The <strong>patch</strong> and <strong>regression</strong> keywords
are added automatically to bugs, if the title of the bug contains
<strong>[patch]</strong> or <strong>patch:</strong> (likewise for
regression) on submission.</li>
<li>The comment box features a brief editing help now.</li>
<li>A bug, which prevented requesting or granting
<strong>maintainer-approval</strong> flags on attachments has been
fixed</li>
<li>The <strong>My Requests</strong> overview was replaced with two
lists of (active) requests in the
<a href="page.cgi?id=dashboard.html">Dashboard</a>.</li>
</ul>'
},
{
date => '2014-12-23',
text => '<ul>
<li>Products and Components in the issue tracker have been extensively
modified, including new, renamed and moved items. You can familiarize
yourself with the new categorization structure in
<a href="query.cgi?format=advanced">Advanced Search</a>
</li></ul>'
},
{
date => '2014-12-21',
text => '<ul>
<li>An inline history extension has been rolled out, which displays the changes
to a bug chronologically between the comments. You can enable it in the
<a href="userprefs.cgi">General Preferences</a> via the <strong>When viewing a
bug, show all bug activity</strong> knob.</li>
</ul>'
},
{
date => '2014-11-28',
text => '<ul>
<li>The auto assigner has been updated to fix some minor issues
with detecting ports and to add <strong>games@</strong> as CC for
unmaintained ports from the <strong>games/</strong> category.</li>
</ul>'
},
{
date => '2014-11-22',
text => '<p>The status switches were reworked to simplify
workflows:</p>
<ul>
<li><strong>Needs Triage</strong> has become <strong>New</strong></li>
<li><strong>Aproval Needed</strong> and <strong>Feedback
Needed</strong> have been removed. Use
the <strong>maintainer-feedback</strong> flag instead.</li>
<li><strong>In Discussion</strong> has been renamed to <strong>In
Progress</strong>.</li>
<li><strong>Needs MFC</strong> has ben removed. Use the
<strong>mfc-stableX</strong> and <strong>merge-quarterly</strong>
flags instead.</li>
<li><strong>Patch Ready</strong> has been removed. Use
the <strong>patch-ready</strong> keyword instead.</li>
<li><strong>Issue Resolved</strong> and <strong>Timeout</strong> have
become <strong>Closed</strong>.</li>
</ul>
<p>Please check your saved queries and report charts. Other changes:</p>
<ul>
<li>Some minor styling issues with the CSS have been fixed.</li>
</ul>
'
},
{
date => '2014-11-01',
text => '<ul>
<li>A minor formatting issue with the SVN and review links was fixed, so that
newline characters are not removed anymore.
</li>
<li>The default resolution entry "---" in the
<a href="query.cgi?format=advanced">Advanced Search</a> was removed.
</ul>'
},
{
date => '2014-10-07',
text => '<ul>
<li>A minor issue with the <strong>Bugs waiting for feedback</strong> query
on the <a href="page.cgi?id=dashboard.html">Dashboard</a> has been fixed.</li>
</ul>'
},
{
date => '2014-09-29',
text => '<ul>
<li>A new <a href="page.cgi?id=dashboard.html">Dashboard</a>
page has been added. It provides useful metrics and predefined searches
for various bug types. You can reach it from the link bars at the top or
bottom.
</li>
<li>Links to commits of the different SVN repositories can be embedded in
comments now. They work similar to bug or comment links using a
<strong>repotype XXXX</strong> syntax. Valid repotype values are
<ul><li><strong>ports</strong> for ports commits</li>
<li><strong>base</strong> for base system commits and</li>
<li><strong>doc</strong> for documentation commits</li>
<li><strong>review</strong> for links
to <a href="https://reviews.FreeBSD.org">reviews.FreeBSD.org</a> - those
must have a leading <strong>D</strong>, e.g. <strong>review
D123</strong>.</li>
</ul>
</li>
</ul>'
},
]
%]
[% FOREACH item IN news %]
[% BREAK IF loop.count() > 5 %]
<div class="entry">
<span class="date">[% item.date FILTER html %]</span>
<p>[% item.text %]</p>
</div>
[% END %]