Mercurial > bugzilla-dashboard
annotate index.html @ 55:cd51aebfbf68
Removed extraneous logging
author | Atul Varma <avarma@mozilla.com> |
---|---|
date | Sat, 24 Apr 2010 23:50:23 -0700 |
parents | 44cf819e5a37 |
children |
rev | line source |
---|---|
0 | 1 <html> |
2 <head> | |
3 <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
4 <link rel="stylesheet" type="text/css" media="all" | |
18
b2e0ea0178fb
Moved js and css files into their own directories.
Atul Varma <varmaa@toolness.com>
parents:
17
diff
changeset
|
5 href="css/dashboard.css" /> |
0 | 6 <title>Atul's Bugzilla Dashboard</title> |
7 </head> | |
8 <body> | |
7
d27bd0db6bf1
added loading screen, removed duplicate bug listings.
Atul Varma <varmaa@toolness.com>
parents:
6
diff
changeset
|
9 <div id="reports"> |
27
b6b1f0af8516
Dashboard now supports any user via 'username' GET param.
Atul Varma <varmaa@toolness.com>
parents:
18
diff
changeset
|
10 <h1><span id="who">Atul</span>'s Bugzilla Dashboard</h1> |
9
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
11 <div class="container"> |
31
44cf819e5a37
Moved around columns on dashboard and renamed them based on conversation w/ Myk.
Atul Varma <varmaa@toolness.com>
parents:
27
diff
changeset
|
12 <div id="code-reviews"><h2>My Things To Review</h2></div> |
9
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
13 <div id="assigned-bugs"><h2>My Assigned Bugs</h2></div> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
14 <div id="reported-bugs"><h2>My Reported Bugs</h2></div> |
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
15 <div id="cc-bugs"><h2>My CC'd Bugs</h2></div> |
31
44cf819e5a37
Moved around columns on dashboard and renamed them based on conversation w/ Myk.
Atul Varma <varmaa@toolness.com>
parents:
27
diff
changeset
|
16 <div id="fixed-bugs"><h2>Recently Fixed Bugs</h2></div> |
9
a5558c563a51
Horizontal layout of reports
Atul Varma <varmaa@toolness.com>
parents:
7
diff
changeset
|
17 </div> |
7
d27bd0db6bf1
added loading screen, removed duplicate bug listings.
Atul Varma <varmaa@toolness.com>
parents:
6
diff
changeset
|
18 </div> |
0 | 19 <div id="templates"> |
11
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
20 <div class="bug-tooltip"> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
21 <div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
22 <span class="priority"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
23 <span class="severity"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
24 </div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
25 <div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
26 <span class="product"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
27 <span class="component"></span> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
28 </div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
29 <div>Created <span class="age"></span></div> |
ac252dd4b395
Added some basic tooltip logic, though it's incomplete and hidden for now.
Atul Varma <varmaa@toolness.com>
parents:
9
diff
changeset
|
30 </div> |
0 | 31 <table class="bugs"> |
32 <tr class="header"> | |
33 <th>Summary</th> | |
3
5eb1d8b6f017
removed vertical table borders
Atul Varma <varmaa@toolness.com>
parents:
2
diff
changeset
|
34 <th>Last Changed</th> |
0 | 35 </tr> |
36 <tr class="bug-row"> | |
4
11d242c482ca
removed link from bug summary and applied it to the entire bug row.
Atul Varma <varmaa@toolness.com>
parents:
3
diff
changeset
|
37 <td class="summary"></td> |
1
bddbe7723643
Added john resig's pretty date lib and a 'last changed' column on report tables.
Atul Varma <varmaa@toolness.com>
parents:
0
diff
changeset
|
38 <td class="last-changed"></td> |
0 | 39 </tr> |
40 </table> | |
41 </div> | |
16
c4de72b56b3e
Added a really basic caching mechanism that uses a hidden form field as a single-session cache.
Atul Varma <varmaa@toolness.com>
parents:
14
diff
changeset
|
42 <div id="form-cache"> |
c4de72b56b3e
Added a really basic caching mechanism that uses a hidden form field as a single-session cache.
Atul Varma <varmaa@toolness.com>
parents:
14
diff
changeset
|
43 <form><textarea class="data"></textarea></form> |
c4de72b56b3e
Added a really basic caching mechanism that uses a hidden form field as a single-session cache.
Atul Varma <varmaa@toolness.com>
parents:
14
diff
changeset
|
44 </div> |
0 | 45 </body> |
18
b2e0ea0178fb
Moved js and css files into their own directories.
Atul Varma <varmaa@toolness.com>
parents:
17
diff
changeset
|
46 <script src="js/jquery.js"></script> |
b2e0ea0178fb
Moved js and css files into their own directories.
Atul Varma <varmaa@toolness.com>
parents:
17
diff
changeset
|
47 <script src="js/date-utils.js"></script> |
b2e0ea0178fb
Moved js and css files into their own directories.
Atul Varma <varmaa@toolness.com>
parents:
17
diff
changeset
|
48 <script src="js/bugzilla.js"></script> |
b2e0ea0178fb
Moved js and css files into their own directories.
Atul Varma <varmaa@toolness.com>
parents:
17
diff
changeset
|
49 <script src="js/cache.js"></script> |
b2e0ea0178fb
Moved js and css files into their own directories.
Atul Varma <varmaa@toolness.com>
parents:
17
diff
changeset
|
50 <script src="js/dashboard.js"></script> |
0 | 51 </html> |