Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: pkg/analyzer/doc/tasks.html

Issue 1817913002: Generate the task model graph as an HTML file and put it in the doc directory. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Copy support files into local directory Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/doc/support/web_app.dart.js ('k') | pkg/analyzer/tool/task_dependency_graph/generate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/doc/tasks.html
diff --git a/pkg/analyzer/tool/task_dependency_graph/tasks.dot b/pkg/analyzer/doc/tasks.html
similarity index 96%
copy from pkg/analyzer/tool/task_dependency_graph/tasks.dot
copy to pkg/analyzer/doc/tasks.html
index 4142a2af11f169cca3d8ad8856e0701345c1adfe..222472426d2367cda18a64a2c4a9e859ec3fb948 100644
--- a/pkg/analyzer/tool/task_dependency_graph/tasks.dot
+++ b/pkg/analyzer/doc/tasks.html
@@ -1,14 +1,19 @@
-// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-//
-// This file has been automatically generated. Please do not edit it manually.
-// To regenerate the file, use the script
-// "pkg/analyzer/tool/task_dependency_graph/generate.dart".
-//
-// To render this graph using Graphviz (www.graphviz.org) use the command:
-// "dot tasks.dot -Tpdf -O".
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Analysis Task Dependency Graph</title>
+ <link rel="stylesheet" href="support/style.css">
+ <script src="support/viz.js"></script>
+ <script type="application/dart" src="support/web_app.dart.js"></script>
+ <script src="support/dart.js"></script>
+</head>
+<body>
+<button id="zoomBtn">Zoom</button>
+<script type="text/vnd.graphviz" id="dot">
digraph G {
+ tooltip="Analysis Task Dependency Graph";
+ node [fontname=Helvetica];
+ edge [fontname=Helvetica, fontcolor=gray];
BUILD_DIRECTIVES_ERRORS -> LibraryUnitErrorsTask
BUILD_DIRECTIVES_ERRORS [shape=box]
BUILD_LIBRARY_ERRORS -> LibraryUnitErrorsTask
@@ -330,3 +335,6 @@ digraph G {
dartErrorsForUnit -> DartErrorsTask
dartErrorsForUnit [shape=hexagon]
}
+</script>
+</body>
+</html>
« no previous file with comments | « pkg/analyzer/doc/support/web_app.dart.js ('k') | pkg/analyzer/tool/task_dependency_graph/generate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698