1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<title>HLint Report</title>
<script type='text/javascript'>
/* == Algorithm for show/unshow ==
Each hint/file is given a number, hint# or file#
When we say showOnly with a class name we add the rules to
the css #content div {display:none}, #content div.className {display:block}
When going back to showAll we remove these results
*/
// CSS MANIPULATION //
function deleteRules(n)
{
var css = document.styleSheets[0];
for (var i = 0; i < n; i++)
css.deleteRule(css.cssRules.length-1);
}
function insertRule(s)
{
var css = document.styleSheets[0];
css.insertRule(s, css.cssRules.length);
}
// SHOW/HIDE LOGIC //
/**
* @param {bool} [initialise=false] - Used to signal we are loading the page, so
the current location doesn't match our presumed state.
*/
function show(id, initialise=false)
{
var last;
if (initialise)
{
last = "";
}
else
{
last = document.location.hash.slice(1);
}
if (id === last) return;
if (id.length === 0)
{
deleteRules(3);
insertRule(".all {font-weight: bold;}");
}
else
{
if (last.length === 0)
{
deleteRules(1);
insertRule("#content div {display:none;}");
}
else
{
deleteRules(2);
}
insertRule("#content div." + id + " {display:block;}");
insertRule("#" + id + "{font-weight:bold;}");
}
if (window.history)
history.replaceState("", document.title, window.location.pathname + window.location.search + (id === "" ? "" : "#" + id));
else
document.location.hash = '#'.concat(id);
}
</script>
<style type="text/css">
/* These rules are manipulated by the script.
The commented form is how it looks with an id selected */
.all {font-weight: bold;} /* #content div {display:none;} */
/* #content div.id {display:block;} */
/* #id {font-weight: bold;} */
</style>
<style type="text/css">
/* See http://www.webreference.com/programming/css_frames/ */
body {
margin:0;
border:0;
padding:0;
height:100%;
max-height:100%;
font-family: sans-serif;
font-size:76%;
overflow: hidden;
}
#leftbar {
position:absolute;
top:0px;
left:0px;
width: 215px;
bottom: 0px;
overflow:auto;
background:rgb(202,223,255);
margin: 10px;
padding-top: 0;
padding-left: 7px;
padding-right: 7px;
border-radius: 5px;
display:none; /* Override if script present */
}
#content {
position:absolute;
top:0;
bottom:0;
right:0;
overflow:auto;
padding-bottom: 15px;
padding-right: 7px;
left:10px; /* Override if script present */
}
#leftbar ul {margin-top: 0px; padding-left: 15px;}
#leftbar p {margin-bottom: 0px;}
.note {color: gray; font-size: smaller;}
pre {
font-family: "lucida console", monospace;
padding-left: 15px;
margin: 2px;
}
#content div {
margin-bottom: 10px;
margin-right: 10px;
padding-top: 4px;
border-top: 1px solid #ccc;
}
.script #content {left:250px;}
.script #leftbar {display: block;}
/* From HsColour */
.hs-keyglyph, .hs-layout {color: red;}
.hs-keyword {color: blue;}
.hs-comment, .hs-comment a {color: green;}
.hs-str, .hs-chr {color: teal;}
</style>
</head>
<body>
<script type='text/javascript'>
document.body.className = "script";
</script>
<div id="leftbar" valign="top" style="min-width:200px">
<p><a class="all" href="javascript:show('')">All hints</a></p>
<ul>
$HINTS
</ul>
<p><a class="all" href="javascript:show('')">All files</a></p>
<ul>
$FILES
</ul>
</div>
<div id="content" valign="top" width="100%">
<p>
Report generated by <a href="http://community.haskell.org/~ndm/hlint/">HLint</a>
$VERSION
- a tool to suggest improvements to your Haskell code.
</p>
$CONTENT
</div>
<script type='text/javascript'>
show(window.location.hash.slice(1), true);
</script>
</body>
</html>
|