diff options
| author | Steve Block <steveblock@google.com> | 2009-12-15 10:12:09 +0000 |
|---|---|---|
| committer | Steve Block <steveblock@google.com> | 2009-12-17 17:41:10 +0000 |
| commit | 643ca7872b450ea4efacab6188849e5aac2ba161 (patch) | |
| tree | 6982576c228bcd1a7efe98afed544d840751094c /WebKitTools/QueueStatusServer/index.html | |
| parent | d026980fde6eb3b01c1fe49441174e89cd1be298 (diff) | |
| download | external_webkit-643ca7872b450ea4efacab6188849e5aac2ba161.zip external_webkit-643ca7872b450ea4efacab6188849e5aac2ba161.tar.gz external_webkit-643ca7872b450ea4efacab6188849e5aac2ba161.tar.bz2 | |
Merge webkit.org at r51976 : Initial merge by git.
Change-Id: Ib0e7e2f0fb4bee5a186610272edf3186f0986b43
Diffstat (limited to 'WebKitTools/QueueStatusServer/index.html')
| -rw-r--r-- | WebKitTools/QueueStatusServer/index.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/WebKitTools/QueueStatusServer/index.html b/WebKitTools/QueueStatusServer/index.html new file mode 100644 index 0000000..fbd51fb --- /dev/null +++ b/WebKitTools/QueueStatusServer/index.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html> +<head> + <title>WebKit Commit Queue Status</title> + <link type="text/css" rel="stylesheet" href="/stylesheets/main.css" /> +</head> +<body> + <center> + <div id="current_status"> + {{ last_status.message|force_escape|urlize|webkit_linkify|safe }} + <div id="last_status_date">As of {{ last_status.date|timesince }} ago</div> + </div> + + <table id="recent_status_table"> + <tr> + <th colspan=2>Recent Status</th> + </tr> + {% for recent_status in recent_statuses %} + <tr> + <td class='status_date'>{{ recent_status.date|timesince }} ago</td> + <td class="recent_status">{{ recent_status.message|force_escape|urlize|webkit_linkify|safe }}</td> + </tr> + {% endfor %} + </table> + + <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> + </center> +</body> +</html> |
