X-Git-Url: http://nitlanguage.org diff --git a/src/ni_nitdoc.nit b/src/ni_nitdoc.nit index 4548e0f..e2c8aa3 100644 --- a/src/ni_nitdoc.nit +++ b/src/ni_nitdoc.nit @@ -28,6 +28,7 @@ class Nitdoc private var arguments: Array[String] private var destinationdir: nullable String private var sharedir: nullable String + private var source: nullable String private var opt_dir = new OptionString("Directory where doc is generated", "-d", "--dir") private var opt_source = new OptionString("What link for source (%f for filename, %l for first line, %L for last line)", "--source") @@ -38,10 +39,12 @@ class Nitdoc # We need a model to collect stufs self.toolcontext = toolcontext self.arguments = toolcontext.option_context.rest + toolcontext.option_context.options.clear toolcontext.option_context.add_option(opt_dir) toolcontext.option_context.add_option(opt_source) toolcontext.option_context.add_option(opt_sharedir) toolcontext.option_context.add_option(opt_nodot) + toolcontext.process_options process_options if arguments.length < 1 then @@ -86,6 +89,11 @@ class Nitdoc abort end end + if not opt_source.value is null then + source = "" + else + source = opt_source.value + end end fun start do @@ -97,11 +105,12 @@ class Nitdoc fullindex modules classes + quicksearch_list end end fun overview do - var overviewpage = new NitdocOverview.with(modelbuilder.nmodules, self.opt_nodot.value, destinationdir.to_s) + var overviewpage = new NitdocOverview.with(modelbuilder, self.opt_nodot.value, destinationdir.to_s) overviewpage.save("{destinationdir.to_s}/index.html") end @@ -111,50 +120,83 @@ class Nitdoc end fun modules do - for mod in modelbuilder.nmodules do - var modulepage = new NitdocModules.with(mod) - modulepage.save("{destinationdir.to_s}/{mod.mmodule.name}.html") + for mmodule in model.mmodules do + var modulepage = new NitdocModule.with(mmodule, modelbuilder) + modulepage.save("{destinationdir.to_s}/{mmodule.name}.html") end end fun classes do - for amodule in modelbuilder.nmodules do - for mclass, aclassdef in amodule.mclass2nclassdef do - var classpage = new NitdocMClasses.with(mclass, aclassdef) - classpage.save("{destinationdir.to_s}/{mclass.name}.html") + for mclass in modelbuilder.model.mclasses do + var classpage = new NitdocClass.with(mclass, modelbuilder, source) + classpage.save("{destinationdir.to_s}/{mclass.name}.html") + end + end + + # Generate QuickSearch file + fun quicksearch_list do + var file = new OFStream.open("{destinationdir.to_s}/quicksearch-list.js") + var content = new Buffer + content.append("var entries = \{ ") + for prop in model.mproperties do + if not prop isa MMethod then continue + content.append("\"{prop.name}\": [") + for propdef in prop.mpropdefs do + content.append("\{txt: \"{propdef.mproperty.full_name}\", url:\"{propdef.mproperty.anchor}\" \}") + if not propdef is prop.mpropdefs.last then content.append(", ") + end + content.append("]") + content.append(", ") + end + + for mclass in model.mclasses do + content.append("\"{mclass.name}\": [") + for mclassdef in mclass.mclassdefs do + content.append("\{txt: \"{mclassdef.mclass.full_name}\", url:\"{mclass.link_anchor}\" \}") + if not mclassdef is mclass.mclassdefs.last then content.append(", ") end + content.append("]") + if not mclass is model.mclasses.last then content.append(", ") end + + content.append(" \};") + file.write(content.to_s) + file.close end end -class NitdocOverview - super NitdocPage +# Nitdoc base page +abstract class NitdocPage + super HTMLPage - var amodules: Array[AModule] + var opt_nodot: Bool + var destinationdir : String + var source: nullable String - # Init with Array[AModule] to get all ifnormations about each MModule containt in a program - # opt_nodot to inform about the graph gen - # destination: to know where will be saved dot files - init with(modules: Array[AModule], opt_nodot: Bool, destination: String) do - self.amodules = modules - self.opt_nodot = opt_nodot - self.destinationdir = destination + redef fun head do + add("meta").attr("charset", "utf-8") + add("script").attr("type", "text/javascript").attr("src", "scripts/jquery-1.7.1.min.js") + add("script").attr("type", "text/javascript").attr("src", "quicksearch-list.js") + add("script").attr("type", "text/javascript").attr("src", "scripts/js-facilities.js") + add("link").attr("rel", "stylesheet").attr("href", "styles/main.css").attr("type", "text/css").attr("media", "screen") end - redef fun head do - super - add("title").text("Overview | Nit Standard Library") + redef fun body do + header + open("div").add_class("page") + content + close("div") + footer end - redef fun header do + fun menu is abstract + + fun header do open("header") open("nav").add_class("main") open("ul") - add("li").add_class("current").text("Overview") - open("li") - add_html("Full Index") - close("li") + menu open("li").attr("id", "liGitHub") open("a").add_class("btn").attr("id", "logGitHub") add("img").attr("id", "imgGitHub").attr("src", "resources/icons/github-icon.png") @@ -199,9 +241,74 @@ class NitdocOverview close("header") end - redef fun body do + fun content is abstract + + fun footer do + add("footer").text("Nit standard library. Version jenkins-component=stdlib-19.") + end + + # Generate a clickable graphviz image using a dot content + fun generate_dot(dot: String, name: String, alt: String) do + if opt_nodot then return + var file = new OFStream.open("{self.destinationdir}/{name}.dot") + file.write(dot) + file.close + sys.system("\{ test -f {self.destinationdir}/{name}.png && test -f {self.destinationdir}/{name}.s.dot && diff {self.destinationdir}/{name}.dot {self.destinationdir}/{name}.s.dot >/dev/null 2>&1 ; \} || \{ cp {self.destinationdir}/{name}.dot {self.destinationdir}/{name}.s.dot && dot -Tpng -o{self.destinationdir}/{name}.png -Tcmapx -o{self.destinationdir}/{name}.map {self.destinationdir}/{name}.s.dot ; \}") + open("article").add_class("graph") + add("img").attr("src", "{name}.png").attr("usemap", "#{name}").attr("style", "margin:auto").attr("alt", "{alt}") + close("article") + var fmap = new IFStream.open("{self.destinationdir}/{name}.map") + add_html(fmap.read_all) + fmap.close + end + + # Add a (source) link for a given location + fun show_source(l: Location): String + do + if source == null then + return "({l.file.filename.simplify_path})" + else + # THIS IS JUST UGLY ! (but there is no replace yet) + var x = source.split_with("%f") + source = x.join(l.file.filename.simplify_path) + x = source.split_with("%l") + source = x.join(l.line_start.to_s) + x = source.split_with("%L") + source = x.join(l.line_end.to_s) + return " (show code)" + end + end + +end + +# The overview page +class NitdocOverview + super NitdocPage + + var mbuilder: ModelBuilder + + # Init with Array[AModule] to get all ifnormations about each MModule containt in a program + # opt_nodot to inform about the graph gen + # destination: to know where will be saved dot files + init with(mbuilder: ModelBuilder, opt_nodot: Bool, destination: String) do + self.mbuilder = mbuilder + self.opt_nodot = opt_nodot + self.destinationdir = destination + end + + redef fun head do super - open("div").add_class("page") + add("title").text("Overview | Nit Standard Library") + end + + redef fun menu do + add("li").add_class("current").text("Overview") + open("li") + add("a").attr("href", "full-index.html").text("Full Index") + close("li") + end + + redef fun content do open("div").add_class("content fullpage") add("h1").text("Nit Standard Library") open("article").add_class("overview") @@ -215,39 +322,51 @@ class NitdocOverview process_generate_dot close("article") close("div") - close("div") - add("footer").text("Nit standard library. Version jenkins-component=stdlib-19.") end fun add_modules do - var ls = new List[nullable MModule] - for amodule in amodules do - var mmodule = amodule.mmodule.public_owner - if mmodule != null and not ls.has(mmodule) then - open("li") - add("a").attr("href", "{mmodule.name}.html").text("{mmodule.to_s} ") - add_html(amodule.comment) - close("li") - ls.add(mmodule) - end + var mmodules = list_mmodules + var sorted = new Array[MModule].from(mmodules) + var sorter = new ComparableSorter[MModule] + sorter.sort(sorted) + for mmodule in sorted do + var amodule = mbuilder.mmodule2nmodule[mmodule] + open("li") + add_html("{mmodule.link(amodule)} {amodule.short_comment}") + close("li") end end fun process_generate_dot do var op = new Buffer op.append("digraph dep \{ rankdir=BT; node[shape=none,margin=0,width=0,height=0,fontsize=10]; edge[dir=none,color=gray]; ranksep=0.2; nodesep=0.1;\n") - for amodule in amodules do - op.append("\"{amodule.mmodule.name}\"[URL=\"{amodule.mmodule.name}.html\"];\n") - for mmodule2 in amodule.mmodule.in_importation.direct_greaters do - op.append("\"{amodule.mmodule.name}\"->\"{mmodule2.name}\";\n") + for mmodule in list_mmodules do + op.append("\"{mmodule.name}\"[URL=\"{mmodule.name}.html\"];\n") + for imported in mmodule.in_importation.direct_greaters do + if imported.direct_owner == null then + op.append("\"{mmodule.name}\"->\"{imported.name}\";\n") + end end end op.append("\}\n") generate_dot(op.to_s, "dep", "Modules hierarchy") end + private fun list_mmodules: Set[MModule] do + var mmodules = new HashSet[MModule] + for mmodule in mbuilder.model.mmodules do + var owner = mmodule.public_owner + if owner != null then + mmodules.add(owner) + else + mmodules.add(mmodule) + end + end + return mmodules + end end +# The full index page class NitdocFullindex super NitdocPage @@ -264,82 +383,32 @@ class NitdocFullindex add("title").text("Full Index | Nit Standard Library") end - redef fun header do - open("header") - open("nav").add_class("main") - open("ul") + redef fun menu do open("li") - add_html("Overview") + add("a").attr("href", "index.html").text("Overview") close("li") add("li").add_class("current").text("Full Index") - open("li").attr("id", "liGitHub") - open("a").add_class("btn").attr("id", "logGitHub") - add("img").attr("id", "imgGitHub").attr("src", "resources/icons/github-icon.png") - close("a") - open("div").add_class("popover bottom") - add("div").add_class("arrow").text(" ") - open("div").add_class("githubTitle") - add("h3").text("Github Sign In") - close("div") - open("div") - add("label").attr("id", "lbloginGit").text("Username") - add("input").attr("id", "loginGit").attr("name", "login").attr("type", "text") - open("label").attr("id", "logginMessage").text("Hello ") - open("a").attr("id", "githubAccount") - add("strong").attr("id", "nickName").text(" ") - close("a") - close("label") - close("div") - open("div") - add("label").attr("id", "lbpasswordGit").text("Password") - add("input").attr("id", "passwordGit").attr("name", "password").attr("type", "password") - open("div").attr("id", "listBranches") - add("label").attr("id", "lbBranches").text("Branch") - add("select").add_class("dropdown").attr("id", "dropBranches").attr("name", "dropBranches").attr("tabindex", "1").text(" ") - close("div") - close("div") - open("div") - add("label").attr("id", "lbrepositoryGit").text("Repository") - add("input").attr("id", "repositoryGit").attr("name", "repository").attr("type", "text") - close("div") - open("div") - add("label").attr("id", "lbbranchGit").text("Branch") - add("input").attr("id", "branchGit").attr("name", "branch").attr("type", "text") - close("div") - open("div") - add("a").attr("id", "signIn").text("Sign In") - close("div") - close("div") - close("li") - close("ul") - close("nav") - close("header") end - redef fun body do - super - open("div").add_class("page") + redef fun content do open("div").add_class("content fullpage") add("h1").text("Full Index") - add_content - close("div") - close("div") - add("footer").text("Nit standard library. Version jenkins-component=stdlib-19.") - end - - fun add_content do module_column classes_column properties_column + close("div") end # Add to content modules column fun module_column do var ls = new List[nullable MModule] + var sorted = mmodules + var sorterp = new ComparableSorter[MModule] + sorterp.sort(sorted) open("article").add_class("modules filterable") add("h2").text("Modules") open("ul") - for mmodule in mmodules do + for mmodule in sorted do if mmodule.public_owner != null and not ls.has(mmodule.public_owner) then ls.add(mmodule.public_owner) open("li") @@ -353,13 +422,16 @@ class NitdocFullindex # Add to content classes modules fun classes_column do + var sorted = mmodules.first.imported_mclasses.to_a + var sorterp = new ComparableSorter[MClass] + sorterp.sort(sorted) open("article").add_class("classes filterable") add("h2").text("Classes") open("ul") - for mclass in mmodules.first.imported_mclasses do + for mclass in sorted do open("li") - add("a").attr("href", "{mclass.name}.html").text(mclass.name) + add("a").attr("href", "{mclass}.html").text(mclass.name) close("li") end @@ -372,8 +444,13 @@ class NitdocFullindex open("article").add_class("properties filterable") add("h2").text("Properties") open("ul") + var sorted_imported = mmodules.first.imported_methods.to_a + var sorted_redef = mmodules.first.redef_methods.to_a + var sorterp = new ComparableSorter[MProperty] + sorterp.sort(sorted_imported) + sorterp.sort(sorted_redef) - for method in mmodules.first.imported_methods do + for method in sorted_imported do if method.visibility is none_visibility or method.visibility is intrude_visibility then continue open("li").add_class("intro") add("span").attr("title", "introduction").text("I") @@ -382,7 +459,7 @@ class NitdocFullindex close("li") end - for method in mmodules.first.redef_methods do + for method in sorted_redef do if method.visibility is none_visibility or method.visibility is intrude_visibility then continue open("li").add_class("redef") add("span").attr("title", "redefinition").text("R") @@ -397,93 +474,44 @@ class NitdocFullindex end -class NitdocModules +# A module page +class NitdocModule super NitdocPage - var amodule: AModule - var modulename: String - init with(amodule: AModule) do - self.amodule = amodule - self.modulename = self.amodule.mmodule.name + var mmodule: MModule + var mbuilder: ModelBuilder + + init with(mmodule: MModule, mbuilder: ModelBuilder) do + self.mmodule = mmodule + self.mbuilder = mbuilder opt_nodot = false destinationdir = "" end redef fun head do super - add("title").text("{modulename} module | {amodule.short_comment}") + var amodule = mbuilder.mmodule2nmodule[mmodule] + add("title").text("{mmodule.name} module | {amodule.short_comment}") end - redef fun header do - open("header") - open("nav").add_class("main") - open("ul") + redef fun menu do open("li") - add_html("Overview") + add("a").attr("href", "index.html").text("Overview") close("li") - add("li").add_class("current").text(modulename) + add("li").add_class("current").text(mmodule.name) open("li") - add_html("Full Index") - close("li") - open("li").attr("id", "liGitHub") - open("a").add_class("btn").attr("id", "logGitHub") - add("img").attr("id", "imgGitHub").attr("src", "resources/icons/github-icon.png") - close("a") - open("div").add_class("popover bottom") - add("div").add_class("arrow").text(" ") - open("div").add_class("githubTitle") - add("h3").text("Github Sign In") - close("div") - open("div") - add("label").attr("id", "lbloginGit").text("Username") - add("input").attr("id", "loginGit").attr("name", "login").attr("type", "text") - open("label").attr("id", "logginMessage").text("Hello ") - open("a").attr("id", "githubAccount") - add("strong").attr("id", "nickName").text(" ") - close("a") - close("label") - close("div") - open("div") - add("label").attr("id", "lbpasswordGit").text("Password") - add("input").attr("id", "passwordGit").attr("name", "password").attr("type", "password") - open("div").attr("id", "listBranches") - add("label").attr("id", "lbBranches").text("Branch") - add("select").add_class("dropdown").attr("id", "dropBranches").attr("name", "dropBranches").attr("tabindex", "1").text(" ") - close("div") - close("div") - open("div") - add("label").attr("id", "lbrepositoryGit").text("Repository") - add("input").attr("id", "repositoryGit").attr("name", "repository").attr("type", "text") - close("div") - open("div") - add("label").attr("id", "lbbranchGit").text("Branch") - add("input").attr("id", "branchGit").attr("name", "branch").attr("type", "text") - close("div") - open("div") - add("a").attr("id", "signIn").text("Sign In") - close("div") - close("div") + add("a").attr("href", "full-index.html").text("Full Index") close("li") - close("ul") - close("nav") - close("header") - end - - redef fun body do - super - open("div").add_class("page") - menu - add_content - close("div") - add("footer").text("Nit standard library. Version jenkins-component=stdlib-19.") end - # Insert all tags in content part - fun add_content do + redef fun content do + sidebar open("div").add_class("content") - add("h1").text(modulename) - add("div").add_class("subtitle").text("module {modulename}") + add("h1").text(mmodule.name) + add("div").add_class("subtitle") + add_html("module {mmodule.namespace(mbuilder)}") module_comment + #process_generate_dot classes properties close("div") @@ -491,6 +519,7 @@ class NitdocModules # Insert module comment in the content fun module_comment do + var amodule = mbuilder.mmodule2nmodule[mmodule] var doc = amodule.comment open("div").attr("id", "description") add("pre").add_class("text_label").text(doc) @@ -501,63 +530,97 @@ class NitdocModules close("div") end - fun menu do - var mmodule = amodule.mmodule + fun process_generate_dot do + var op = new Buffer + op.append("digraph dep \{ rankdir=BT; node[shape=none,margin=0,width=0,height=0,fontsize=10]; edge[dir=none,color=gray]; ranksep=0.2; nodesep=0.1;\n") + for m in mmodule.in_importation.smallers do + op.append("\"{m.name}\"[URL=\"{m.name}.html\"];\n") + for imported in m.in_importation.direct_greaters do + if imported.direct_owner == null then + op.append("\"{m.name}\"->\"{imported.name}\";\n") + end + end + end + op.append("\}\n") + generate_dot(op.to_s, "dep_{mmodule.name}", "Modules hierarchy") + end + + fun sidebar do + var amodule = mbuilder.mmodule2nmodule[mmodule] open("div").add_class("menu") open("nav") - add("h3").text("Module Hierarchy").attr("style","cursor: pointer;") - if mmodule.in_importation.direct_greaters.length > 0 then - add_html("

All dependencies

") - end - if mmodule.in_importation.greaters.length > 0 then - add_html("

All clients

") + add("h3").text("Module Hierarchy") + var dependencies = new Array[MModule] + for dep in mmodule.in_importation.greaters do + if dep == mmodule or dep.public_owner != null then continue + dependencies.add(dep) + end + if dependencies.length > 0 then + add("h4").text("All dependencies") + display_module_list(dependencies) + end + var clients = new Array[MModule] + for dep in mmodule.in_importation.smallers do + if dep == mmodule or dep.public_owner != null then continue + clients.add(dep) + end + if clients.length > 0 then + add("h4").text("All clients") + display_module_list(clients) end close("nav") if mmodule.in_nesting.direct_greaters.length > 0 then open("nav") - add("h3").text("Nested Modules").attr("style","cursor: pointer;") - open("ul") - for m in mmodule.in_nesting.direct_greaters do - open("li") - add("a").attr("href", "{m.name}.html").text(m.name) - close("li") - end - close("ul") - + add("h3").text("Nested Modules") + display_module_list(mmodule.in_nesting.direct_greaters.to_a) close("nav") end close("div") end + private fun display_module_list(list: Array[MModule]) do + open("ul") + var sorter = new ComparableSorter[MModule] + sorter.sort(list) + for m in list do + var am = mbuilder.mmodule2nmodule[m] + open("li") + add_html(m.link(am)) + close("li") + end + close("ul") + end + fun classes do + var amodule = mbuilder.mmodule2nmodule[mmodule] + var intro_mclasses = mmodule.intro_mclasses + var redef_mclasses = mmodule.redef_mclasses + var all_mclasses = new HashSet[MClass] + for m in mmodule.in_nesting.greaters do + all_mclasses.add_all(m.intro_mclasses) + all_mclasses.add_all(m.redef_mclasses) + end + all_mclasses.add_all(intro_mclasses) + all_mclasses.add_all(redef_mclasses) + + var sorted = new Array[MClass] + sorted.add_all(all_mclasses) + var sorter = new ComparableSorter[MClass] + sorter.sort(sorted) open("div").add_class("module") open("article").add_class("classes filterable") add("h2").text("Classes") open("ul") - for c, state in amodule.mmodule.mclasses do - var name = c.name - if state == c_is_intro or state == c_is_imported then - open("li").add_class("intro") - add("span").attr("title", "introduced in this module").text("I ") - else + for c in sorted do + var nclass = mbuilder.mclassdef2nclassdef[c.intro].as(AStdClassdef) + if redef_mclasses.has(c) and c.intro_mmodule.public_owner != mmodule then open("li").add_class("redef") add("span").attr("title", "refined in this module").text("R ") + else + open("li").add_class("intro") + add("span").attr("title", "introduced in this module").text("I ") end - add("a").attr("href", "{name}.html").text(name) + add_html(c.link(nclass)) close("li") end close("ul") @@ -566,208 +629,382 @@ class NitdocModules end fun properties do + var amodule = mbuilder.mmodule2nmodule[mmodule] + var mpropdefs = new HashSet[MPropDef] + for m in mmodule.in_nesting.greaters do + for c in m.mclassdefs do mpropdefs.add_all(c.mpropdefs) + end + for c in mmodule.mclassdefs do mpropdefs.add_all(c.mpropdefs) + var sorted = mpropdefs.to_a + var sorter = new ComparableSorter[MPropDef] + sorter.sort(sorted) open("article").add_class("properties filterable") - add_html("

Properties

") + add("h2").text("Properties") open("ul") - for method in amodule.mmodule.imported_methods do - if method.visibility is none_visibility or method.visibility is intrude_visibility then continue - open("li").add_class("intro") - add("span").attr("title", "introduction").text("I") - add_html(" ") - add("a").attr("href", "{method.local_class.name}.html").attr("title", "").text("{method.name} ({method.local_class.name})") + for p in sorted do + if p isa MAttributeDef then continue + if p.mproperty.visibility <= none_visibility then continue + if not mbuilder.mpropdef2npropdef.has_key(p) then continue + var nprop = mbuilder.mpropdef2npropdef[p] + if p.is_intro then + open("li").add_class("intro") + add("span").attr("title", "introduction").text("I") + else + open("li").add_class("redef") + add("span").attr("title", "redefinition").text("R") + end + add_html(" {p.link(nprop)} ({p.mclassdef.mclass.name})") close("li") end - - for method in amodule.mmodule.redef_methods do - if method.visibility is none_visibility or method.visibility is intrude_visibility then continue - open("li").add_class("redef") - add("span").attr("title", "redefinition").text("R") - add_html(" ") - add("a").attr("href", "{method.local_class.name}.html").attr("title", "").text("{method.name} ({method.local_class.name})") - close("li") - end - close("ul") close("article") end - end -# Nit Standard Library -class NitdocMClasses +# A class page +class NitdocClass super NitdocPage var mclass: MClass - var aclassdef: AClassdef - var stdclassdef: nullable AStdClassdef - var public_owner: nullable MModule + var mbuilder: ModelBuilder - init with(mclass: MClass, aclassdef: AClassdef) do + init with(mclass: MClass, mbuilder: ModelBuilder, source: nullable String) do self.mclass = mclass - self.aclassdef = aclassdef - if aclassdef isa AStdClassdef then self.stdclassdef = aclassdef - self.public_owner = mclass.intro_mmodule.public_owner - opt_nodot = false - destinationdir = "" + self.mbuilder = mbuilder + self.opt_nodot = false + self.destinationdir = "" + self.source = source end redef fun head do super - add("title").text("{self.mclass.name} class | Nit Standard Library") + var nclass = mbuilder.mclassdef2nclassdef[mclass.intro] + if nclass isa AStdClassdef then + add("title").text("{mclass.name} class | {nclass.short_comment}") + else + add("title").text("{mclass.name} class") + end end - redef fun header do - open("header") - open("nav").add_class("main") - open("ul") + redef fun menu do open("li") - add_html("Overview") + add("a").attr("href", "index.html").text("Overview") close("li") open("li") + var public_owner = mclass.public_owner if public_owner is null then - add_html("{mclass.intro_mmodule.name}") + var am = mbuilder.mmodule2nmodule[mclass.intro_mmodule] + add_html(mclass.intro_mmodule.link(am)) else - add_html("{public_owner.name}") + var am = mbuilder.mmodule2nmodule[public_owner] + add_html(public_owner.link(am)) end close("li") add("li").add_class("current").text(mclass.name) open("li") - add_html("Full Index") + add("a").attr("href", "full-index.html").text("Full Index") close("li") - open("li").attr("id", "liGitHub") - open("a").add_class("btn").attr("id", "logGitHub") - add("img").attr("id", "imgGitHub").attr("src", "resources/icons/github-icon.png") - close("a") - open("div").add_class("popover bottom") - add("div").add_class("arrow").text(" ") - open("div").add_class("githubTitle") - add("h3").text("Github Sign In") - close("div") - open("div") - add("label").attr("id", "lbloginGit").text("Username") - add("input").attr("id", "loginGit").attr("name", "login").attr("type", "text") - open("label").attr("id", "logginMessage").text("Hello ") - open("a").attr("id", "githubAccount") - add("strong").attr("id", "nickName").text(" ") - close("a") - close("label") - close("div") - open("div") - add("label").attr("id", "lbpasswordGit").text("Password") - add("input").attr("id", "passwordGit").attr("name", "password").attr("type", "password") - open("div").attr("id", "listBranches") - add("label").attr("id", "lbBranches").text("Branch") - add("select").add_class("dropdown").attr("id", "dropBranches").attr("name", "dropBranches").attr("tabindex", "1").text(" ") - close("div") - close("div") - open("div") - add("label").attr("id", "lbrepositoryGit").text("Repository") - add("input").attr("id", "repositoryGit").attr("name", "repository").attr("type", "text") - close("div") - open("div") - add("label").attr("id", "lbbranchGit").text("Branch") - add("input").attr("id", "branchGit").attr("name", "branch").attr("type", "text") - close("div") - open("div") - add("a").attr("id", "signIn").text("Sign In") - close("div") - close("div") - close("li") - close("ul") - close("nav") - close("header") - end - - redef fun body do - super - open("div").add_class("page") - add_content - close("div") - add("footer").text("Nit standard library. Version jenkins-component=stdlib-19.") end - # Insert all tags in content part - fun add_content do + redef fun content do open("div").add_class("menu") properties_column + inheritance_column close("div") open("div").add_class("content") + class_doc close("div") end fun properties_column do + var sorter = new ComparableSorter[MPropDef] open("nav").add_class("properties filterable") add("h3").text("Properties") - - if mclass.virtual_types.length > 0 then + # get properties + var vtypes = new HashSet[MVirtualTypeDef] + var consts = new HashSet[MMethodDef] + var meths = new HashSet[MMethodDef] + for mclassdef in mclass.mclassdefs do + for mpropdef in mclassdef.mpropdefs do + if not mbuilder.mpropdef2npropdef.has_key(mpropdef) then continue + if mpropdef.mproperty.visibility <= none_visibility then continue + if mpropdef isa MVirtualTypeDef then vtypes.add(mpropdef) + if mpropdef isa MMethodDef then + if mpropdef.mproperty.is_init then + consts.add(mpropdef) + else + meths.add(mpropdef) + end + end + end + end + for mprop in mclass.inherited_methods do + var mpropdef = mprop.intro + if not mbuilder.mpropdef2npropdef.has_key(mpropdef) then continue + if mprop.visibility <= none_visibility then continue + if mprop.intro_mclassdef.mclass.name == "Object" then continue + meths.add(mpropdef) + end + # virtual types + if vtypes.length > 0 then + var vts = new Array[MVirtualTypeDef] + vts.add_all(vtypes) + sorter.sort(vts) add("h4").text("Virtual Types") + display_mpropdef_list(vts) + end + if consts.length > 0 then + var cts = new Array[MMethodDef] + cts.add_all(consts) + sorter.sort(cts) + add("h4").text("Constructors") + display_mpropdef_list(cts) + end + if meths.length > 0 then + var mts = new Array[MMethodDef] + mts.add_all(meths) + sorter.sort(mts) + add("h4").text("Methods") + display_mpropdef_list(mts) + end + close("nav") + end + + private fun display_mpropdef_list(list: Array[MPropDef]) do + open("ul") + for prop in list do + var nprop = mbuilder.mpropdef2npropdef[prop] + if prop.is_intro and prop.mproperty.intro_mclassdef.mclass != mclass then + open("li").add_class("inherit") + add("span").attr("title", "Inherited").text("H") + else if prop.is_intro then + open("li").add_class("intro") + add("span").attr("title", "Introduced").text("I") + else + open("li").add_class("redef") + add("span").attr("title", "Redefined").text("R") + end + add_html(prop.link(nprop)) + close("li") + end + close("ul") + end + + fun inheritance_column do + var sorted = new Array[MClass] + var sorterp = new ComparableSorter[MClass] + open("nav") + add("h3").text("Inheritance") + if mclass.ancestors.length > 1 then + sorted = mclass.ancestors.to_a + sorterp.sort(sorted) + add("h4").text("Superclasses") open("ul") - for prop in mclass.virtual_types do - add_html("
  • R{prop.name}
  • ") + for sup in sorted do + if sup == mclass then continue + open("li") + add("a").attr("href", "{sup.name}.html").text(sup.name) + close("li") end close("ul") end - if mclass.constructors.length > 0 then - add("h4").text("Constructors") + + if mclass.descendants.length <= 1 then + add("h4").text("No Known Subclasses") + else if mclass.descendants.length <= 100 then + sorted = mclass.descendants.to_a + sorterp.sort(sorted) + add("h4").text("Subclasses") + open("ul") + for sub in sorted do + if sub == mclass then continue + open("li") + add("a").attr("href", "{sub.name}.html").text(sub.name) + close("li") + end + close("ul") + else if mclass.children.length <= 100 then + sorted = mclass.children.to_a + sorterp.sort(sorted) + add("h4").text("Direct Subclasses Only") open("ul") - for prop in mclass.constructors do - add_html("
  • I{prop.name}
  • ") + for sub in sorted do + if sub == mclass then continue + open("li") + add("a").attr("href", "{sub.name}.html").text(sub.name) + close("li") end close("ul") + else + add("h4").text("Too much Subclasses to list") end - add("h4").text("Methods") + close("nav") + end + + fun class_doc do + var nclass = mbuilder.mclassdef2nclassdef[mclass.intro] + var sorted = new Array[MModule] + sorted.add_all(mclass.concerns.keys) + var sorterp = new ComparableSorter[MModule] + var sorterprop = new ComparableSorter[MProperty] + var sorterc = new ComparableSorter[MClass] + sorterp.sort(sorted) + var subtitle = "" + var lmmodule = new List[MModule] + # Insert the subtitle part + add("h1").text(mclass.to_s) + open("div").add_class("subtitle") + if mclass.visibility is none_visibility then subtitle += "private " + subtitle += "{mclass.kind} {mclass.public_owner.namespace(mbuilder)}::{mclass}" + add_html(subtitle) + close("div") + add_html("
    ") + # We add the class description + open("section").add_class("description") + if nclass isa AStdClassdef and not nclass.comment.is_empty then add_html("
    {nclass.comment} 
    CancelCommit
    ")
    +		close("section")
    +		open("section").add_class("concerns")
    +		add("h2").add_class("section-header").text("Concerns")
     		open("ul")
    -		if mclass.intro_methods.length > 0 then
    -			for prop in mclass.intro_methods do
    -				if prop.visibility is public_visibility or prop.visibility is protected_visibility then add_html("
  • I{prop.name}
  • ") + for owner in sorted do + var nmodule = mbuilder.mmodule2nmodule[owner] + var childs = mclass.concerns[owner] + open("li") + add_html("{owner.name}: {nmodule.short_comment}") + if not childs is null then + open("ul") + var sortedc = childs.to_a + var sorterpc = new ComparableSorter[MModule] + sorterpc.sort(sortedc) + for child in sortedc do + var nchild = mbuilder.mmodule2nmodule[child] + add_html("
  • {child.name}: {nchild.short_comment}
  • ") + end + close("ul") end + close("li") end - if mclass.inherited_methods.length > 0 then - for prop in mclass.inherited_methods do - if prop.visibility is public_visibility or prop.visibility is protected_visibility then add_html("
  • H{prop.name}
  • ") + close("ul") + close("section") + # Insert virtual types if there is almost one + if mclass.virtual_types.length > 0 or mclass.arity > 0 then + open("section").add_class("types") + add("h2").text("Formal and Virtual Types") + if mclass.virtual_types.length > 0 then for prop in mclass.virtual_types do description(prop) + if mclass.arity > 0 and nclass isa AStdClassdef then + for prop in nclass.n_formaldefs do + open("article").attr("id", "FT_Object_{prop.collect_text}") + open("h3").add_class("signature").text("{prop.collect_text}: nullable ") + add_html("Object") + close("h3") + add_html("
    formal generic type
    ") + close("article") + end end + close("section") + end + # constructors + if mclass.constructors.length > 0 then + var sortedc = mclass.constructors.to_a + sorterprop.sort(sortedc) + open("section").add_class("constructors") + add("h2").add_class("section-header").text("Constructors") + for prop in sortedc do description(prop) + close("section") end - if mclass.redef_methods.length > 0 then - for prop in mclass.redef_methods do - if prop.visibility is public_visibility or prop.visibility is protected_visibility then add_html("
  • R{prop.name}
  • ") + # methods + open("section").add_class("methods") + add("h2").add_class("section-header").text("Methods") + for mmodule, mmethods in mclass.all_methods do + var nmodule = mbuilder.mmodule2nmodule[mmodule] + add_html("") + if mmodule != mclass.intro_mmodule and mmodule != mclass.public_owner then + if mclass.has_mmodule(mmodule) then + add_html("

    {mmodule.name}: {nmodule.short_comment}

    ") + else + add_html("

    Methods refined in {mmodule.link(nmodule)}

    {mmodule.name}: {nmodule.short_comment}

    ") + end end + var sortedc = mmethods.to_a + sorterprop.sort(sortedc) + for prop in sortedc do description(prop) end - close("ul") - close("nav") - end - -end - -class NitdocPage - super HTMLPage - - var opt_nodot: Bool - var destinationdir : String - - redef fun head do - add("meta").attr("charset", "utf-8") - add("script").attr("type", "text/javascript").attr("src", "scripts/jquery-1.7.1.min.js") - add("script").attr("type", "text/javascript").attr("src", "quicksearch-list.js") - add("script").attr("type", "text/javascript").attr("src", "scripts/js-facilities.js") - add("link").attr("rel", "stylesheet").attr("href", "styles/main.css").attr("type", "text/css").attr("media", "screen") + # inherited methods + if mclass.inherited_methods.length > 0 then + var sortedc = new Array[MClass] + sortedc.add_all(mclass.inherited.keys) + sorterc.sort(sortedc) + add("h3").text("Inherited Methods") + for imclass in sortedc do + var inclass = mbuilder.mclassdef2nclassdef[imclass.intro].as(AStdClassdef) + var sortedp = mclass.inherited[imclass].to_a + sorterprop.sort(sortedp) + open("p") + add_html("Defined in {imclass.link(inclass)}: ") + for method in sortedp do + #TODO link to inherited propdef + add_html("{method.name}") + if method != sortedp.last then add_html(", ") + end + close("p") + end + end + close("section") end - redef fun body do header - fun header do end + fun description(prop: MProperty) do + if not mbuilder.mpropdef2npropdef.has_key(prop.intro) then return + var nprop = mbuilder.mpropdef2npropdef[prop.intro] + if not nprop isa AMethPropdef then return + var classes = new Array[String] + if nprop isa AInitPropdef then + classes.add("init") + else + classes.add("fun") + end + if prop.is_redef then classes.add("redef") + if prop.visibility == none_visibility then + classes.add("private") + else if prop.visibility == protected_visibility then + classes.add("protected") + else + classes.add("public") + end + open("article").add_classes(classes).attr("id", "{prop.anchor}") + var sign = prop.name + open("h3").add_class("signature") + add_html("{prop.name}{nprop.signature}") + close("h3") + open("div").add_class("info") + add_html("{if prop.is_redef then "redef" else ""} fun {prop.intro_mclassdef.namespace(mclass)}::{prop.name}
    ") + close("div") + open("div").add_class("description") + if nprop.comment == "" then + add_html("New Comment") + else + add_html("
    {nprop.comment}
    ") + end + add_html("CancelCommit
    ")
    +		open("p")
    +		if prop.local_class != mclass then
    +			var mredef = prop.local_class.intro_mmodule
    +			var nredef = mbuilder.mmodule2nmodule[mredef]
    +			add_html("inherited from {mredef.link(nredef)} ")
    +		end
    +		#TODO display show code if doc github
    +		var mintro = prop.intro_mclassdef.mmodule
    +		var nintro = mbuilder.mmodule2nmodule[mintro]
    +		add_html("defined by the module {mintro.link(nintro)}{if prop.apropdef is null then "" else show_source(prop.apropdef.location)}.")
    +
    +		for parent in mclass.parents do
    +			var mparent = parent.intro_mmodule
    +			var nparent = mbuilder.mmodule2nmodule[mparent]
    +			if prop isa MMethod then if parent.constructors.has(prop) then add_html(" Previously defined by: {mparent.link(nparent)} for {parent.name}.")
    +		end
    +		close("p")
    +		close("div")
     
    -	# Generate a clickable graphviz image using a dot content
    -	fun generate_dot(dot: String, name: String, alt: String) do
    -		if opt_nodot then return
    -		var file = new OFStream.open("{self.destinationdir}/{name}.dot")
    -		file.write(dot)
    -		file.close
    -		sys.system("\{ test -f {self.destinationdir}/{name}.png && test -f {self.destinationdir}/{name}.s.dot && diff {self.destinationdir}/{name}.dot {self.destinationdir}/{name}.s.dot >/dev/null 2>&1 ; \} || \{ cp {self.destinationdir}/{name}.dot {self.destinationdir}/{name}.s.dot && dot -Tpng -o{self.destinationdir}/{name}.png -Tcmapx -o{self.destinationdir}/{name}.map {self.destinationdir}/{name}.s.dot ; \}")
    -		open("article").add_class("graph")
    -		add("img").attr("src", "{name}.png").attr("usemap", "#{name}").attr("style", "margin:auto").attr("alt", "{alt}")
     		close("article")
    -		var fmap = new IFStream.open("{self.destinationdir}/{name}.map")
    -		add_html(fmap.read_all)
    -		fmap.close
     	end
     
     end
    @@ -778,7 +1015,10 @@ redef class AModule
     		if n_moduledecl is null or n_moduledecl.n_doc is null then ret
     		if n_moduledecl.n_doc is null then return ""
     		for t in n_moduledecl.n_doc.n_comment do
    -			ret += "{t.text.replace("# ", "")}"
    +			var txt = t.text
    +			txt = txt.replace("# ", "")
    +			txt = txt.replace("#", "")
    +			ret += txt
     		end
     		return ret
     	end
    @@ -796,8 +1036,9 @@ redef class AModule
     end
     
     redef class MModule
    -
    -	var amodule: nullable AModule
    +	super Comparable
    +	redef type OTHER: MModule
    +	redef fun <(other: OTHER): Bool do return self.name < other.name
     
     	# Get the list of all methods in a module
     	fun imported_methods: Set[MMethod] do
    @@ -820,9 +1061,40 @@ redef class MModule
     		end
     		return methods
     	end
    +
    +	# Return a link (html a tag) to the nitdoc module page
    +	fun link(amodule: AModule): String do
    +		return "{name}"
    +	end
    +
    +	# Return the module namespace decorated with html
    +	fun namespace(mbuilder: ModelBuilder): String do
    +		var str = new Buffer
    +		var mowner = public_owner
    +		if mowner != null then
    +			var nowner = mbuilder.mmodule2nmodule[mowner]
    +			str.append(public_owner.link(nowner))
    +		end
    +		var nmodule = mbuilder.mmodule2nmodule[self]
    +		str.append(self.link(nmodule))
    +		return str.to_s
    +	end
    +end
    +redef class MPropDef
    +	super Comparable
    +	redef type OTHER: MPropDef
    +	redef fun <(other: OTHER): Bool do return self.mproperty.name < other.mproperty.name
    +
    +	# Return a link (html a tag) to the nitdoc class page
    +	fun link(nprop: APropdef): String do
    +		return "{mproperty}"
    +	end
     end
     
     redef class MProperty
    +	super Comparable
    +	redef type OTHER: MProperty
    +	redef fun <(other: OTHER): Bool do return self.name < other.name
     
     	var is_redef: Bool
     	var apropdef: nullable APropdef
    @@ -838,14 +1110,6 @@ redef class MProperty
     		return classdef.mclass
     	end
     
    -	fun class_text: String do
    -		return local_class.name
    -	end
    -
    -	fun link_anchor: String do
    -		return "{class_text}.html#{anchor}"
    -	end
    -
     	fun anchor: String do
     		return "PROP_{c_name}"
     	end
    @@ -853,6 +1117,23 @@ redef class MProperty
     end
     
     redef class MClass
    +	super Comparable
    +	redef type OTHER: MClass
    +	redef fun <(other: OTHER): Bool do return self.name < other.name
    +
    +	# Add type parameters
    +	redef fun to_s do
    +		if arity > 0 then
    +			return "{name}[{intro.parameter_names.join(", ")}]"
    +		else
    +			return name
    +		end
    +	end
    +
    +	# Return a link (html a tag) to the nitdoc class page
    +	fun link(aclass: AStdClassdef): String do
    +		return "{self}"
    +	end
     
     	# Associate all MMethods to each MModule concerns
     	fun all_methods: HashMap[MModule, Set[MMethod]] do
    @@ -893,11 +1174,189 @@ redef class MClass
     		return hm
     	end
     
    +	fun public_owner: MModule do
    +		var owner = intro_mmodule
    +		if owner.public_owner is null then
    +			return owner
    +		else
    +			return owner.public_owner.as(not null)
    +		end
    +	end
    +
    +	# Associate MClass to all MMethod include in 'inherited_methods'
    +	fun inherited: HashMap[MClass, Set[MMethod]] do
    +		var hm = new HashMap[MClass, Set[MMethod]]
    +		for method in inherited_methods do
    +			var mclass = method.intro_mclassdef.mclass
    +			if not hm.has_key(mclass) then hm[mclass] = new HashSet[MMethod]
    +			hm[mclass].add(method)
    +		end
    +		return hm
    +	end
    +
    +	# Return true if MModule concern contain subMModule
    +	fun has_mmodule(sub: MModule): Bool do
    +		for mmodule, childs in concerns do
    +			if childs is null then continue
    +			if childs.has(sub) then return true
    +		end
    +		return false
    +	end
    +
    +	fun mmethod(mprop2npropdef: Map[MProperty, APropdef]) do
    +		for const in constructors do
    +			if mprop2npropdef.has_key(const)then
    +				const.apropdef = mprop2npropdef[const].as(AMethPropdef)
    +			end
    +		end
    +
    +		for intro in intro_methods do
    +			if mprop2npropdef.has_key(intro)then
    +				if mprop2npropdef[intro] isa AMethPropdef then intro.apropdef = mprop2npropdef[intro].as(AMethPropdef)
    +			end
    +		end
    +
    +		for rd in redef_methods do
    +			if mprop2npropdef.has_key(rd)then
    +				if mprop2npropdef[rd] isa AMethPropdef then rd.apropdef = mprop2npropdef[rd].as(AMethPropdef)
    +			end
    +		end
    +	end
    +
    +	fun link_anchor: String do
    +		return "{name}.html"
    +	end
    +
    +end
    +
    +redef class AStdClassdef
    +	private fun comment: String do
    +		var ret = ""
    +		if n_doc != null then
    +			for t in n_doc.n_comment do
    +				var txt = t.text.replace("# ", "")
    +				txt = txt.replace("#", "")
    +				ret += "{txt}"
    +			end
    +		end
    +		return ret
    +	end
    +
    +	private fun short_comment: String do
    +		var ret = ""
    +		if n_doc != null then
    +			var txt = n_doc.n_comment.first.text
    +			txt = txt.replace("# ", "")
    +			txt = txt.replace("\n", "")
    +			ret += txt
    +		end
    +		return ret
    +	end
    +end
    +
    +redef class ASignature
    +	redef fun to_s do
    +		#TODO closures
    +		var ret = ""
    +		if not n_params.is_empty then
    +			ret = "{ret}({n_params.join(", ")})"
    +		end
    +		if n_type != null and n_type.to_s != "" then ret += ": {n_type.to_s}"
    +		return ret
    +	end
    +end
    +
    +redef class AParam
    +	redef fun to_s do
    +		var ret = "{n_id.text}"
    +		if n_type != null then
    +			ret = "{ret}: {n_type.to_s}"
    +			if n_dotdotdot != null then ret = "{ret}..."
    +		end
    +		return ret
    +	end
    +end
    +
    +redef class AType
    +	redef fun to_s do
    +		var ret = "{n_id.text}"
    +		if n_kwnullable != null then ret = "nullable {ret}"
    +		if not n_types.is_empty then ret = "{ret}[{n_types.join(", ")}]"
    +		return ret
    +	end
    +end
    +
    +redef class APropdef
    +	private fun short_comment: String is abstract
    +	private fun signature: String is abstract
    +	private fun comment: String is abstract
    +end
    +
    +redef class AAttrPropdef
    +	redef fun short_comment do
    +		var ret = ""
    +		if n_doc != null then
    +			var txt = n_doc.n_comment.first.text
    +			txt = txt.replace("# ", "")
    +			txt = txt.replace("\n", "")
    +			ret += txt
    +		end
    +		return ret
    +	end
    +end
    +
    +redef class AMethPropdef
    +	redef fun short_comment do
    +		var ret = new Buffer
    +		if n_doc != null then
    +			var txt = n_doc.n_comment.first.text
    +			txt = txt.replace("# ", "")
    +			txt = txt.replace("\n", "")
    +			ret.append(txt)
    +		end
    +		return ret.to_s
    +	end
    +
    +	redef fun signature: String do
    +		var sign = ""
    +		if n_signature != null then sign = "{n_signature.to_s}"
    +		return sign
    +	end
    +
    +	redef private fun comment: String do
    +		var ret = new Buffer
    +		if n_doc != null then
    +			for t in n_doc.n_comment do
    +				var txt = t.text.replace("# ", "")
    +				txt = txt.replace("#", "")
    +				ret.append(txt)
    +			end
    +		end
    +		return ret.to_s
    +	end
    +end
    +
    +redef class MClassDef
    +	private fun namespace(mclass: MClass): String do
    +
    +		if mmodule.public_owner is null then
    +			return "{mmodule.full_name}::{mclass.name}"
    +		else if mclass is self.mclass then
    +			return "{mmodule.public_owner.name}::{mclass.name}"
    +		else
    +			return "{mmodule.public_owner.name}::{mclass.name}"
    +		end
    +	end
    +end
    +
    +redef class Set[E]
    +	fun last: E do
    +		return to_a[length-1]
    +	end
     end
     
     # Create a tool context to handle options and paths
     var toolcontext = new ToolContext
    -toolcontext.process_options
     
     # Here we launch the nit index
     var nitdoc = new Nitdoc(toolcontext)