Merge: nitdoc: introduce useful services
[nit.git] / src / doc / doc_phases / doc_graphs.nit
index ba10850..1339d09 100644 (file)
@@ -36,11 +36,12 @@ class GraphPhase
 
        redef fun apply do
                if ctx.opt_nodot.value then return
-               for page in doc.pages do
+               for page in doc.pages.values do
                        var article = page.build_graph(self, doc)
                        if article == null then continue
                        # FIXME avoid diff
                        # page.root.add article
+                       article.parent = page.root.children.first.children[1]
                        page.root.children.first.children[1].children.insert(article, 0)
                end
        end
@@ -72,7 +73,7 @@ redef class MModulePage
                        end
                end
                op.append("\}\n")
-               return new GraphArticle(mentity, name, op)
+               return new GraphArticle(mentity, name, "Importation Graph", op)
        end
 end
 
@@ -106,7 +107,7 @@ redef class MClassPage
                        end
                end
                op.append("\}\n")
-               return new GraphArticle(mentity, name, op)
+               return new GraphArticle(mentity, name, "Inheritance Graph", op)
        end
 end
 
@@ -120,6 +121,11 @@ class GraphArticle
        # Graph ID (used for outputing file with names).
        var id: String
 
+       # Graph title to display.
+       var graph_title: String
+
        # Dot script of the graph.
        var dot: Text
+
+       redef var is_empty = false
 end