summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2010-09-16 21:14:28 +0000
committerdim <dim@FreeBSD.org>2010-09-16 21:14:28 +0000
commitfc84956ac8b7cd244ef30e7a4d4d38a58dec5904 (patch)
treefd60562fa69b344a835f86fd68c85f16cbe0b77c /www
parentf1752835b9d5f0da31f34b18c9f1eb8dcb799ba8 (diff)
downloadFreeBSD-src-fc84956ac8b7cd244ef30e7a4d4d38a58dec5904.zip
FreeBSD-src-fc84956ac8b7cd244ef30e7a4d4d38a58dec5904.tar.gz
Make vendor/clang/dist exactly the same as upstream's r108428. Some
files and directories were already added/removed in the upstream repository, but were not added/removed here, when the previous snapshot was imported. Note: I did not import the file test/Lexer/conflict-marker.c, because it contains merge conflict markers on purpose, which upsets our pre-commit hooks. Approved by: rpaulo (mentor)
Diffstat (limited to 'www')
-rw-r--r--www/analyzer/menu.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/www/analyzer/menu.js b/www/analyzer/menu.js
deleted file mode 100644
index 6b393c0..0000000
--- a/www/analyzer/menu.js
+++ /dev/null
@@ -1,17 +0,0 @@
-startList = function() {
- if (document.all&&document.getElementById) {
- navRoot = document.getElementById("nav");
- for (i=0; i<navRoot.childNodes.length; i++) {
- node = navRoot.childNodes[i];
- if (node.nodeName=="LI") {
- node.onmouseover=function() {
- this.className+=" over";
- }
- node.onmouseout=function() {
- this.className=this.className.replace(" over", "");
- }
- }
- }
- }
-}
-window.onload=startList;
OpenPOWER on IntegriCloud