summaryrefslogtreecommitdiffstats
path: root/templates/standalone-html.tx
blob: dd9677c5455c29346314fdd84f6d016ed307848c (plain)
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
<!DOCTYPE html>
<html lang="en">
<head>
  <title><: $title :></title>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAArUlEQVR4AWOgOhAOqf4vEFh2RkZGRpAsA7jT5/7nSJ97RlJSklwD5vznTJxCgQFpQAMSJlJoQPwEuroAMxA5U2ZSYsA8YCzMp9AFydMpjMakKZSmg8nkG8CVMe8/e9ai80AD5ICYDx0TNiBr0X/m6oOfganxJEfq7KOcSdOOciVMAuKJR0XswnsIGiAQVvOfK3vxf67M+f+5shYA6YVAeuF/3vj+l2LOcRZUz70AF5dRizrcOOQAAAAASUVORK5CYII=" rel="icon" type="image/x-icon" />
  <style type="text/css">

<: $style_sheet :>

  </style>
</head>

<body>

<main>

<article>

<h1>Lintian Hints</h1>

<div>Produced by Lintian version <: $output["lintian-version"] :>.</div>

: for $output.groups -> $group {

<h2>
  <: $group.name :> <: $group.version :>
</h2>

<div>The run started <: $group.start :> (UTC) and took <: $group.duration :>.</div>

<ul class="filelist">

  : for $group["input-files"] -> $item {
  <li class="fileitem"><: $item.filename :></li>

  <ul class="hintlist">

    : for $item.hints -> $subitem {
    <li class="hintitem">

      <ul class="commentlist">
        : for $subitem.comments -> $comment {
        <li class="commentitem">
          <span class="comment tiny"># <: $comment :></span>
        </li>
        : }
      </ul>

      <a class="visibility-symbol tiny <: $subitem.visibility :>" href="https://lintian.debian.org/levels#<: $subitem.visibility :>"></a>
      <span class="hint tiny"><a href="<: $subitem.url :>"><: $subitem.tag_name :></a></span>
      <span class="context tiny"><: $subitem.context :></span>

    </li>
    : }
    : else {
    <p>No hints.</p>
    : }

  </ul>

  : }

</ul>

: }

</article>

</main>

<hr/>

<footer>
  <p>
    Comments about this web page? Please report a bug against the
    <a href="https://salsa.debian.org/lintian/lintian">lintian</a>
    package and mention the <em>standalone HTML</em> output format.
  </p>
</footer>

</body>
</html>