nitdoc: introduce `DocComposite::is_hidden` services in `doc_base`
[nit.git] / src / doc / doc_phases / doc_hierarchies.nit
index 9833dbd..a543c46 100644 (file)
@@ -41,14 +41,14 @@ end
 redef class MModulePage
        redef fun build_inh_list(v, doc) do
                var id = mentity.nitdoc_id
-               var section = new ImportationListSection("section:{id}.importation", mentity)
-               var group = new PanelGroup("group:list", "List")
+               var section = new ImportationListSection("{id}.importation", mentity)
+               var group = new PanelGroup("list.group", "List")
                var imports = self.imports.to_a
                v.name_sorter.sort(imports)
-               group.add_child new HierarchyListArticle("article:Imports_{id}.hierarchy", mentity, "Imports", imports)
+               group.add_child new HierarchyListArticle("{id}.imports", "Imports", imports)
                var clients = self.clients.to_a
                v.name_sorter.sort(clients)
-               group.add_child new HierarchyListArticle("article:Clients_{id}.hierarchy", mentity, "Clients", clients)
+               group.add_child new HierarchyListArticle("{id}.clients", "Clients", clients)
                section.add_child group
                section.parent = root.children.first
                root.children.first.children.insert(section, 1)
@@ -58,20 +58,20 @@ end
 redef class MClassPage
        redef fun build_inh_list(v, doc) do
                var id = mentity.nitdoc_id
-               var section = new InheritanceListSection("section:{id}.inheritance", mentity)
-               var group = new PanelGroup("group:list", "List")
+               var section = new InheritanceListSection("{id}.inheritance", mentity)
+               var group = new PanelGroup("list.group", "List")
                var parents = self.parents.to_a
                v.name_sorter.sort(parents)
-               group.add_child new HierarchyListArticle("article:Parents_{id}.hierarchy", mentity, "Parents", parents)
+               group.add_child new HierarchyListArticle("{id}.parents", "Parents", parents)
                var ancestors = self.ancestors.to_a
                v.name_sorter.sort(ancestors)
-               group.add_child new HierarchyListArticle("article:Ancestors_{id}.hierarchy", mentity, "Ancestors", ancestors)
+               group.add_child new HierarchyListArticle("{id}.ancestors", "Ancestors", ancestors)
                var children = self.children.to_a
                v.name_sorter.sort(children)
-               group.add_child new HierarchyListArticle("article:Children_{id}.hierarchy", mentity, "Children", children)
+               group.add_child new HierarchyListArticle("{id}.children", "Children", children)
                var descendants = self.descendants.to_a
                v.name_sorter.sort(descendants)
-               group.add_child new HierarchyListArticle("article:Descendants_{id}.hierarchy", mentity, "Descendants", descendants)
+               group.add_child new HierarchyListArticle("{id}.descendants", "Descendants", descendants)
                section.add_child group
                section.parent = root.children.first
                root.children.first.children.insert(section, 1)
@@ -92,11 +92,10 @@ end
 
 # Dislay a hierarchical list of mentities.
 class HierarchyListArticle
-       super MEntityArticle
-
-       # Title displayed in the top of this list.
-       var list_title: String
+       super DocArticle
 
        # MEntities to display in this list.
        var mentities: Array[MEntity]
+
+       redef fun is_hidden do return mentities.is_empty
 end