DOTS = html2.gv html3.gv html4.gv tee.gv
HTML = colors.html lang.html shapes.html \
arrows.html schema.html
-MISC = graphviz_json_schema.json w3data.js
+MISC = graphviz_json_schema.json
INSTALL_FILES = $(HTML) $(DOTS) $(SGIF) $(AGIF) $(A2GIF) $(MGIF) $(XGIF) $(MPNG) $(MISC)
.SUFFIXES: .gv .gif .dot .png
+++ /dev/null
-/* W3Data ver 1.31 by W3Schools.com */\r
-function w3IncludeHTML() {\r
- var z, i, elmnt, file, xhttp;\r
- z = document.getElementsByTagName("*");\r
- for (i = 0; i < z.length; i++) {\r
- elmnt = z[i];\r
- file = elmnt.getAttribute("w3-include-html");\r
- if (file) {\r
- xhttp = new XMLHttpRequest();\r
- xhttp.onreadystatechange = function() {\r
- if (this.readyState == 4 && this.status == 200) {\r
- elmnt.innerHTML = this.responseText;\r
- elmnt.removeAttribute("w3-include-html");\r
- w3IncludeHTML();\r
- }\r
- } \r
- xhttp.open("GET", file, true);\r
- xhttp.send();\r
- return;\r
- }\r
- }\r
-}\r