OLD | NEW |
1 <!doctype html PUBLIC "-//W3C//DTD html 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | 1 <!doctype html PUBLIC "-//W3C//DTD html 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv='Content-Type' content='text/html; charset=utf-8'> | 4 <meta http-equiv='Content-Type' content='text/html; charset=utf-8'> |
5 {# IE8 rounds line-height incorrectly, and adding this emulateIE7 line makes
it right! #} | 5 {# IE8 rounds line-height incorrectly, and adding this emulateIE7 line makes
it right! #} |
6 {# http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/768
4445e-f080-4d8f-8529-132763348e21 #} | 6 {# http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/768
4445e-f080-4d8f-8529-132763348e21 #} |
7 <meta http-equiv='X-UA-Compatible' content='IE=emulateIE7' /> | 7 <meta http-equiv='X-UA-Compatible' content='IE=emulateIE7' /> |
8 <title>Coverage for {{cu.name|escape}}: {{nums.pc_covered_str}}%</title> | 8 <title>Coverage for {{cu.name|escape}}: {{nums.pc_covered_str}}%</title> |
9 <link rel='stylesheet' href='style.css' type='text/css'> | 9 <link rel='stylesheet' href='style.css' type='text/css'> |
10 {% if extra_css %} | 10 {% if extra_css %} |
11 <link rel='stylesheet' href='{{ extra_css }}' type='text/css'> | 11 <link rel='stylesheet' href='{{ extra_css }}' type='text/css'> |
12 {% endif %} | 12 {% endif %} |
13 <script type='text/javascript' src='jquery-1.4.3.min.js'></script> | 13 <script type='text/javascript' src='jquery.min.js'></script> |
14 <script type='text/javascript' src='jquery.hotkeys.js'></script> | 14 <script type='text/javascript' src='jquery.hotkeys.js'></script> |
15 <script type='text/javascript' src='jquery.isonscreen.js'></script> | 15 <script type='text/javascript' src='jquery.isonscreen.js'></script> |
16 <script type='text/javascript' src='coverage_html.js'></script> | 16 <script type='text/javascript' src='coverage_html.js'></script> |
17 <script type='text/javascript' charset='utf-8'> | 17 <script type='text/javascript' charset='utf-8'> |
18 jQuery(document).ready(coverage.pyfile_ready); | 18 jQuery(document).ready(coverage.pyfile_ready); |
19 </script> | 19 </script> |
20 </head> | 20 </head> |
21 <body id='pyfile'> | 21 <body id='pyfile'> |
22 | 22 |
23 <div id='header'> | 23 <div id='header'> |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 <div id='footer'> | 81 <div id='footer'> |
82 <div class='content'> | 82 <div class='content'> |
83 <p> | 83 <p> |
84 <a class='nav' href='index.html'>« index</a> <a c
lass='nav' href='{{__url__}}'>coverage.py v{{__version__}}</a> | 84 <a class='nav' href='index.html'>« index</a> <a c
lass='nav' href='{{__url__}}'>coverage.py v{{__version__}}</a> |
85 </p> | 85 </p> |
86 </div> | 86 </div> |
87 </div> | 87 </div> |
88 | 88 |
89 </body> | 89 </body> |
90 </html> | 90 </html> |
OLD | NEW |