Index: experimental/webgtt/webgtt.html |
diff --git a/experimental/webgtt/webgtt.html b/experimental/webgtt/webgtt.html |
deleted file mode 100644 |
index 6042156eb644fe279cf8517bc115c106b39192a2..0000000000000000000000000000000000000000 |
--- a/experimental/webgtt/webgtt.html |
+++ /dev/null |
@@ -1,76 +0,0 @@ |
-<!DOCTYPE html> |
-<html lang="en" il8n-values="dir:textdirection"> |
- <head> |
- <meta charset="utf-8" /> |
- <title>WebGTT Prototype</title> |
- <script type="text/javascript" src="javascript/vertex.js"></script> |
- <script type="text/javascript" src="javascript/edge.js"></script> |
- <script type="text/javascript" src="javascript/graph.js"></script> |
- <script type="text/javascript" src="javascript/canvas.js"></script> |
- <script type="text/javascript" src="javascript/button.js"></script> |
- <script type="text/javascript" src="javascript/naclmodule.js"></script> |
- <script type="text/javascript" src="javascript/webgtt.js"></script> |
- </head> |
- <body onload="main1()"> |
- <section id="intro"> |
- <header> |
- <h1>Graph Drawing Area</h1> |
- </header> |
- <p> |
- To create a vertex, click once. To select/deselect a vertex, click once |
- on it. To create/select/deselect an edge, select two vertices (one by |
- one). To delete the selected vertices/edges, press the 'Delete' key. |
- Once you have drawn the graph, click on the button below to find a |
- coloring. (Note that the button will be enabled only after the message |
- at the bottom changes from 'LOADING...' to 'SUCCESS'. If the loading |
- seems to take forever, then there might be a problem with the |
- application.) |
- </p> |
- </section> |
- |
- <section id="canvas"> |
- <canvas id="mainCanvas" width="800" height="400"></canvas> |
- </section> |
- |
- <section id="control"> |
- <button type = "button" id = "coloring">Get a valid |
- coloring</button> |
- <p> |
- A (vertex) coloring of a graph is an assignment of colors to the |
- vertices of the graph such that NO two vertices that are connected by an |
- edge share a common color. |
- </p> |
- </section> |
- |
- <section id="nacl"> |
- <header> |
- <h1>Native Client Module</h1> |
- </header> |
- <!-- |
- Load the published .nexe. This includes the 'nacl' attribute which |
- shows how to load multi-architecture modules. |
- |
- Note: The <EMBED> element is wrapped inside an <ARTICLE>, which has a |
- 'load' event listener attached. This wrapping method is used instead of |
- attaching the 'load' event listener directly to the <EMBED> element to |
- ensure that the listener is active before the NaCl module 'load' event |
- fires. |
- --> |
- <article id="listener"> |
- <script type = "text/JavaScript"> |
- document.getElementById('listener').addEventListener('load', main2, |
- true); |
- </script> |
- <embed name="nacl_module" id="webgtt" width=0 height=0 src="webgtt.nmf" |
- type="application/x-nacl" /> |
- </article> |
- <article> |
- <header> |
- <h1>Status</h1> |
- </header> |
- <p id="status_field">NO-STATUS</p> |
- </article> |
- </section> |
- <h1><a href="https://docs.google.com/a/google.com/spreadsheet/viewform?formkey=dGU1WkhMMjEzSGpsYnhlbkpmN2g2amc6MQ">Give Feedback</a></h1> |
- </body> |
-</html> |