diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-28 08:39:31 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-28 08:39:31 -0400 |
commit | 208b9cac60c9d272386e732da9d953b94faec456 (patch) | |
tree | a8adf5e5851c86494379b883f0b77769d2094e1a /coverage/htmlfiles/pyfile.html | |
parent | c84e2de22183a02fe10fe4a12c930b9c47c8f12b (diff) | |
download | python-coveragepy-208b9cac60c9d272386e732da9d953b94faec456.tar.gz |
Small tweaks to make the HTML reports valid 4.01 strict. Thanks, Ben Finney.
Diffstat (limited to 'coverage/htmlfiles/pyfile.html')
-rw-r--r-- | coverage/htmlfiles/pyfile.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index 91c56cb..e2ec19c 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -1,10 +1,11 @@ -<!doctype html PUBLIC "-//W3C//DTD html 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
+<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<title>Coverage for {{cu.name|escape}}</title>
<link rel='stylesheet' href='style.css' type='text/css'>
-<script src='jquery-1.3.2.min.js'></script>
-<script>
+<script type='text/javascript' src='jquery-1.3.2.min.js'></script>
+<script type='text/javascript'>
function toggle_lines(btn, cls) {
var btn = $(btn);
if (btn.hasClass("hide")) {
|