summaryrefslogtreecommitdiff
path: root/coverage/htmlfiles
Commit message (Collapse)AuthorAgeFilesLines
* Use a subtler indicator of filteringNed Batchelder2014-10-251-2/+1
|
* Change HTML pages to be HTML 5Ned Batchelder2014-10-253-12/+15
|
* Make the filter box smallerNed Batchelder2014-10-251-4/+4
|
* Fix some jshint warningsNed Batchelder2014-10-241-2/+3
|
* Filtering now computes coverage percentages properly.Ned Batchelder2014-10-222-6/+21
|
* Use classes to distinguish pages, not idsNed Batchelder2014-10-213-6/+6
|
* Be more flexible about the number of columns to re-add during filtering.Ned Batchelder2014-10-201-20/+16
|
* Get rid of \rNed Batchelder2014-10-201-9/+9
|
* * Remove "source indicator" CSS from removed feature.Danny Allen2014-09-221-16/+0
|
* Address comments from pull request 34 ↵Danny Allen2014-09-223-124/+77
| | | | | | | (https://bitbucket.org/ned/coveragepy/pull-request/34/rework-of-my-pull-request-18/diff): * Remove fixed header and header buttons in file details page. * Add dynamically summing footer values.
* * Do not try to jump to line if we can't find a matching target.Danny Allen2014-05-151-12/+14
|
* * Respond to pull request #18 commentsDanny Allen2014-05-151-15/+19
|
* Rework of my pull request #18:Danny Allen2014-05-156-170/+230
| | | | | | | | * Implement "go to next" buttons in pyfile UI * Improve filter on main UI to persist over page reloads * Hide totals table footer if hiding any rows, as values will be inaccurate * Implement live filtering of index table rows * Upgrade to jQuery 1.11.1
* Forgot to change the reference to jquery to match the new filenameNed Batchelder2013-10-062-2/+2
|
* Search a list of places to find HTML report static files. #259.Ned Batchelder2013-09-281-0/+0
| | | | | --HG-- rename : coverage/htmlfiles/jquery-1.4.3.min.js => coverage/htmlfiles/jquery.min.js
* Branch coverage is computed more accurately, #156.Ned Batchelder2012-11-192-3/+3
|
* Now the title of the HTML report can be set.Ned Batchelder2012-11-091-2/+2
|
* One more way to be picky: no final blank lines.Ned Batchelder2012-10-301-1/+0
|
* Fix #197: more decimal places on a CSS fraction eliminates rounding errors ↵Ned Batchelder2012-09-261-2/+2
| | | | in the HTML line numbers.
* Color the buttons on the pyfile page, so they have a visual connection to ↵Ned Batchelder2012-04-282-1/+26
| | | | the lines they affect.
* Keep all the Javascript in the .js files.Ned Batchelder2012-04-282-4/+9
|
* The [html]extra_css configuration value is a file path to a CSS file that ↵Ned Batchelder2012-04-202-0/+6
| | | | gets copied into the HTML report.
* cleanerNed Batchelder2011-06-261-1/+1
|
* HTML report hotkeys work differently if the current chunk is off-screen. A ↵Ned Batchelder2011-06-261-10/+116
| | | | chunk on-screen will be selected next.
* Scroll-to-top needs the Chrome fix also.Ned Batchelder2011-06-231-1/+1
|
* Some jslint cleanupsNed Batchelder2011-06-231-5/+4
|
* Chrome fixes: transparent colors are not 'transparent', and scrolling html ↵Ned Batchelder2011-06-231-4/+10
| | | | doesn't work, but scrolling body does.
* Tidy upNed Batchelder2011-06-051-2/+2
|
* Add a keyboard help panel to the index page.Ned Batchelder2011-06-053-0/+27
|
* Remove the twistie from the keyboard icon.Ned Batchelder2011-06-052-0/+0
|
* Keyboard-shorcut help is now available on the file page of the HTML report.Ned Batchelder2011-04-205-0/+82
|
* StyleNed Batchelder2011-04-171-3/+3
|
* StyleNed Batchelder2011-04-171-19/+19
|
* More tests, some refactoring of the code.Ned Batchelder2011-04-171-14/+14
|
* Even better way to test js: build fixtures programmatically, no need for ↵Ned Batchelder2011-04-171-6/+10
| | | | monkeypatching the code under test.
* Convert from DOS line-endingsNed Batchelder2011-04-171-53/+53
|
* Javascript testsNed Batchelder2011-04-161-22/+43
|
* Tweaks to the chunk-navigation hotkeys. Still looking for a way to automate ↵Ned Batchelder2011-04-081-12/+16
| | | | testing.
* HTML hotkeys for jumping to next/prev highlighted source section.Ned Batchelder2011-03-273-0/+155
|
* Incremental HTML generation. Some cleanup would be good.Ned Batchelder2011-03-241-1/+1
|
* Lint cleanups in the Javascript code.Ned Batchelder2011-02-041-15/+17
|
* Forgot this file in the last checkin.Ned Batchelder2010-11-071-0/+99
|
* Hotkeys for the HTML report.Ned Batchelder2010-11-073-11/+31
|
* Upgrade jquery to 1.4.3Ned Batchelder2010-11-074-21/+168
|
* Put the Javascript into an object.Ned Batchelder2010-11-053-9/+12
|
* Unify formatting of coverage percentages, and don't show zero or 100 as a ↵Ned Batchelder2010-08-222-5/+5
| | | | result of rounding. Fixes #41 and #70.
* Not sure why I changed these from inherit to normal last week (something to ↵Ned Batchelder2010-03-201-2/+2
| | | | do with IE and the styling of the linked line numbers). 'normal' made the footer not be italic, and putting it back to 'inherit' doesn't seem to break anything.
* Make this function name better.Ned Batchelder2010-03-142-2/+2
|
* Added a link back to the index page at the bottom of HTML source pages. ↵Ned Batchelder2010-03-143-3/+15
| | | | Closes issue #38.
* HTML line numbers are clickable, and highlight the line on arrival. Also, ↵Ned Batchelder2010-03-143-4/+30
| | | | noticed that IE8 didn't line up the line number properly, so added an unfortunate meta tag to make it right. Closes issue #55.