diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-04-21 21:31:58 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-04-21 21:31:58 -0400 |
commit | bd08ffa8a50d8175b607d268c9857ef92e0d231d (patch) | |
tree | 88faeaff7f5d6f17f0832a10dcdea16add287bfb /coverage/htmlfiles | |
parent | b976d22f5c6f9d42cbaf3bff5e3dd3faa0987838 (diff) | |
download | python-coveragepy-git-bd08ffa8a50d8175b607d268c9857ef92e0d231d.tar.gz |
More work on #299
Add the timestamp to the Python output files also. Move the timestamp to the
footer. Add Conrad to AUTHORS, and update the CHANGES file.
Diffstat (limited to 'coverage/htmlfiles')
-rw-r--r-- | coverage/htmlfiles/index.html | 4 | ||||
-rw-r--r-- | coverage/htmlfiles/pyfile.html | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index b872d056..1afc57c9 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -23,7 +23,6 @@ <h1>{{ title|escape }}: <span class="pc_cov">{{totals.pc_covered_str}}%</span> </h1> - <p>Created on {{ time_stamp }}</p> <img id="keyboard_icon" src="keybd_closed.png" alt="Show keyboard shortcuts" /> @@ -106,7 +105,8 @@ <div id="footer"> <div class="content"> <p> - <a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a> + <a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>, + created at {{ time_stamp }} </p> </div> </div> diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index 72b69288..d78ba536 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -84,7 +84,8 @@ <div id="footer"> <div class="content"> <p> - <a class="nav" href="index.html">« index</a> <a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a> + <a class="nav" href="index.html">« index</a> <a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>, + created at {{ time_stamp }} </p> </div> </div> |