This repository was archived by the owner on Aug 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Redirect to the new frontend #86
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,162 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<link rel="stylesheet" href="src/style.css" type="text/css" media="all" /> | ||
<title>mozilla-central coverage</title> | ||
</head> | ||
<body> | ||
<script src="src/common.js" type="text/javascript"></script> | ||
<script src="src/zero_coverage_report.js" type="text/javascript"></script> | ||
<script src="src/index.js" type="text/javascript"></script> | ||
<script src="https://unpkg.com/[email protected]/mustache.min.js" type="text/javascript"></script> | ||
<script async defer src="https://buttons.github.io/buttons.js"></script> | ||
<!DOCTYPE HTML> | ||
|
||
<!-- Chart --> | ||
<script src="https://unpkg.com/[email protected]/dist/chartist.min.js" type="text/javascript"></script> | ||
<link href="https://unpkg.com/[email protected]/dist/chartist.min.css" rel="stylesheet" /> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="refresh" content="0; url=https://coverage.moz.tools"> | ||
<link rel="canonical" href="https://coverage.moz.tools"> | ||
|
||
<!-- Syntax highlighter --> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/themes/prism.css" rel="stylesheet" /> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/components/prism-core.min.js" type="text/javascript"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/plugins/autoloader/prism-autoloader.min.js" type="text/javascript"></script> | ||
<script>Prism.plugins.autoloader.languages_path = 'https://cdnjs.cloudflare.com/ajax/libs/prism/1.16.0/components/'</script> | ||
|
||
<script id="zerocoverage" type="x-tmpl-mustache"> | ||
<div class="directory"> | ||
<h2> | ||
<nav> | ||
{{#navbar}} | ||
<a href="#{{ path }}">{{ name }}</a> | ||
{{/navbar}} | ||
</nav> | ||
<span> : {{ total }} files</span> | ||
</h2> | ||
|
||
<div class="table"> | ||
<div class="header"> | ||
<span class="filename">File name</span> | ||
<span>Children</span> | ||
<span>Functions</span> | ||
<span>First push</span> | ||
<span>Last push</span> | ||
<span>Size</span> | ||
<span>Commits</span> | ||
</div> | ||
|
||
{{#entries}} | ||
<div class="row"> | ||
<span class="filename"><a href="{{ entry_url }}">{{ dir }}</a></span> | ||
<span>{{ stats.children }}</span> | ||
<span>{{ stats.funcs }}</span> | ||
<span>{{ stats.first_push_date }}</span> | ||
<span>{{ stats.last_push_date }}</span> | ||
<span>{{ stats.size }}</span> | ||
<span>{{ stats.commits }}</span> | ||
</div> | ||
{{/entries}} | ||
</div> | ||
</div> | ||
<script> | ||
window.location.href = "https://coverage.moz.tools" | ||
</script> | ||
|
||
<script id="file_coverage" type="x-tmpl-mustache"> | ||
<div class="file"> | ||
<h2> | ||
<nav> | ||
{{#navbar}} | ||
<a href="#{{ revision }}:{{ path }}">{{ name }}</a> | ||
{{/navbar}} | ||
</nav> | ||
</h2> | ||
|
||
<table> | ||
<tbody> | ||
{{#lines}} | ||
<tr class="{{covered}}"> | ||
<td>{{ nb }}</td> | ||
<td> | ||
<pre class="language-{{ language }}"><code>{{ line }}</code></pre> | ||
</td> | ||
</tr> | ||
{{/lines}} | ||
</tbody> | ||
</table> | ||
|
||
</div> | ||
</script> | ||
|
||
<script id="browser" type="x-tmpl-mustache"> | ||
<div class="directory"> | ||
<h2> | ||
<nav> | ||
{{#navbar}} | ||
<a href="#{{ revision }}:{{ path }}">{{ name }}</a> | ||
{{/navbar}} | ||
</nav> | ||
<span> : {{ files.length }} files</span> | ||
</h2> | ||
|
||
<div class="table"> | ||
<div class="header"> | ||
<span class="filename">File name</span> | ||
<span>Children</span> | ||
<span>Coverage</span> | ||
</div> | ||
|
||
{{#files}} | ||
<div class="row"> | ||
<span class="filename"><a href="#{{ revision }}:{{ path }}">{{ file_name }}</a></span> | ||
<span>{{ children }}</span> | ||
<span>{{ coveragePercent }} %</span> | ||
</div> | ||
{{/files}} | ||
</div> | ||
|
||
</div> | ||
</script> | ||
|
||
<script id="history_point" type="x-tmpl-mustache"> | ||
<span>Revision <samp>{{ revision }}</samp> from {{ date }}</span> | ||
</script> | ||
|
||
<header> | ||
<div id="menu_browser"> | ||
<a href="#zero:">View the zero coverage report</a> | ||
• | ||
<input type="text" id="revision" placeholder="Mercurial revision" </input> | ||
</div> | ||
|
||
<div id="menu_zero"> | ||
<input type="checkbox" name="third_party" id="third_party" checked="checked"><label for="third_party">Show third-party files</label> | ||
<input type="checkbox" name="headers" id="headers"><label for="headers">Show headers</label> | ||
<input type="checkbox" name="completely_uncovered" id="completely_uncovered"><label for="completely_uncovered">Show completely uncovered files only</label> | ||
<input type="checkbox" name="cpp" id="cpp" checked="checked"><label for="cpp">C/C++</label> | ||
<input type="checkbox" name="js" id="js" checked="checked"><label for="js">JavaScript</label> | ||
<input type="checkbox" name="java" id="java" checked="checked"><label for="java">Java</label> | ||
<input type="checkbox" name="rust" id="rust" checked="checked"><label for="rust">Rust</label> | ||
<select id="last_push"> | ||
<option value="all">All</option> | ||
<option value="one_year">0 < 1 year</option> | ||
<option value="two_years">1 < 2 years</option> | ||
<option value="older_than_two_years">Older than 2 years</option> | ||
</select> | ||
</div> | ||
</header> | ||
|
||
<main id="main"> | ||
<div id="message" class="message loading">Loading...</div> | ||
<div id="history"> | ||
<div class="ct-chart"></div> | ||
<div id="history_details">Hover a point to see its details</div> | ||
</div> | ||
<div id="output"></div> | ||
</main> | ||
|
||
<footer> | ||
<a href="https://github.com/marco-c/code-coverage-reports/issues/new">Report an issue</a> | ||
<a class="github-button" href="https://github.com/marco-c/code-coverage-reports/fork" data-icon="octicon-repo-forked" data-size="large" | ||
data-show-count="true" aria-label="Fork marco-c/code-coverage-reports on GitHub">Fork</a> | ||
</footer> | ||
<title>The code coverage frontend moved !</title> | ||
|
||
</body> | ||
</html> | ||
If you are not redirected automatically, follow the <a href="https://coverage.moz.tools">link to coverage.moz.tools</a> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.