view index.html @ 71:4ec651cc606e

we now only make one request at a time to the bugzilla server, which reduces app responsiveness but makes us less of a douche to the server.
author Atul Varma <avarma@mozilla.com>
date Sun, 25 Apr 2010 17:55:54 -0700
parents 44cf819e5a37
children
line wrap: on
line source

<html>
<head>
  <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  <link rel="stylesheet" type="text/css" media="all"
        href="css/dashboard.css" />
  <title>Atul's Bugzilla Dashboard</title>
</head>
<body>
<div id="reports">
  <h1><span id="who">Atul</span>'s Bugzilla Dashboard</h1>
  <div class="container">
    <div id="code-reviews"><h2>My Things To Review</h2></div>
    <div id="assigned-bugs"><h2>My Assigned Bugs</h2></div>
    <div id="reported-bugs"><h2>My Reported Bugs</h2></div>
    <div id="cc-bugs"><h2>My CC'd Bugs</h2></div>
    <div id="fixed-bugs"><h2>Recently Fixed Bugs</h2></div>
  </div>
</div>
<div id="templates">
  <div class="bug-tooltip">
    <div>
      <span class="priority"></span>
      <span class="severity"></span>
    </div>
    <div>
      <span class="product"></span>
      <span class="component"></span>
    </div>
    <div>Created <span class="age"></span></div>
  </div>
  <table class="bugs">
    <tr class="header">
      <th>Summary</th>
      <th>Last&nbsp;Changed</th>
    </tr>
    <tr class="bug-row">
      <td class="summary"></td>
      <td class="last-changed"></td>
    </tr>
  </table>
</div>
<div id="form-cache">
  <form><textarea class="data"></textarea></form>
</div>
</body>
<script src="js/jquery.js"></script>
<script src="js/date-utils.js"></script>
<script src="js/bugzilla.js"></script>
<script src="js/cache.js"></script>
<script src="js/dashboard.js"></script>
</html>