|
62 | 62 | </style> |
63 | 63 | </head> |
64 | 64 | <body> |
65 | | - <p> Scanned with ScanCode version {{ version }} </p> |
| 65 | + <p> Scanned with ScanCode </p> |
66 | 66 | {% if files.license_copyright %} |
67 | 67 | <table> |
68 | 68 | <caption>Copyrights and Licenses Information</caption> |
|
104 | 104 | <th>type</th> |
105 | 105 | <th>name</th> |
106 | 106 | <th>extension</th> |
107 | | - <th>date</th> |
108 | 107 | <th>size</th> |
109 | 108 | <th>sha1</th> |
110 | 109 | <th>md5</th> |
|
127 | 126 | <td>{{ row.type }}</td> |
128 | 127 | <td>{{ row.name }}</td> |
129 | 128 | <td>{{ row.extension }}</td> |
130 | | - <td>{{ row.date }}</td> |
131 | 129 | <td>{{ row.size }}</td> |
132 | 130 | <td>{{ row.sha1 }}</td> |
133 | 131 | <td>{{ row.md5 }}</td> |
|
145 | 143 | {% endfor %} |
146 | 144 | </tbody> |
147 | 145 | </table> |
| 146 | + <table> |
| 147 | + <caption>Holders</caption> |
| 148 | + <thead> |
| 149 | + <tr> |
| 150 | + <th>path</th> |
| 151 | + <th>holder</th> |
| 152 | + <th>start</th> |
| 153 | + <th>end</th> |
| 154 | + </tr> |
| 155 | + </thead> |
| 156 | + <tbody> |
| 157 | + {% for path, row in files.infos.items() %} |
| 158 | + {% if row.holders %} |
| 159 | + {% for data in row.holders %} |
| 160 | + <tr> |
| 161 | + <td>{{ path }}</td> |
| 162 | + <td>{{ data.value }}</td> |
| 163 | + <td>{{ data.start_line }}</td> |
| 164 | + <td>{{ data.end_line }}</td> |
| 165 | + </tr> |
| 166 | + {% endfor %} |
| 167 | + {% endif %} |
| 168 | + {% endfor %} |
| 169 | + </tbody> |
| 170 | + </table> |
| 171 | + <table> |
| 172 | + <caption>Authors</caption> |
| 173 | + <thead> |
| 174 | + <tr> |
| 175 | + <th>path</th> |
| 176 | + <th>Author</th> |
| 177 | + <th>start</th> |
| 178 | + <th>end</th> |
| 179 | + </tr> |
| 180 | + </thead> |
| 181 | + <tbody> |
| 182 | + {% for path, row in files.infos.items() %} |
| 183 | + {% if row.authors %} |
| 184 | + {% for data in row.authors %} |
| 185 | + <tr> |
| 186 | + <td>{{ path }}</td> |
| 187 | + <td>{{ data.value }}</td> |
| 188 | + <td>{{ data.start_line }}</td> |
| 189 | + <td>{{ data.end_line }}</td> |
| 190 | + </tr> |
| 191 | + {% endfor %} |
| 192 | + {% endif %} |
| 193 | + {% endfor %} |
| 194 | + </tbody> |
| 195 | + </table> |
| 196 | + <table> |
| 197 | + <caption>Emails</caption> |
| 198 | + <thead> |
| 199 | + <tr> |
| 200 | + <th>path</th> |
| 201 | + <th>email</th> |
| 202 | + <th>start</th> |
| 203 | + <th>end</th> |
| 204 | + </tr> |
| 205 | + </thead> |
| 206 | + <tbody> |
| 207 | + {% for path, row in files.infos.items() %} |
| 208 | + {% if row.emails %} |
| 209 | + {% for data in row.emails %} |
| 210 | + <tr> |
| 211 | + <td>{{ path }}</td> |
| 212 | + <td>{{ data.email |urlize(target='_blank') }}</td> |
| 213 | + <td>{{ data.start_line }}</td> |
| 214 | + <td>{{ data.end_line }}</td> |
| 215 | + </tr> |
| 216 | + {% endfor %} |
| 217 | + {% endif %} |
| 218 | + {% endfor %} |
| 219 | + </tbody> |
| 220 | + </table> |
| 221 | + <table> |
| 222 | + <caption>Urls</caption> |
| 223 | + <thead> |
| 224 | + <tr> |
| 225 | + <th>path</th> |
| 226 | + <th>url</th> |
| 227 | + <th>start</th> |
| 228 | + <th>end</th> |
| 229 | + </tr> |
| 230 | + </thead> |
| 231 | + <tbody> |
| 232 | + {% for path, row in files.infos.items() %} |
| 233 | + {% if row.urls %} |
| 234 | + {% for data in row.urls %} |
| 235 | + <tr> |
| 236 | + <td>{{ path }}</td> |
| 237 | + <td>{{ data.url |urlize(target='_blank') }}</td> |
| 238 | + <td>{{ data.start_line }}</td> |
| 239 | + <td>{{ data.end_line }}</td> |
| 240 | + </tr> |
| 241 | + {% endfor %} |
| 242 | + {% endif %} |
| 243 | + {% endfor %} |
| 244 | + </tbody> |
| 245 | + </table> |
148 | 246 | {% endif %} |
149 | 247 |
|
150 | 248 | {% if files.packages %} |
|
0 commit comments