Rubber-stamped by Brady Eidson.
[webbrowser.git] / WebKitTools / QueueStatusServer / index.html
blobfbd51fb0fdcdf4c7ff2cc1adb9ab861942323903
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>WebKit Commit Queue Status</title>
5 <link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
6 </head>
7 <body>
8 <center>
9 <div id="current_status">
10 {{ last_status.message|force_escape|urlize|webkit_linkify|safe }}
11 <div id="last_status_date">As of {{ last_status.date|timesince }} ago</div>
12 </div>
14 <table id="recent_status_table">
15 <tr>
16 <th colspan=2>Recent Status</th>
17 </tr>
18 {% for recent_status in recent_statuses %}
19 <tr>
20 <td class='status_date'>{{ recent_status.date|timesince }} ago</td>
21 <td class="recent_status">{{ recent_status.message|force_escape|urlize|webkit_linkify|safe }}</td>
22 </tr>
23 {% endfor %}
24 </table>
26 <div id="footer"><a href="https://bugs.webkit.org/buglist.cgi?query_format=advanced&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&field0-0-0=flagtypes.name&type0-0-0=equals&value0-0-0=commit-queue%2B">queued bugs</a> | <a href="http://trac.webkit.org/wiki/CommitQueue">documentation</a> | <a href="http://webkit.org/">webkit.org</a></div>
27 </center>
28 </body>
29 </html>