# HG changeset patch # User Doug Simon # Date 1342615096 -7200 # Node ID 2c00c51357d89a7439cacc86d41bd06a1506474b # Parent 767312416f6ae313b8c1ccde556fd183f6ea638e added more content to graal.api.meta overview diff -r 767312416f6a -r 2c00c51357d8 graal/com.oracle.graal.api.meta/overview.html --- a/graal/com.oracle.graal.api.meta/overview.html Wed Jul 18 12:17:38 2012 +0200 +++ b/graal/com.oracle.graal.api.meta/overview.html Wed Jul 18 14:38:16 2012 +0200 @@ -30,7 +30,8 @@ -Documentation for the com.oracle.graal.api.meta project. +The com.oracle.graal.api.meta project provides an API to the runtime data structures +for various Java elements. It extends standard Java reflection in terms of the amount detail exposed. diff -r 767312416f6a -r 2c00c51357d8 graal/overview.html --- a/graal/overview.html Wed Jul 18 12:17:38 2012 +0200 +++ b/graal/overview.html Wed Jul 18 14:38:16 2012 +0200 @@ -30,7 +30,7 @@ - +

This document is the unified Javadoc for the Graal code base. The module dependency graph is shown above. diff -r 767312416f6a -r 2c00c51357d8 mxtool/mx.py --- a/mxtool/mx.py Wed Jul 18 12:17:38 2012 +0200 +++ b/mxtool/mx.py Wed Jul 18 14:38:16 2012 +0200 @@ -2249,6 +2249,7 @@ dot = join(tmpbase, 'all', str(args.dot_output_base) + '.dot') svg = join(tmpbase, 'all', str(args.dot_output_base) + '.svg') jpg = join(tmpbase, 'all', str(args.dot_output_base) + '.jpg') + html = join(tmpbase, 'all', str(args.dot_output_base) + '.html') with open(dot, 'w') as fp: dim = len(projects) print >> fp, 'digraph projects {' @@ -2278,8 +2279,11 @@ with open(svg, 'w') as fp: fp.write(content) + # Create HTML that embeds the svg file in an frame + with open(html, 'w') as fp: + print >> fp, '' + # Post-process generated overview-summary.html files - def fix_overview_summary(path, topLink): """ Processes an "overview-summary.html" generated by javadoc to put the complete