catalog: count errors and warnings for each package
[nit.git] / src / nitcatalog.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Basic catalog generator for Nit packages
16 #
17 # See: <http://nitlanguage.org/catalog/>
18 #
19 # The tool scans packages and generates the HTML files of a catalog.
20 #
21 # See `catalog` for details
22 module nitcatalog
23
24 import loader # Scan&load packages, groups and modules
25 import doc::doc_down # Display mdoc
26 import catalog
27
28 # A HTML page in a catalog
29 #
30 # This is just a template with the header pre-filled and the footer injected at rendering.
31 # Therefore, once instantiated, the content can just be added to it.
32 class CatalogPage
33 super Template
34
35 # The associated catalog, used to groups options and other global data
36 var catalog: Catalog
37
38 # Placeholder to include additional things before the `</head>`.
39 var more_head = new Template
40
41 # Relative path to the root directory (with the index file).
42 #
43 # Use "" for pages in the root directory
44 # Use ".." for pages in a subdirectory
45 var rootpath: String
46
47 redef init
48 do
49 add """
50 <!DOCTYPE html>
51 <html>
52 <head>
53 <meta charset="utf-8">
54 <link rel="stylesheet" media="all" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
55 <link rel="stylesheet" media="all" href="{{{rootpath / "style.css"}}}">
56 """
57 add more_head
58
59 add """
60 </head>
61 <body>
62 <div class='container-fluid'>
63 <div class='row'>
64 <nav id='topmenu' class='navbar navbar-default navbar-fixed-top' role='navigation'>
65 <div class='container-fluid'>
66 <div class='navbar-header'>
67 <button type='button' class='navbar-toggle' data-toggle='collapse' data-target='#topmenu-collapse'>
68 <span class='sr-only'>Toggle menu</span>
69 <span class='icon-bar'></span>
70 <span class='icon-bar'></span>
71 <span class='icon-bar'></span>
72 </button>
73 <span class='navbar-brand'><a href="http://nitlanguage.org/">Nitlanguage.org</a></span>
74 </div>
75 <div class='collapse navbar-collapse' id='topmenu-collapse'>
76 <ul class='nav navbar-nav'>
77 <li><a href="{{{rootpath / "index.html"}}}">Catalog</a></li>
78 </ul>
79 </div>
80 </div>
81 </nav>
82 </div>
83 """
84 end
85
86 # Inject piwik HTML code if required
87 private fun add_piwik
88 do
89 var tracker_url = catalog.piwik_tracker
90 if tracker_url == null then return
91
92 var site_id = catalog.piwik_site_id
93
94 tracker_url = tracker_url.trim
95 if tracker_url.chars.last != '/' then tracker_url += "/"
96 add """
97 <!-- Piwik -->
98 <script type="text/javascript">
99 var _paq = _paq || [];
100 _paq.push(['trackPageView']);
101 _paq.push(['enableLinkTracking']);
102 (function() {
103 var u=(("https:" == document.location.protocol) ? "https" : "http") + "://{{{tracker_url.escape_to_c}}}";
104 _paq.push(['setTrackerUrl', u+'piwik.php']);
105 _paq.push(['setSiteId', {{{site_id}}}]);
106 var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
107 g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
108 })();
109
110 </script>
111 <noscript><p><img src="http://{{{tracker_url.html_escape}}}piwik.php?idsite={{{site_id}}}" style="border:0;" alt="" /></p></noscript>
112 <!-- End Piwik Code -->
113 """
114
115 end
116
117 redef fun rendering
118 do
119 add """
120 </div> <!-- container-fluid -->
121 <script src='https://code.jquery.com/jquery-latest.min.js'></script>
122 <script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js'></script>
123 <script src='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.8.1/bootstrap-table-all.min.js'></script>
124 """
125 add_piwik
126 add """
127
128 </body>
129 </html>
130 """
131 end
132 end
133
134 redef class NitdocDecorator
135 redef fun add_image(v, link, name, comment)
136 do
137 # Keep absolute links as is
138 if link.has_prefix("http://") or link.has_prefix("https://") then
139 super
140 return
141 end
142
143 do
144 # Get the directory of the doc object to deal with the relative link
145 var mdoc = current_mdoc
146 if mdoc == null then break
147 var source = mdoc.location.file
148 if source == null then break
149 var path = source.filename
150 var stat = path.file_stat
151 if stat == null then break
152 if not stat.is_dir then path = path.dirname
153
154 # Get the full path to the local resource
155 var fulllink = path / link.to_s
156 stat = fulllink.file_stat
157 if stat == null then break
158
159 # Get a collision-free catalog name for the resource
160 var hash = fulllink.md5
161 var ext = fulllink.file_extension
162 if ext != null then hash = hash + "." + ext
163
164 # Copy the local resource in the resource directory of the catalog
165 var res = catalog.outdir / "res" / hash
166 fulllink.file_copy_to(res)
167
168 # Hijack the link in the html.
169 link = ".." / "res" / hash
170 super(v, link, name, comment)
171 return
172 end
173
174 # Something went bad
175 catalog.modelbuilder.toolcontext.error(current_mdoc.location, "Error: cannot find local image `{link}`")
176 super
177 end
178
179 # The registered catalog
180 #
181 # It is used to deal with relative links in images.
182 var catalog: Catalog is noautoinit
183 end
184
185 redef class Catalog
186 redef init
187 do
188 # Register `self` to the global NitdocDecorator
189 # FIXME this is ugly. But no better idea at the moment.
190 modelbuilder.model.nitdoc_md_processor.emitter.decorator.as(NitdocDecorator).catalog = self
191 end
192
193 # The output directory where to generate pages
194 var outdir: String is noautoinit
195
196 # Return a empty `CatalogPage`.
197 fun new_page(rootpath: String): CatalogPage
198 do
199 return new CatalogPage(self, rootpath)
200 end
201
202 # Recursively generate a level in the file tree of the *content* section
203 private fun gen_content_level(ot: OrderedTree[MConcern], os: Array[Object], res: Template)
204 do
205 res.add "<ul>\n"
206 for o in os do
207 res.add "<li>"
208 if o isa MGroup then
209 var d = ""
210 var mdoc = o.mdoc
211 if mdoc != null then d = ": {mdoc.html_synopsis.write_to_string}"
212 res.add "<strong>{o.name}</strong>{d} ({o.filepath.to_s})"
213 else if o isa MModule then
214 var d = ""
215 var mdoc = o.mdoc
216 if mdoc != null then d = ": {mdoc.html_synopsis.write_to_string}"
217 res.add "<strong>{o.name}</strong>{d} ({o.filepath.to_s})"
218 else
219 abort
220 end
221 var subs = ot.sub.get_or_null(o)
222 if subs != null then gen_content_level(ot, subs, res)
223 res.add "</li>\n"
224 end
225 res.add "</ul>\n"
226 end
227
228 # Generate a full HTML page for a package
229 fun generate_page(mpackage: MPackage): Writable
230 do
231 var res = new_page("..")
232 var name = mpackage.name.html_escape
233 res.more_head.add """<title>{{{name}}}</title>"""
234
235 res.add """
236 <div class="content">
237 <h1 class="package-name">{{{name}}}</h1>
238 """
239 var mdoc = mpackage.mdoc_or_fallback
240 if mdoc != null then res.add mdoc.html_documentation
241
242 res.add "<h2>Content</h2>"
243 var ot = new OrderedTree[MConcern]
244 for g in mpackage.mgroups do
245 var pa = g.parent
246 if g.is_interesting then
247 ot.add(pa, g)
248 pa = g
249 end
250 for mp in g.mmodules do
251 ot.add(pa, mp)
252 end
253 end
254 ot.sort_with(alpha_comparator)
255 gen_content_level(ot, ot.roots, res)
256
257
258 res.add """
259 </div>
260 <div class="sidebar">
261 <ul class="box">
262 """
263 var tryit = mpackage.metadata("upstream.tryit")
264 if tryit != null then
265 var e = tryit.html_escape
266 res.add "<li><a href=\"{e}\">Try<span style=\"color:white\">n</span>it!</a></li>\n"
267 end
268 var apk = mpackage.metadata("upstream.apk")
269 if apk != null then
270 var e = apk.html_escape
271 res.add "<li><a href=\"{e}\">Android apk</a></li>\n"
272 end
273
274 res.add """</ul>\n<ul class="box">\n"""
275
276 var homepage = mpackage.metadata("upstream.homepage")
277 if homepage != null then
278 var e = homepage.html_escape
279 res.add "<li><a href=\"{e}\">{e}</a></li>\n"
280 end
281 for maintainer in mpackage.maintainers do
282 res.add "<li>{maintainer.to_html}</li>"
283 end
284 var license = mpackage.metadata("package.license")
285 if license != null then
286 var e = license.html_escape
287 res.add "<li><a href=\"http://opensource.org/licenses/{e}\">{e}</a> license</li>\n"
288 end
289 res.add "</ul>\n"
290
291 res.add "<h3>Source Code</h3>\n<ul class=\"box\">\n"
292 var browse = mpackage.metadata("upstream.browse")
293 if browse != null then
294 var e = browse.html_escape
295 res.add "<li><a href=\"{e}\">{e}</a></li>\n"
296 end
297 var git = mpackage.metadata("upstream.git")
298 if git != null then
299 var e = git.html_escape
300 res.add "<li><tt>{e}</tt></li>\n"
301 end
302 var last_date = mpackage.last_date
303 if last_date != null then
304 var e = last_date.html_escape
305 res.add "<li>most recent commit: {e}</li>\n"
306 end
307 var first_date = mpackage.first_date
308 if first_date != null then
309 var e = first_date.html_escape
310 res.add "<li>oldest commit: {e}</li>\n"
311 end
312 var commits = commits[mpackage]
313 if commits != 0 then
314 res.add "<li>{commits} commits</li>\n"
315 end
316 res.add "</ul>\n"
317
318 res.add "<h3>Quality</h3>\n<ul class=\"box\">\n"
319 var errors = errors[mpackage]
320 if errors > 0 then
321 res.add "<li>{errors} errors</li>\n"
322 end
323 res.add "<li>{warnings[mpackage]} warnings</li>\n"
324 res.add "</ul>\n"
325
326 res.add "<h3>Tags</h3>\n"
327 var ts2 = new Array[String]
328 for t in mpackage.tags do
329 t = t.html_escape
330 ts2.add "<a href=\"../index.html#tag_{t}\">{t}</a>"
331 end
332 res.add_list(ts2, ", ", ", ")
333
334 if deps.has(mpackage) then
335 var reqs = deps[mpackage].greaters.to_a
336 reqs.remove(mpackage)
337 alpha_comparator.sort(reqs)
338 res.add "<h3>Requirements</h3>\n"
339 if reqs.is_empty then
340 res.add "none"
341 else
342 var list = new Array[String]
343 for r in reqs do
344 var direct = deps.has_direct_edge(mpackage, r)
345 var s = "<a href=\"{r}.html\">"
346 if direct then s += "<strong>"
347 s += r.to_s
348 if direct then s += "</strong>"
349 s += "</a>"
350 list.add s
351 end
352 res.add_list(list, ", ", " and ")
353 end
354
355 reqs = deps[mpackage].smallers.to_a
356 reqs.remove(mpackage)
357 alpha_comparator.sort(reqs)
358 res.add "<h3>Clients</h3>\n"
359 if reqs.is_empty then
360 res.add "none"
361 else
362 var list = new Array[String]
363 for r in reqs do
364 var direct = deps.has_direct_edge(r, mpackage)
365 var s = "<a href=\"{r}.html\">"
366 if direct then s += "<strong>"
367 s += r.to_s
368 if direct then s += "</strong>"
369 s += "</a>"
370 list.add s
371 end
372 res.add_list(list, ", ", " and ")
373 end
374 end
375
376 var contributors = mpackage.contributors
377 if not contributors.is_empty then
378 res.add "<h3>Contributors</h3>\n<ul class=\"box\">"
379 for c in contributors do
380 res.add "<li>{c.to_html}</li>"
381 end
382 res.add "</ul>"
383 end
384
385 res.add """
386 <h3>Stats</h3>
387 <ul class="box">
388 <li>{{{mmodules[mpackage]}}} modules</li>
389 <li>{{{mclasses[mpackage]}}} classes</li>
390 <li>{{{mmethods[mpackage]}}} methods</li>
391 <li>{{{loc[mpackage]}}} lines of code</li>
392 </ul>
393 """
394
395 res.add """
396 </div>
397 """
398 return res
399 end
400
401 # Return a short HTML sequence for a package
402 #
403 # Intended to use in lists.
404 fun li_package(p: MPackage): String
405 do
406 var res = ""
407 var f = "p/{p.name}.html"
408 res += "<a href=\"{f}\">{p}</a>"
409 var d = p.mdoc_or_fallback
410 if d != null then res += " - {d.html_synopsis.write_to_string}"
411 return res
412 end
413
414 # List packages by group.
415 #
416 # For each key of the `map` a `<h3>` is generated.
417 # Each package is then listed.
418 #
419 # The list of keys is generated first to allow fast access to the correct `<h3>`.
420 # `id_prefix` is used to give an id to the `<h3>` element.
421 fun list_by(map: MultiHashMap[Object, MPackage], id_prefix: String): Template
422 do
423 var res = new Template
424 var keys = map.keys.to_a
425 alpha_comparator.sort(keys)
426 var list = [for x in keys do "<a href=\"#{id_prefix}{x.to_s.html_escape}\">{x.to_s.html_escape}</a>"]
427 res.add_list(list, ", ", " and ")
428
429 for k in keys do
430 var projs = map[k].to_a
431 alpha_comparator.sort(projs)
432 var e = k.to_s.html_escape
433 res.add "<h3 id=\"{id_prefix}{e}\">{e} ({projs.length})</h3>\n<ul>\n"
434 for p in projs do
435 res.add "<li>"
436 res.add li_package(p)
437 res.add "</li>"
438 end
439 res.add "</ul>"
440 end
441 return res
442 end
443
444 # List the 10 best packages from `cpt`
445 fun list_best(cpt: Counter[MPackage]): Template
446 do
447 var res = new Template
448 res.add "<ul>"
449 var best = cpt.sort
450 for i in [1..10] do
451 if i > best.length then break
452 var p = best[best.length-i]
453 res.add "<li>"
454 res.add li_package(p)
455 # res.add " ({cpt[p]})"
456 res.add "</li>"
457 end
458 res.add "</ul>"
459 return res
460 end
461
462 # Produce a HTML table containig information on the packages
463 #
464 # `package_page` must have been called before so that information is computed.
465 fun table_packages(mpackages: Array[MPackage]): Template
466 do
467 alpha_comparator.sort(mpackages)
468 var res = new Template
469 res.add "<table data-toggle=\"table\" data-sort-name=\"name\" data-sort-order=\"desc\" width=\"100%\">\n"
470 res.add "<thead><tr>\n"
471 res.add "<th data-field=\"name\" data-sortable=\"true\">name</th>\n"
472 res.add "<th data-field=\"maint\" data-sortable=\"true\">maint</th>\n"
473 res.add "<th data-field=\"contrib\" data-sortable=\"true\">contrib</th>\n"
474 if deps.not_empty then
475 res.add "<th data-field=\"reqs\" data-sortable=\"true\">reqs</th>\n"
476 res.add "<th data-field=\"dreqs\" data-sortable=\"true\">direct<br>reqs</th>\n"
477 res.add "<th data-field=\"cli\" data-sortable=\"true\">clients</th>\n"
478 res.add "<th data-field=\"dcli\" data-sortable=\"true\">direct<br>clients</th>\n"
479 end
480 res.add "<th data-field=\"mod\" data-sortable=\"true\">modules</th>\n"
481 res.add "<th data-field=\"cla\" data-sortable=\"true\">classes</th>\n"
482 res.add "<th data-field=\"met\" data-sortable=\"true\">methods</th>\n"
483 res.add "<th data-field=\"loc\" data-sortable=\"true\">lines</th>\n"
484 res.add "<th data-field=\"score\" data-sortable=\"true\">score</th>\n"
485 res.add "<th data-field=\"errors\" data-sortable=\"true\">errors</th>\n"
486 res.add "<th data-field=\"warnings\" data-sortable=\"true\">warnings</th>\n"
487 res.add "</tr></thead>"
488 for p in mpackages do
489 res.add "<tr>"
490 res.add "<td><a href=\"p/{p.name}.html\">{p.name}</a></td>"
491 var maint = "?"
492 if p.maintainers.not_empty then maint = p.maintainers.first.name.html_escape
493 res.add "<td>{maint}</td>"
494 res.add "<td>{p.contributors.length}</td>"
495 if deps.not_empty then
496 res.add "<td>{deps[p].greaters.length-1}</td>"
497 res.add "<td>{deps[p].direct_greaters.length}</td>"
498 res.add "<td>{deps[p].smallers.length-1}</td>"
499 res.add "<td>{deps[p].direct_smallers.length}</td>"
500 end
501 res.add "<td>{mmodules[p]}</td>"
502 res.add "<td>{mclasses[p]}</td>"
503 res.add "<td>{mmethods[p]}</td>"
504 res.add "<td>{loc[p]}</td>"
505 res.add "<td>{score[p]}</td>"
506 res.add "<td>{errors[p]}</td>"
507 res.add "<td>{warnings[p]}</td>"
508 res.add "</tr>\n"
509 end
510 res.add "</table>\n"
511 return res
512 end
513
514 # Piwik tracker URL, if any
515 var piwik_tracker: nullable String = null
516
517 # Piwik site ID
518 # Used when `piwik_tracker` is set
519 var piwik_site_id: Int = 1
520 end
521
522 var model = new Model
523 var tc = new ToolContext
524
525 var opt_dir = new OptionString("Directory where the HTML files are generated", "-d", "--dir")
526 var opt_no_git = new OptionBool("Do not gather git information from the working directory", "--no-git")
527 var opt_no_parse = new OptionBool("Do not parse nit files (no importation information)", "--no-parse")
528 var opt_no_model = new OptionBool("Do not analyse nit files (no class/method information)", "--no-model")
529
530 # Piwik tracker URL.
531 # If you want to monitor your visitors.
532 var opt_piwik_tracker = new OptionString("Piwik tracker URL (ex: `nitlanguage.org/piwik/`)", "--piwik-tracker")
533 # Piwik tracker site id.
534 var opt_piwik_site_id = new OptionString("Piwik site ID", "--piwik-site-id")
535
536 tc.option_context.add_option(opt_dir, opt_no_git, opt_no_parse, opt_no_model, opt_piwik_tracker, opt_piwik_site_id)
537
538 tc.process_options(sys.args)
539 tc.keep_going = true
540
541 var modelbuilder = new ModelBuilder(model, tc)
542 var catalog = new Catalog(modelbuilder)
543
544 catalog.piwik_tracker = opt_piwik_tracker.value
545 var piwik_site_id = opt_piwik_site_id.value
546 if piwik_site_id != null then
547 if catalog.piwik_tracker == null then
548 print_error "Warning: ignored `{opt_piwik_site_id}` because `{opt_piwik_tracker}` is not set."
549 else if piwik_site_id.is_int then
550 print_error "Warning: ignored `{opt_piwik_site_id}`, an integer is required."
551 else
552 catalog.piwik_site_id = piwik_site_id.to_i
553 end
554 end
555
556
557 # Get files or groups
558 var args = tc.option_context.rest
559 if opt_no_parse.value then
560 modelbuilder.scan_full(args)
561 else
562 modelbuilder.parse_full(args)
563 end
564
565 # Scan packages and compute information
566 for p in model.mpackages do
567 var g = p.root
568 assert g != null
569 modelbuilder.scan_group(g)
570
571 # Load the module to process importation information
572 if opt_no_parse.value then continue
573
574 catalog.deps.add_node(p)
575 for gg in p.mgroups do for m in gg.mmodules do
576 for im in m.in_importation.direct_greaters do
577 var ip = im.mpackage
578 if ip == null or ip == p then continue
579 catalog.deps.add_edge(p, ip)
580 end
581 end
582 end
583
584 if not opt_no_git.value then for p in model.mpackages do
585 catalog.git_info(p)
586 end
587
588 # Run phases to modelize classes and properties (so we can count them)
589 if not opt_no_model.value then
590 modelbuilder.run_phases
591 end
592
593 var out = opt_dir.value or else "catalog.out"
594 (out/"p").mkdir
595 (out/"res").mkdir
596
597 catalog.outdir = out
598
599 # Generate the css (hard coded)
600 var css = """
601 body {
602 margin-top: 15px;
603 background-color: #f8f8f8;
604 }
605
606 a {
607 color: #0D8921;
608 text-decoration: none;
609 }
610
611 a:hover {
612 color: #333;
613 text-decoration: none;
614 }
615
616 h1 {
617 font-weight: bold;
618 color: #0D8921;
619 font-size: 22px;
620 }
621
622 h2 {
623 color: #6C6C6C;
624 font-size: 18px;
625 border-bottom: solid 3px #CCC;
626 }
627
628 h3 {
629 color: #6C6C6C;
630 font-size: 15px;
631 border-bottom: solid 1px #CCC;
632 }
633
634 ul {
635 list-style-type: square;
636 }
637
638 dd {
639 color: #6C6C6C;
640 margin-top: 1em;
641 margin-bottom: 1em;
642 }
643
644 pre {
645 border: 1px solid #CCC;
646 font-family: Monospace;
647 color: #2d5003;
648 background-color: rgb(250, 250, 250);
649 }
650
651 code {
652 font-family: Monospace;
653 color: #2d5003;
654 }
655
656 footer {
657 margin-top: 20px;
658 }
659
660 .container {
661 margin: 0 auto;
662 padding: 0 20px;
663 }
664
665 .content {
666 float: left;
667 margin-top: 40px;
668 width: 65%;
669 }
670
671 .sidebar {
672 float: right;
673 margin-top: 40px;
674 width: 30%
675 }
676
677 .sidebar h3 {
678 color: #0D8921;
679 font-size: 18px;
680 border-bottom: 0px;
681 }
682
683 .box {
684 margin: 0;
685 padding: 0;
686 }
687
688 .box li {
689 line-height: 2.5;
690 white-space: nowrap;
691 overflow: hidden;
692 text-overflow: ellipsis;
693 padding-right: 10px;
694 border-bottom: 1px solid rgba(0,0,0,0.2);
695 }
696 """
697 css.write_to_file(out/"style.css")
698
699 # PAGES
700
701 for p in model.mpackages do
702 # print p
703 var f = "p/{p.name}.html"
704 catalog.package_page(p)
705 catalog.generate_page(p).write_to_file(out/f)
706 end
707
708 # INDEX
709
710 var index = catalog.new_page("")
711 index.more_head.add "<title>Packages in Nit</title>"
712
713 index.add """
714 <div class="content">
715 <h1>Packages in Nit</h1>
716 """
717
718 index.add "<h2>Highlighted Packages</h2>\n"
719 index.add catalog.list_best(catalog.score)
720
721 if catalog.deps.not_empty then
722 index.add "<h2>Most Required</h2>\n"
723 var reqs = new Counter[MPackage]
724 for p in model.mpackages do
725 reqs[p] = catalog.deps[p].smallers.length - 1
726 end
727 index.add catalog.list_best(reqs)
728 end
729
730 index.add "<h2>By First Tag</h2>\n"
731 index.add catalog.list_by(catalog.cat2proj, "cat_")
732
733 index.add "<h2>By Any Tag</h2>\n"
734 index.add catalog.list_by(catalog.tag2proj, "tag_")
735
736 index.add """
737 </div>
738 <div class="sidebar">
739 <h3>Stats</h3>
740 <ul class="box">
741 <li>{{{model.mpackages.length}}} packages</li>
742 <li>{{{catalog.maint2proj.length}}} maintainers</li>
743 <li>{{{catalog.contrib2proj.length}}} contributors</li>
744 <li>{{{catalog.tag2proj.length}}} tags</li>
745 <li>{{{catalog.mmodules.sum}}} modules</li>
746 <li>{{{catalog.mclasses.sum}}} classes</li>
747 <li>{{{catalog.mmethods.sum}}} methods</li>
748 <li>{{{catalog.loc.sum}}} lines of code</li>
749 </ul>
750 </div>
751 """
752
753 index.write_to_file(out/"index.html")
754
755 # PEOPLE
756
757 var page = catalog.new_page("")
758 page.more_head.add "<title>People of Nit</title>"
759 page.add """<div class="content">\n<h1>People of Nit</h1>\n"""
760 page.add "<h2>By Maintainer</h2>\n"
761 page.add catalog.list_by(catalog.maint2proj, "maint_")
762 page.add "<h2>By Contributor</h2>\n"
763 page.add catalog.list_by(catalog.contrib2proj, "contrib_")
764 page.add "</div>\n"
765 page.write_to_file(out/"people.html")
766
767 # TABLE
768
769 page = catalog.new_page("")
770 page.more_head.add "<title>Projets of Nit</title>"
771 page.add """<div class="content">\n<h1>People of Nit</h1>\n"""
772 page.add "<h2>Table of Projets</h2>\n"
773 page.add catalog.table_packages(model.mpackages)
774 page.add "</div>\n"
775 page.write_to_file(out/"table.html")