status-report-scripts/review-templates bymonth.html, NONE, 1.1 index.html, NONE, 1.1 plain.html, NONE, 1.1

Jason ティビツ tibbs at fedoraproject.org
Sat Oct 3 17:14:45 UTC 2009


Author: tibbs

Update of /cvs/fedora/status-report-scripts/review-templates
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26438/review-templates

Added Files:
	bymonth.html index.html plain.html 
Log Message:
Initial pass at revamped review stats script.



--- NEW FILE bymonth.html ---
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:py="http://genshi.edgewall.org/"
    xmlns:xi="http://www.w3.org/2001/XInclude">
    <head>
        <META http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <base href="https://bugzilla.redhat.com/bugzilla/"/>
        <title>$title</title>
        <style type="text/css" media="screen">
            <!--
            @import url("https://bugzilla.redhat.com/bugzilla/skins/standard/global.css");
            -->
            .UNASSIGNED {background-color: #99f}
            .bz_state_NEEDSPONSOR {background-color: #afa};
        </style>

        <link href="skins/standard/buglist.css" rel="stylesheet" type="text/css"/>
    </head>

    <body>
        <h1 style='background-color: #99f;'>$description<br/>
            Last Update: $update (v$version)<br/>
            There are $count tickets in this category</h1>

        <table class="buglist" cellspacing="0" cellpadding="4" width="100%">
            <thead>
                <tr align="left">
                    <th>ID</th>
                    <th>Alias</th>
                    <th>Assignee</th>
                    <th>Status</th>
                    <th>Last Change</th>
                    <th>Summary</th>
                </tr>
            </thead>

            <py:for each="month in months">
            <tr colspan="5"><td><b>${month['month']}</b></td></tr>
            <py:for each="bug in month['bugs']">
            <tr class="${bug['class']}">
                <td>
                    <a href="show_bug.cgi?id=${bug['id']}">${bug['id']}</a>
                </td>
                <td>${bug['alias']} </td>
                <td>${bug['assignee']}</td>
                <td>${bug['status']}</td>
                <td>${bug['lastchange']}</td>
                <td>${bug['summary']}</td>
            </tr>
            </py:for>
            </py:for>
        </table>
    </body>
</html>



--- NEW FILE index.html ---
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:py="http://genshi.edgewall.org/"
    xmlns:xi="http://www.w3.org/2001/XInclude">
    <head>
        <base href="https://bugzilla.redhat.com/bugzilla/"/>
        <title>$title</title>
        <style type="text/css" media="screen">
            <!--
            @import url("https://bugzilla.redhat.com/bugzilla/skins/standard/global.css");
            -->
            .UNASSIGNED {background-color: #99f}
            .bz_state_NEEDSPONSOR {background-color: #afa};
        </style>

        <link href="skins/standard/buglist.css" rel="stylesheet" type="text/css"/>
    </head>

    <body>
        <h1 style='background-color: #99f;'>$description<br/>
            Last Update: $update (v$version)<br/>
            There are $count tickets in this category</h1>

        <table class="buglist" cellspacing="0" cellpadding="4" width="100%">
            <thead>
                <tr align="left">
                    <th>ID</th>
                    <th>Alias</th>
                    <th>Assignee</th>
                    <th>Status</th>
                    <th>Last Change</th>
                    <th>Summary</th>
                </tr>
            </thead>

            <py:for each="bug in bugs">
            <tr class="${bug['class']}">
                <td>
                    <a href="show_bug.cgi?id=${bug['id']}">${bug['id']}</a>
                </td>
                <td>${bug['alias']} </td>
                <td>${bug['assignee']}</td>
                <td>${bug['status']}</td>
                <td>${bug['lastchange']}</td>
                <td>${bug['summary']}</td>
            </tr>
            </py:for>
        </table>
    </body>
</html>



--- NEW FILE plain.html ---
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:py="http://genshi.edgewall.org/"
    xmlns:xi="http://www.w3.org/2001/XInclude">
    <head>
        <META http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <base href="https://bugzilla.redhat.com/bugzilla/"/>
        <title>$title</title>
        <style type="text/css" media="screen">
            <!--
            @import url("https://bugzilla.redhat.com/bugzilla/skins/standard/global.css");
            -->
            .UNASSIGNED {background-color: #99f}
            .bz_state_NEEDSPONSOR {background-color: #afa};
        </style>

        <link href="skins/standard/buglist.css" rel="stylesheet" type="text/css"/>
    </head>

    <body>
        <h1 style='background-color: #99f;'>$description<br/>
            Last Update: $update (v$version)<br/>
            There are $count tickets in this category</h1>

        <table class="buglist" cellspacing="0" cellpadding="4" width="100%">
            <thead>
                <tr align="left">
                    <th>ID</th>
                    <th>Alias</th>
                    <th>Assignee</th>
                    <th>Status</th>
                    <th>Last Change</th>
                    <th>Summary</th>
                </tr>
            </thead>

            <py:for each="bug in bugs">
            <tr class="${bug['class']}">
                <td>
                    <a href="show_bug.cgi?id=${bug['id']}">${bug['id']}</a>
                </td>
                <td>${bug['alias']} </td>
                <td>${bug['assignee']}</td>
                <td>${bug['status']}</td>
                <td>${bug['lastchange']}</td>
                <td>${bug['summary']}</td>
            </tr>
            </py:for>
        </table>
    </body>
</html>





More information about the fedora-extras-commits mailing list