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 | 2a7a4f2161d26eeb898f3deec3f7ce21b0f2f957 (patch) | |
| tree | 6ae60d1198cc845a239a9635acc5ecd6a5af744d /coverage/htmlfiles | |
| parent | 71e2e22f6d7601218f08ed038689fe8abc871d17 (diff) | |
| download | python-coveragepy-2a7a4f2161d26eeb898f3deec3f7ce21b0f2f957.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 b872d05..1afc57c 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 72b6928..d78ba53 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> |
