From 2299d8a13af9637532b43c073f9d1c2c9bf37cf8 Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Tue, 17 Jul 2012 12:11:55 -0700 Subject: [PATCH 01/59] improve caching of receiver values when handling dispatch --- .../SSAPropagationCallGraphBuilder.java | 27 +++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java b/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java index 5d753f90b..dde349aeb 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java +++ b/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java @@ -1601,7 +1601,9 @@ public abstract class SSAPropagationCallGraphBuilder extends PropagationCallGrap @Override public byte evaluate(PointsToSetVariable lhs, final PointsToSetVariable[] rhs) { assert dispatchIndices.length >= rhs.length : "bad operator at " + call; - final MutableBoolean sideEffect = new MutableBoolean(); + // did evaluating the dispatch operation add a new possible target + // to the call site? + final MutableBoolean addedNewTarget = new MutableBoolean(); final MutableIntSet receiverVals; if (constParams != null && constParams[0] != null) { @@ -1636,6 +1638,10 @@ public abstract class SSAPropagationCallGraphBuilder extends PropagationCallGrap // keep separate rhsIndex, since it doesn't advance for constant // parameters int rhsIndex = (constParams != null && constParams[0] != null)? 0: 1; + // this flag is set to true if we ever call handleAllReceivers() in the + // loop below. we need to catch the case where we have a new receiver, but + // there are no other dispatch indices with new values + boolean propagatedReceivers = false; // we start at index 1 since we need to handle the receiver specially; see // below for (int index = 1; index < dispatchIndices.length; index++) { @@ -1652,7 +1658,8 @@ public abstract class SSAPropagationCallGraphBuilder extends PropagationCallGrap if (newReceiver || prevAtIndex.isEmpty()) { for(int i = 0; i < constParams[paramIndex].length; i++) { keys[paramIndex] = constParams[paramIndex][i]; - handleAllReceivers(receiverVals,keys, sideEffect); + handleAllReceivers(receiverVals,keys, addedNewTarget); + propagatedReceivers = true; int ii = system.instanceKeys.getMappedIndex(constParams[paramIndex][i]); prevAtIndex.add(ii); } @@ -1665,7 +1672,8 @@ public abstract class SSAPropagationCallGraphBuilder extends PropagationCallGrap int ptr = ptrs.next(); if (newReceiver || !prevAtIndex.contains(ptr)) { keys[paramIndex] = system.getInstanceKey(ptr); - handleAllReceivers(receiverVals,keys, sideEffect); + handleAllReceivers(receiverVals,keys, addedNewTarget); + propagatedReceivers = true; prevAtIndex.add(ptr); } } @@ -1674,14 +1682,17 @@ public abstract class SSAPropagationCallGraphBuilder extends PropagationCallGrap } keys[paramIndex] = null; } - if (newReceiver && !sideEffect.b) { - // we have a new receiver value, and it wasn't propagated at all, - // so propagate it now - handleAllReceivers(receiverVals, keys, sideEffect); + if (newReceiver) { + if (!propagatedReceivers) { + // we have a new receiver value, and it wasn't propagated at all, + // so propagate it now + handleAllReceivers(receiverVals, keys, addedNewTarget); + } + // update receiver cache previousPtrs[0].addAll(receiverVals); } - byte sideEffectMask = sideEffect.b ? (byte) SIDE_EFFECT_MASK : 0; + byte sideEffectMask = addedNewTarget.b ? (byte) SIDE_EFFECT_MASK : 0; return (byte) (NOT_CHANGED | sideEffectMask); } From eb0524c63464bf829622e16817ec1e162772c7ea Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Fri, 20 Jul 2012 16:27:17 -0700 Subject: [PATCH 02/59] tests were failing when run as part of the suite --- .../wala/cast/js/test/TestSimplePageCallGraphShapeRhino.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/test/TestSimplePageCallGraphShapeRhino.java b/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/test/TestSimplePageCallGraphShapeRhino.java index f25365df6..ff7b48592 100644 --- a/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/test/TestSimplePageCallGraphShapeRhino.java +++ b/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/test/TestSimplePageCallGraphShapeRhino.java @@ -18,6 +18,7 @@ import org.junit.Test; import com.ibm.wala.cast.js.html.IHtmlParser; import com.ibm.wala.cast.js.html.IHtmlParserFactory; +import com.ibm.wala.cast.js.html.JSSourceExtractor; import com.ibm.wala.cast.js.html.WebUtil; import com.ibm.wala.cast.js.translator.CAstRhinoTranslatorFactory; import com.ibm.wala.ipa.callgraph.CallGraph; @@ -50,5 +51,7 @@ public abstract class TestSimplePageCallGraphShapeRhino extends TestSimplePageCa return TestSimplePageCallGraphShapeRhino.this.getParser(); } }); + JSSourceExtractor.USE_TEMP_NAME = false; + JSSourceExtractor.DELETE_UPON_EXIT = false; } } From b940e9dc0a4b87c04d18b813b3a25f6c7a76747c Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Thu, 26 Jul 2012 15:26:59 -0700 Subject: [PATCH 03/59] add edgeExists CLI option to check if some edge exists in the call graph --- .../cast/js/rhino/test/HTMLCGBuilder.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/HTMLCGBuilder.java b/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/HTMLCGBuilder.java index e9705db36..7b89b50d7 100644 --- a/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/HTMLCGBuilder.java +++ b/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/HTMLCGBuilder.java @@ -37,6 +37,7 @@ import com.ibm.wala.ipa.callgraph.CallGraph; import com.ibm.wala.ipa.callgraph.CallGraphBuilderCancelException; import com.ibm.wala.ipa.callgraph.propagation.PointerAnalysis; import com.ibm.wala.ipa.cha.ClassHierarchyException; +import com.ibm.wala.util.collections.Iterator2Iterable; import com.ibm.wala.util.io.CommandLine; import com.ibm.wala.util.io.FileProvider; @@ -168,6 +169,13 @@ public class HTMLCGBuilder { if (parsedArgs.containsKey("reachable")) { reachableName = parsedArgs.getProperty("reachable"); } + + String srcNode = null, dstNode = null; + if (parsedArgs.containsKey("edgeExists")) { + String[] nodes = parsedArgs.getProperty("edgeExists").split(":"); + srcNode = nodes[0]; + dstNode = nodes[1]; + } // suppress debug output JavaScriptFunctionDotCallTargetSelector.WARN_ABOUT_IMPRECISE_CALLGRAPH = false; CGBuilderResult res = buildHTMLCG(src, timeout, true, AstTranslator.NEW_LEXICAL ? CGBuilderType.ONE_CFA_PRECISE_LEXICAL : CGBuilderType.ZERO_ONE_CFA); @@ -183,5 +191,16 @@ public class HTMLCGBuilder { } } } + if (srcNode != null) { + for (CGNode node : res.cg) { + if (node.getMethod().getDeclaringClass().getName().toString().endsWith(srcNode)) { + for (CGNode callee : Iterator2Iterable.make(res.cg.getSuccNodes(node))) { + if (callee.getMethod().getDeclaringClass().getName().toString().endsWith(dstNode)) { + System.out.println("EDGE EXISTS"); + } + } + } + } + } } } From 7aaba4bc5a91cc79978df07cef2ea09c0d51fac3 Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Mon, 30 Jul 2012 12:40:48 -0700 Subject: [PATCH 04/59] Bug fix in dispatch logic + test Due to constant parameters, we can't assume that constraints don't need to be generated when we've already seen a target at a call site (since the previous constraints may have only passed certain constant parameter values, rather than all parameter values). Add a check to handle these cases correctly. --- .../tests/dispatch_same_target.js | 11 ++++++++++ .../js/test/TestSimpleCallGraphShape.java | 16 ++++++++++++++ .../SSAPropagationCallGraphBuilder.java | 21 ++++++++++++++++++- 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 com.ibm.wala.cast.js.test/examples-src/tests/dispatch_same_target.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/dispatch_same_target.js b/com.ibm.wala.cast.js.test/examples-src/tests/dispatch_same_target.js new file mode 100644 index 000000000..cf619a9f7 --- /dev/null +++ b/com.ibm.wala.cast.js.test/examples-src/tests/dispatch_same_target.js @@ -0,0 +1,11 @@ +var x = function f1(p, q) { + p.call(p, q); +}; + +var y = function f2(q) { x(q, null); }; + +var q = function f4() {} +var z = function f3() { q(); }; + +x(y, z); + diff --git a/com.ibm.wala.cast.js.test/harness-src/com/ibm/wala/cast/js/test/TestSimpleCallGraphShape.java b/com.ibm.wala.cast.js.test/harness-src/com/ibm/wala/cast/js/test/TestSimpleCallGraphShape.java index 13e4aefd4..e304c636b 100755 --- a/com.ibm.wala.cast.js.test/harness-src/com/ibm/wala/cast/js/test/TestSimpleCallGraphShape.java +++ b/com.ibm.wala.cast.js.test/harness-src/com/ibm/wala/cast/js/test/TestSimpleCallGraphShape.java @@ -549,6 +549,22 @@ public abstract class TestSimpleCallGraphShape extends TestJSCallGraphShape { JSCallGraphUtil.dumpCG(B.getPointerAnalysis(), CG); verifyGraphAssertions(CG, assertionsForDispatch); } + + private static final Object[][] assertionsForDispatchSameTarget = new Object[][] { + new Object[] { ROOT, new String[] { "tests/dispatch_same_target.js" } }, + new Object[] { "tests/dispatch_same_target.js/f3", new String[] { "tests/dispatch_same_target.js/f4" } } + }; + + + @Test + public void testDispatchSameTarget() throws IOException, IllegalArgumentException, CancelException { + PropagationCallGraphBuilder B = JSCallGraphBuilderUtil.makeScriptCGBuilder("tests", "dispatch_same_target.js"); + CallGraph CG = B.makeCallGraph(B.getOptions()); +// JSCallGraphUtil.AVOID_DUMP = false; +// JSCallGraphUtil.dumpCG(B.getPointerAnalysis(), CG); + verifyGraphAssertions(CG, assertionsForDispatchSameTarget); + } + private static final Object[][] assertionsForForInPrototype = new Object[][] { new Object[] { ROOT, new String[] { "tests/for_in_prototype.js" } }, diff --git a/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java b/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java index dde349aeb..b7130494a 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java +++ b/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/SSAPropagationCallGraphBuilder.java @@ -1726,7 +1726,11 @@ public abstract class SSAPropagationCallGraphBuilder extends PropagationCallGrap } } else { IntSet targets = getCallGraph().getPossibleTargetNumbers(node, call.getCallSite()); - if (targets != null && targets.contains(target.getGraphNodeId())) { + // even if we've seen this target before, if we have constant + // parameters, we may need to re-process the call, as the constraints + // for the first time we reached this target may not have been fully + // general. TODO a more refined check? + if (targets != null && targets.contains(target.getGraphNodeId()) && noConstParams()) { // do nothing; we've previously discovered and handled this // receiver for this call site. } else { @@ -1742,6 +1746,21 @@ public abstract class SSAPropagationCallGraphBuilder extends PropagationCallGrap keys[0] = null; } + private boolean noConstParams() { + if (constParams != null) { + for (int i = 0; i < constParams.length; i++) { + if (constParams[i] != null) { + for (int j = 0; j < constParams[i].length; i++) { + if (constParams[i][j] != null) { + return false; + } + } + } + } + } + return true; + } + @Override From c9bdd4836067c0ccd6c4e6a239f2bd15cd4d547e Mon Sep 17 00:00:00 2001 From: Max Schaefer Date: Tue, 31 Jul 2012 14:14:04 -0400 Subject: [PATCH 05/59] Added utility class for serialising call graphs to JSON. --- .../ibm/wala/cast/js/util/CallGraph2JSON.java | 149 ++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java diff --git a/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java b/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java new file mode 100644 index 000000000..c71fb043b --- /dev/null +++ b/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java @@ -0,0 +1,149 @@ +/****************************************************************************** + * Copyright (c) 2002 - 2012 IBM Corporation. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + *****************************************************************************/ +package com.ibm.wala.cast.js.util; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.Map; +import java.util.Set; + +import com.ibm.wala.cast.js.types.JavaScriptMethods; +import com.ibm.wala.cast.loader.AstMethod; +import com.ibm.wala.cast.tree.CAstSourcePositionMap.Position; +import com.ibm.wala.cast.types.AstMethodReference; +import com.ibm.wala.classLoader.CallSiteReference; +import com.ibm.wala.classLoader.IMethod; +import com.ibm.wala.ipa.callgraph.CGNode; +import com.ibm.wala.ipa.callgraph.CallGraph; +import com.ibm.wala.util.collections.HashMapFactory; +import com.ibm.wala.util.collections.MapUtil; +import com.ibm.wala.util.collections.Util; +import com.ibm.wala.util.functions.Function; + +/** + * Utility class to serialize call graphs as JSON objects. + * + * @author mschaefer + */ +public class CallGraph2JSON { + public static boolean IGNORE_HARNESS = true; + + public static String serialize(CallGraph cg) { + Map> edges = extractEdges(cg); + return toJSON(edges); + } + + public static Map> extractEdges(CallGraph cg) { + Map> edges = HashMapFactory.make(); + for(CGNode nd : cg) { + if(!isRealFunction(nd.getMethod())) + continue; + AstMethod method = (AstMethod)nd.getMethod(); + + for(Iterator iter = nd.iterateCallSites(); iter.hasNext();) { + CallSiteReference callsite = iter.next(); + Set targets = Util.mapToSet(cg.getPossibleTargets(nd, callsite), new Function() { + @Override + public IMethod apply(CGNode nd) { + return nd.getMethod(); + } + }); + serializeCallSite(method, callsite, targets, edges); + } + } + return edges; + } + + public static void serializeCallSite(AstMethod method, CallSiteReference callsite, Set targets, + Map> edges) { + Set targetNames = MapUtil.findOrCreateSet(edges, ppPos(method, method.getSourcePosition(callsite.getProgramCounter()))); + for(IMethod target : targets) { + target = getCallTargetMethod(target); + if(!isRealFunction(target)) + continue; + targetNames.add(ppPos((AstMethod)target, ((AstMethod)target).getSourcePosition())); + } + } + + private static IMethod getCallTargetMethod(IMethod method) { + if(method.getName().equals(JavaScriptMethods.ctorAtom)) { + method = method.getDeclaringClass().getMethod(AstMethodReference.fnSelector); + if(method != null) + return method; + } + return method; + } + + private static boolean isRealFunction(IMethod method) { + if(method instanceof AstMethod) { + String methodName = method.getDeclaringClass().getName().toString(); + + // exclude synthetic DOM modelling functions + if(methodName.contains("/make_node")) + return false; + + if(IGNORE_HARNESS && methodName.startsWith("Lprologue.js/") || methodName.startsWith("Lpreamble.js/")) + return false; + + return method.getName().equals(AstMethodReference.fnAtom); + } + return false; + } + + private static String ppPos(AstMethod method, Position pos) { + String file = pos.getURL().getFile(); + file = file.substring(file.lastIndexOf('/')+1); + + int line = pos.getFirstLine(), start_offset = pos.getFirstOffset(), end_offset = pos.getLastOffset(); + return file + "@" + line + ":" + start_offset + "-" + end_offset; + } + + public static String toJSON(Map> map) { + StringBuffer res = new StringBuffer(); + res.append("{\n"); + res.append(joinWith(Util.mapToSet(map.entrySet(), new Function>, String>() { + @Override + public String apply(Map.Entry> e) { + StringBuffer res = new StringBuffer(); + if(e.getValue().size() > 0) { + res.append(" \"" + e.getKey() + "\": [\n"); + res.append(joinWith(Util.mapToSet(e.getValue(), new Function() { + @Override + public String apply(String str) { + return " \"" + str + "\""; + } + }), ",\n")); + res.append("\n ]"); + } + return res.length() == 0 ? null : res.toString(); + } + }), ",\n")); + res.append("\n}"); + return res.toString(); + } + + private static String joinWith(Iterable lst, String sep) { + StringBuffer res = new StringBuffer(); + ArrayList strings = new ArrayList(); + for(String s : lst) + if(s != null) + strings.add(s); + + boolean fst = true; + for(String s : strings) { + if(fst) + fst = false; + else + res.append(sep); + res.append(s); + } + return res.toString(); + } +} From f091bb3aca08f4b55369edb4752d8a0cdeaf726c Mon Sep 17 00:00:00 2001 From: Max Schaefer Date: Tue, 31 Jul 2012 14:31:34 -0400 Subject: [PATCH 06/59] Added utility class for converting call graphs to JSON. --- .../ibm/wala/cast/js/util/CallGraph2JSON.java | 174 ++++++++++++++++++ 1 file changed, 174 insertions(+) create mode 100644 com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java diff --git a/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java b/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java new file mode 100644 index 000000000..b1a8edf9a --- /dev/null +++ b/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/util/CallGraph2JSON.java @@ -0,0 +1,174 @@ +/****************************************************************************** + * Copyright (c) 2002 - 2012 IBM Corporation. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * IBM Corporation - initial API and implementation + *****************************************************************************/ +package com.ibm.wala.cast.js.util; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.Map; +import java.util.Set; + +import com.ibm.wala.cast.js.types.JavaScriptMethods; +import com.ibm.wala.cast.loader.AstMethod; +import com.ibm.wala.cast.tree.CAstSourcePositionMap.Position; +import com.ibm.wala.cast.types.AstMethodReference; +import com.ibm.wala.classLoader.CallSiteReference; +import com.ibm.wala.classLoader.IMethod; +import com.ibm.wala.ipa.callgraph.CGNode; +import com.ibm.wala.ipa.callgraph.CallGraph; +import com.ibm.wala.util.collections.HashMapFactory; +import com.ibm.wala.util.collections.MapUtil; +import com.ibm.wala.util.collections.Util; +import com.ibm.wala.util.functions.Function; + +/** + * Utility class to serialize call graphs as JSON objects. + * + * The serialised objects have the form + * + *
+ * {
+ *   "<callsite1>": [ "<callee1>", "<callee2>", ... ],
+ *   "<callsite2>": ... 
+ * }
+ * 
+ * + * where both call sites and callees are encoded as strings + * of the form + * + *
+ * "<filename>@<lineno>:<beginoff>-<endoff>"
+ * 
+ * + * Here, filename is the name of the containing + * JavaScript file (not including its directory), and + * lineno, beginoff and endoff + * encode the source position of the call expression (for + * call sites) or the function declaration/expression (for + * callees) inside the file in terms of its starting line, + * its starting offset (in characters from the beginning of the + * file), and its end offset. + * + * @author mschaefer + */ +public class CallGraph2JSON { + public static boolean IGNORE_HARNESS = true; + + public static String serialize(CallGraph cg) { + Map> edges = extractEdges(cg); + return toJSON(edges); + } + + public static Map> extractEdges(CallGraph cg) { + Map> edges = HashMapFactory.make(); + for(CGNode nd : cg) { + if(!isRealFunction(nd.getMethod())) + continue; + AstMethod method = (AstMethod)nd.getMethod(); + + for(Iterator iter = nd.iterateCallSites(); iter.hasNext();) { + CallSiteReference callsite = iter.next(); + Set targets = Util.mapToSet(cg.getPossibleTargets(nd, callsite), new Function() { + @Override + public IMethod apply(CGNode nd) { + return nd.getMethod(); + } + }); + serializeCallSite(method, callsite, targets, edges); + } + } + return edges; + } + + public static void serializeCallSite(AstMethod method, CallSiteReference callsite, Set targets, + Map> edges) { + Set targetNames = MapUtil.findOrCreateSet(edges, ppPos(method, method.getSourcePosition(callsite.getProgramCounter()))); + for(IMethod target : targets) { + target = getCallTargetMethod(target); + if(!isRealFunction(target)) + continue; + targetNames.add(ppPos((AstMethod)target, ((AstMethod)target).getSourcePosition())); + } + } + + private static IMethod getCallTargetMethod(IMethod method) { + if(method.getName().equals(JavaScriptMethods.ctorAtom)) { + method = method.getDeclaringClass().getMethod(AstMethodReference.fnSelector); + if(method != null) + return method; + } + return method; + } + + public static boolean isRealFunction(IMethod method) { + if(method instanceof AstMethod) { + String methodName = method.getDeclaringClass().getName().toString(); + + // exclude synthetic DOM modelling functions + if(methodName.contains("/make_node")) + return false; + + if(IGNORE_HARNESS && methodName.startsWith("Lprologue.js/") || methodName.startsWith("Lpreamble.js/")) + return false; + + return method.getName().equals(AstMethodReference.fnAtom); + } + return false; + } + + private static String ppPos(AstMethod method, Position pos) { + String file = pos.getURL().getFile(); + file = file.substring(file.lastIndexOf('/')+1); + + int line = pos.getFirstLine(), start_offset = pos.getFirstOffset(), end_offset = pos.getLastOffset(); + return file + "@" + line + ":" + start_offset + "-" + end_offset; + } + + public static String toJSON(Map> map) { + StringBuffer res = new StringBuffer(); + res.append("{\n"); + res.append(joinWith(Util.mapToSet(map.entrySet(), new Function>, String>() { + @Override + public String apply(Map.Entry> e) { + StringBuffer res = new StringBuffer(); + if(e.getValue().size() > 0) { + res.append(" \"" + e.getKey() + "\": [\n"); + res.append(joinWith(Util.mapToSet(e.getValue(), new Function() { + @Override + public String apply(String str) { + return " \"" + str + "\""; + } + }), ",\n")); + res.append("\n ]"); + } + return res.length() == 0 ? null : res.toString(); + } + }), ",\n")); + res.append("\n}"); + return res.toString(); + } + + private static String joinWith(Iterable lst, String sep) { + StringBuffer res = new StringBuffer(); + ArrayList strings = new ArrayList(); + for(String s : lst) + if(s != null) + strings.add(s); + + boolean fst = true; + for(String s : strings) { + if(fst) + fst = false; + else + res.append(sep); + res.append(s); + } + return res.toString(); + } +} From 3317c1ccf66fa89feda1c2cb37fdfe01103ec3c4 Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Fri, 3 Aug 2012 15:41:09 -0700 Subject: [PATCH 07/59] basic compatibility with Java 7 (i.e., don't crash immediately) --- .../src/com/ibm/wala/core/tests/cha/LibraryVersionTest.java | 2 +- .../com/ibm/wala/examples/analysis/dataflow/DataflowTest.java | 2 +- .../src/com/ibm/wala/ipa/callgraph/AnalysisScope.java | 4 ++++ .../src/com/ibm/wala/shrikeCT/ClassReader.java | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/cha/LibraryVersionTest.java b/com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/cha/LibraryVersionTest.java index edee8c8a7..d7271a040 100644 --- a/com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/cha/LibraryVersionTest.java +++ b/com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/cha/LibraryVersionTest.java @@ -36,7 +36,7 @@ public class LibraryVersionTest extends WalaTestCase { @Test public void testLibraryVersion() throws IOException { AnalysisScope scope = AnalysisScopeReader.readJavaScope(TestConstants.WALA_TESTDATA, (new FileProvider()).getFile("J2SEClassHierarchyExclusions.txt"), MY_CLASSLOADER); System.err.println("java library version is " + scope.getJavaLibraryVersion()); - Assert.assertTrue(scope.isJava16Libraries() || scope.isJava15Libraries()||scope.isJava14Libraries()); + Assert.assertTrue(scope.isJava17Libraries() || scope.isJava16Libraries() || scope.isJava15Libraries()||scope.isJava14Libraries()); } } diff --git a/com.ibm.wala.core.tests/src/com/ibm/wala/examples/analysis/dataflow/DataflowTest.java b/com.ibm.wala.core.tests/src/com/ibm/wala/examples/analysis/dataflow/DataflowTest.java index d52905901..71df5a55a 100644 --- a/com.ibm.wala.core.tests/src/com/ibm/wala/examples/analysis/dataflow/DataflowTest.java +++ b/com.ibm.wala.core.tests/src/com/ibm/wala/examples/analysis/dataflow/DataflowTest.java @@ -67,7 +67,7 @@ public class DataflowTest extends WalaTestCase { public static void beforeClass() throws Exception { scope = AnalysisScopeReader.readJavaScope(TestConstants.WALA_TESTDATA, - (new FileProvider()).getFile("J2SEClassHierarchyExclusions.txt"), DataflowTest.class.getClassLoader()); + (new FileProvider()).getFile(CallGraphTestUtil.REGRESSION_EXCLUSIONS), DataflowTest.class.getClassLoader()); try { cha = ClassHierarchy.make(scope); diff --git a/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/AnalysisScope.java b/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/AnalysisScope.java index 5ed280f10..639102f27 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/AnalysisScope.java +++ b/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/AnalysisScope.java @@ -411,6 +411,10 @@ public class AnalysisScope { } } + public boolean isJava17Libraries() throws IllegalStateException { + return getJavaLibraryVersion().startsWith("1.7"); + } + public boolean isJava16Libraries() throws IllegalStateException { return getJavaLibraryVersion().startsWith("1.6"); } diff --git a/com.ibm.wala.shrike/src/com/ibm/wala/shrikeCT/ClassReader.java b/com.ibm.wala.shrike/src/com/ibm/wala/shrikeCT/ClassReader.java index 098750b34..6718aec17 100644 --- a/com.ibm.wala.shrike/src/com/ibm/wala/shrikeCT/ClassReader.java +++ b/com.ibm.wala.shrike/src/com/ibm/wala/shrikeCT/ClassReader.java @@ -64,7 +64,7 @@ public final class ClassReader implements ClassConstants { if (magic != MAGIC) { throw new InvalidClassFileException(offset, "bad magic number: " + magic); } - if (majorVersion < 45 || majorVersion > 50) { + if (majorVersion < 45 || majorVersion > 51) { throw new InvalidClassFileException(offset, "unknown class file version: " + majorVersion + "." + minorVersion); } From 72e8dc9098b8fc9d2654d425fcf058d5c2b1fbbf Mon Sep 17 00:00:00 2001 From: dolby Date: Tue, 21 Aug 2012 09:48:53 -0400 Subject: [PATCH 08/59] reorganize stuff for using JavaScript stuff from Eclipse --- com.ibm.wala.cast.java.jdt.test/.classpath | 1 + .../data/Java60RegressionExclusions.txt | 11 + .../launchers/JDTJava15IRTests.launch | 10 +- .../launchers/JDTJavaIRTests.launch | 10 +- .../wala/cast/java/test/JDTJava15IRTests.java | 6 +- .../wala/cast/java/test/JDTJavaIRTests.java | 6 +- .../jdt/JDTSourceModuleTranslator.java | 81 +- com.ibm.wala.cast.java.polyglot/.classpath | 4 +- .../META-INF/MANIFEST.MF | 50 +- .../build.properties | 4 +- .../META-INF/MANIFEST.MF | 5 +- .../ibm/wala/cast/java/test/TestPlugin.java | 53 - com.ibm.wala.cast.java/META-INF/MANIFEST.MF | 7 +- .../ibm/wala/cast/java/JavaSourcePlugin.java | 53 - .../META-INF/MANIFEST.MF | 6 +- .../wala/cast/js/rhino/test/Activator.java | 50 - .../META-INF/MANIFEST.MF | 4 +- .../com/ibm/wala/js/rhino/Activator.java | 50 - com.ibm.wala.cast.js.test.data/.project | 28 + .../.settings/.jsdtscope | 5 + ...rg.eclipse.wst.jsdt.ui.superType.container | 1 + .../org.eclipse.wst.jsdt.ui.superType.name | 1 + .../META-INF/MANIFEST.MF | 7 + .../build.properties | 2 + .../examples-src/jquery.js | 521 +- .../examples-src/pages/2.js | 0 .../examples-src/pages/apollo-example.html | 0 .../examples-src/pages/collection.js | 0 .../examples-src/pages/crawl.html | 0 .../examples-src/pages/crawl/15.js | 0 .../examples-src/pages/crawl/16.js | 0 .../examples-src/pages/crawl/17.js | 0 .../examples-src/pages/crawl/page11.html | 0 .../examples-src/pages/crawl/page11b.html | 0 .../examples-src/pages/crawl/page12.html | 0 .../examples-src/pages/crawl/page13.html | 0 .../examples-src/pages/crawl/page15.html | 0 .../examples-src/pages/crawl/page16.html | 0 .../examples-src/pages/crawl/page17.html | 0 .../examples-src/pages/iframeTest2.html | 0 .../examples-src/pages/jquery.html | 8 + .../examples-src/pages/jquery/ex1.html | 0 .../examples-src/pages/jquery_hacked.html | 0 .../examples-src/pages/list.html | 0 .../examples-src/pages/nojs.html | 0 .../examples-src/pages/page1.html | 0 .../examples-src/pages/page2.html | 0 .../examples-src/pages/page3.html | 0 .../examples-src/pages/page4.html | 0 .../examples-src/pages/windowx.html | 0 .../examples-src/tests/214631.js | 0 .../tests/Function_is_a_function.js | 0 .../examples-src/tests/args.js | 0 .../examples-src/tests/arguments.js | 0 .../examples-src/tests/badforin.js | 0 .../examples-src/tests/badforin2.js | 0 .../examples-src/tests/badforin3.js | 0 .../examples-src/tests/calls.js | 0 .../examples-src/tests/complex_call.js | 0 .../examples-src/tests/control-flow.js | 0 .../examples-src/tests/crash1.js | 0 .../examples-src/tests/crash2.js | 0 .../examples-src/tests/dead_phi.js | 0 .../examples-src/tests/dispatch.js | 0 .../examples-src/tests/extjs_switch.js | 0 .../examples-src/tests/forin.js | 0 .../examples-src/tests/function_apply.js | 0 .../examples-src/tests/function_apply2.js | 0 .../examples-src/tests/function_call.js | 0 .../examples-src/tests/functions.js | 0 .../examples-src/tests/global_object.js | 0 .../examples-src/tests/global_object2.js | 0 .../examples-src/tests/inherit.js | 0 .../examples-src/tests/instanceof.js | 0 .../examples-src/tests/jquery_spec_test.js | 0 .../examples-src/tests/lexical-ctor.js | 0 .../examples-src/tests/lexical_broken.js | 0 .../tests/lexical_multiple_calls.js | 0 .../examples-src/tests/more-control-flow.js | 0 .../examples-src/tests/multivar.js | 0 .../examples-src/tests/nested.js | 0 .../tests/nested_assign_to_param.js | 0 .../examples-src/tests/newfn.js | 0 .../examples-src/tests/objects.js | 0 .../examples-src/tests/place_phi_npe.js | 0 .../tests/portal-example-simple.html | 0 .../tests/prototype_contamination_bug.js | 0 .../examples-src/tests/recursive_lexical.js | 0 .../examples-src/tests/repr.js | 0 .../examples-src/tests/return_this.js | 0 .../examples-src/tests/return_this2.js | 0 .../rewrite_does_not_change_lables_bug.js | 0 .../examples-src/tests/rhino_crash1.js | 0 .../examples-src/tests/rhino_crash2.js | 0 .../examples-src/tests/rhino_crash3.js | 0 .../examples-src/tests/scoping_test.js | 0 .../examples-src/tests/simple-lexical.js | 0 .../examples-src/tests/simple.js | 0 .../examples-src/tests/simpler.js | 0 .../tests/stack_overflow_on_ssa_conversion.js | 0 .../examples-src/tests/string-op.js | 0 .../examples-src/tests/string-prims.js | 0 .../examples-src/tests/try.js | 0 .../examples-src/tests/upward.js | 0 .../examples-src/tests/with.js | 0 .../examples-src/tests/wrap1.js | 0 .../examples-src/tests/wrap2.js | 0 .../examples-src/tests/wrap3.js | 0 com.ibm.wala.cast.js.test/.classpath | 6 +- .../META-INF/MANIFEST.MF | 5 +- .../examples-src/pages/mochitest/Makefile.in | 134 - .../pages/mochitest/MochiKit/Async.js | 681 -- .../pages/mochitest/MochiKit/Base.js | 1398 ---- .../pages/mochitest/MochiKit/Color.js | 902 --- .../pages/mochitest/MochiKit/Controls.js | 1388 ---- .../pages/mochitest/MochiKit/DOM.js | 1043 --- .../pages/mochitest/MochiKit/DateTime.js | 216 - .../pages/mochitest/MochiKit/DragAndDrop.js | 821 --- .../pages/mochitest/MochiKit/Format.js | 304 - .../pages/mochitest/MochiKit/Iter.js | 843 --- .../pages/mochitest/MochiKit/LICENSE.txt | 69 - .../pages/mochitest/MochiKit/Logging.js | 321 - .../pages/mochitest/MochiKit/LoggingPane.js | 371 - .../pages/mochitest/MochiKit/Makefile.in | 71 - .../pages/mochitest/MochiKit/MochiKit.js | 152 - .../pages/mochitest/MochiKit/MockDOM.js | 100 - .../pages/mochitest/MochiKit/New.js | 283 - .../pages/mochitest/MochiKit/Signal.js | 857 --- .../pages/mochitest/MochiKit/Sortable.js | 588 -- .../pages/mochitest/MochiKit/Style.js | 475 -- .../pages/mochitest/MochiKit/Test.js | 181 - .../pages/mochitest/MochiKit/Visual.js | 1823 ----- .../pages/mochitest/MochiKit/__package__.js | 19 - .../pages/mochitest/MochiKit/packed.js | 6112 ----------------- .../examples-src/pages/mochitest/README.txt | 113 - .../pages/mochitest/browser-harness.xul | 327 - .../pages/mochitest/browser-test-overlay.xul | 44 - .../pages/mochitest/browser-test.js | 198 - .../pages/mochitest/chrome/Makefile.in | 51 - .../pages/mochitest/chrome/test_sample.xul | 41 - .../pages/mochitest/gen_template.pl | 33 - .../pages/mochitest/harness-a11y.xul | 11 - .../pages/mochitest/harness-overlay.xul | 113 - .../examples-src/pages/mochitest/harness.xul | 11 - .../pages/mochitest/mozillaBug439164.html | 99 - .../pages/mochitest/mozillaBug488233.html | 171 - .../mochitest/mozillaBug488233NoExtJS.html | 171 - .../pages/mochitest/mozillaBug490152.html | 70 - .../mochitest/mozillaBug490152NoExtJS.html | 70 - .../pages/mochitest/mozillaBug625562.html | 93 - .../mochitest/mozillaBug625562NoExtJS.html | 93 - .../pages/mochitest/redirect-a11y.html | 14 - .../pages/mochitest/redirect.html | 14 - .../examples-src/pages/mochitest/redirect.js | 53 - .../pages/mochitest/runtests.pl.in | 703 -- .../pages/mochitest/runtests.py.in | 504 -- .../examples-src/pages/mochitest/server.js | 480 -- .../pages/mochitest/ssltunnel/Makefile.in | 63 - .../pages/mochitest/ssltunnel/ssltunnel.cpp | 403 -- .../pages/mochitest/static/Makefile.in | 54 - .../mochitest/static/bug100533_iframe.html | 8 - .../mochitest/static/bug100533_load.html | 14 - .../mochitest/static/bug277724_iframe1.html | 28 - .../mochitest/static/bug277724_iframe2.xhtml | 27 - .../mochitest/static/bug340800_iframe.txt | 4 - .../mochitest/static/bug344830_testembed.svg | 8 - .../mochitest/static/chrome.template.txt | 27 - .../pages/mochitest/static/harness.css | 97 - .../pages/mochitest/static/nnc_lockup.gif | Bin 732 -> 0 bytes .../pages/mochitest/static/test.template.txt | 31 - .../pages/mochitest/static/xhtml.template.txt | 31 - .../pages/mochitest/static/xul.template.txt | 26 - .../pages/mochitest/tests/FakeJSAN.js | 40 - .../pages/mochitest/tests/Makefile.in | 81 - .../mochitest/tests/SimpleTest/EventUtils.js | 356 - .../mochitest/tests/SimpleTest/Makefile.in | 58 - .../tests/SimpleTest/MozillaFileLogger.js | 67 - .../mochitest/tests/SimpleTest/SimpleTest.js | 461 -- .../mochitest/tests/SimpleTest/TestRunner.js | 208 - .../pages/mochitest/tests/SimpleTest/quit.js | 136 - .../pages/mochitest/tests/SimpleTest/setup.js | 128 - .../pages/mochitest/tests/SimpleTest/test.css | 29 - .../pages/mochitest/tests/browser/Makefile.in | 60 - .../mochitest/tests/browser/browser_async.js | 8 - .../mochitest/tests/browser/browser_fail.js | 8 - .../tests/browser/browser_fail_async_throw.js | 7 - .../tests/browser/browser_fail_fp.js | 4 - .../tests/browser/browser_fail_pf.js | 4 - .../tests/browser/browser_fail_throw.js | 3 - .../tests/browser/browser_fail_timeout.js | 8 - .../mochitest/tests/browser/browser_pass.js | 11 - .../mochitest/tests/browser/browser_scope.js | 4 - .../examples-src/pages/mochitest/tests/cli.js | 6 - .../pages/mochitest/tests/index.html | 72 - .../pages/mochitest/tests/standalone.js | 16 - .../pages/mochitest/tests/test_Base.js | 500 -- .../pages/mochitest/tests/test_Color.js | 128 - .../pages/mochitest/tests/test_DateTime.js | 45 - .../pages/mochitest/tests/test_DragAndDrop.js | 30 - .../pages/mochitest/tests/test_Format.js | 80 - .../pages/mochitest/tests/test_Iter.js | 176 - .../pages/mochitest/tests/test_Logging.js | 75 - .../mochitest/tests/test_MochiKit-Async.html | 408 -- .../mochitest/tests/test_MochiKit-Async.json | 1 - .../mochitest/tests/test_MochiKit-Base.html | 34 - .../mochitest/tests/test_MochiKit-Color.html | 78 - .../mochitest/tests/test_MochiKit-DOM.html | 290 - .../tests/test_MochiKit-DateTime.html | 39 - .../tests/test_MochiKit-DragAndDrop.html | 55 - .../mochitest/tests/test_MochiKit-Format.html | 39 - .../mochitest/tests/test_MochiKit-Iter.html | 38 - .../mochitest/tests/test_MochiKit-JSAN.html | 32 - .../tests/test_MochiKit-Logging.html | 40 - .../tests/test_MochiKit-MochiKit.html | 18 - .../mochitest/tests/test_MochiKit-Signal.html | 43 - .../mochitest/tests/test_MochiKit-Style.html | 135 - .../mochitest/tests/test_MochiKit-Visual.html | 107 - .../pages/mochitest/tests/test_Signal.js | 380 - .../pages/mochitest/tests/test_bug100533.html | 44 - .../pages/mochitest/tests/test_bug1297.html | 47 - .../pages/mochitest/tests/test_bug1366.html | 36 - .../pages/mochitest/tests/test_bug1400.html | 43 - .../pages/mochitest/tests/test_bug1682.html | 38 - .../pages/mochitest/tests/test_bug172261.html | 68 - .../pages/mochitest/tests/test_bug1823.html | 31 - .../pages/mochitest/tests/test_bug2082.html | 31 - .../pages/mochitest/tests/test_bug218236.html | 135 - .../pages/mochitest/tests/test_bug218277.html | 29 - .../pages/mochitest/tests/test_bug237071.html | 29 - .../pages/mochitest/tests/test_bug238409.html | 46 - .../pages/mochitest/tests/test_bug24958.html | 32 - .../pages/mochitest/tests/test_bug277724.html | 138 - .../mochitest/tests/test_bug300691-1.html | 121 - .../mochitest/tests/test_bug300691-2.html | 143 - .../mochitest/tests/test_bug300691-3.xhtml | 51 - .../pages/mochitest/tests/test_bug302186.html | 423 -- .../pages/mochitest/tests/test_bug308484.html | 61 - .../pages/mochitest/tests/test_bug308856.html | 43 - .../pages/mochitest/tests/test_bug311681.html | 100 - .../mochitest/tests/test_bug311681.xhtml | 105 - .../pages/mochitest/tests/test_bug311681.xml | 106 - .../pages/mochitest/tests/test_bug311681.xul | 108 - .../pages/mochitest/tests/test_bug319381.html | 90 - .../mochitest/tests/test_bug332848.xhtml | 71 - .../pages/mochitest/tests/test_bug333983.html | 36 - .../pages/mochitest/tests/test_bug3348.html | 34 - .../pages/mochitest/tests/test_bug337124.html | 33 - .../pages/mochitest/tests/test_bug337631.html | 100 - .../mochitest/tests/test_bug338541.xhtml | 50 - .../pages/mochitest/tests/test_bug338679.html | 55 - .../mochitest/tests/test_bug339350.xhtml | 61 - .../pages/mochitest/tests/test_bug339494.html | 62 - .../mochitest/tests/test_bug339494.xhtml | 61 - .../pages/mochitest/tests/test_bug339494.xul | 67 - .../pages/mochitest/tests/test_bug340800.html | 56 - .../pages/mochitest/tests/test_bug342448.html | 34 - .../pages/mochitest/tests/test_bug343596.html | 44 - .../pages/mochitest/tests/test_bug344830.html | 42 - .../pages/mochitest/tests/test_bug344861.html | 36 - .../pages/mochitest/tests/test_bug345521.html | 37 - .../pages/mochitest/tests/test_bug348497.html | 37 - .../pages/mochitest/tests/test_bug351601.html | 38 - .../pages/mochitest/tests/test_bug352728.html | 125 - .../mochitest/tests/test_bug352728.xhtml | 195 - .../pages/mochitest/tests/test_bug355026.html | 30 - .../pages/mochitest/tests/test_bug357509.html | 37 - .../pages/mochitest/tests/test_bug358660.html | 38 - .../pages/mochitest/tests/test_bug358797.html | 39 - .../pages/mochitest/tests/test_bug359657.html | 38 - .../pages/mochitest/tests/test_bug359754.xul | 72 - .../pages/mochitest/tests/test_bug360220.xul | 46 - .../mochitest/tests/test_bug362391.xhtml | 75 - .../mochitest/tests/test_bug362788.xhtml | 51 - .../mochitest/tests/test_bug364092.xhtml | 46 - .../mochitest/tests/test_bug364413.xhtml | 48 - .../pages/mochitest/tests/test_bug365773.xul | 70 - .../mochitest/tests/test_bug366645.xhtml | 108 - .../pages/mochitest/tests/test_bug367164.html | 48 - .../pages/mochitest/tests/test_bug51034.html | 43 - .../pages/mochitest/tests/test_bug5141.html | 31 - .../pages/mochitest/tests/test_bug589.html | 43 - .../pages/mochitest/tests/test_bug6296.html | 32 - .../pages/mochitest/tests/test_bug691.html | 63 - .../pages/mochitest/tests/test_bug694.html | 31 - .../pages/mochitest/tests/test_bug696.html | 29 - com.ibm.wala.cast.js/META-INF/MANIFEST.MF | 14 +- .../ibm/wala/cast/js/JavaScriptPlugin.java | 85 - com.ibm.wala.cast.test/META-INF/MANIFEST.MF | 3 +- com.ibm.wala.cast/META-INF/MANIFEST.MF | 6 +- .../cast/ipa/callgraph/CAstAnalysisScope.java | 4 + .../com/ibm/wala/cast/plugin/AstPlugin.java | 53 - .../com/ibm/wala/cast/tree/AstPlugin.java | 53 - com.ibm.wala.core.tests/META-INF/MANIFEST.MF | 16 +- .../core/tests/plugin/CoreTestsPlugin.java | 60 - com.ibm.wala.ide.tests/META-INF/MANIFEST.MF | 8 +- .../cast/js/rhino/test/HTMLCGBuilder.java | 0 .../demandpa/driver/DemandCastChecker.java | 0 .../ibm/wala/ide/test/JSDTCallGraphTest.java | 116 + .../ibm/wala/ide/test/JSProjectScopeTest.java | 69 + com.ibm.wala.ide/META-INF/MANIFEST.MF | 21 +- .../wala/cast/ir/translator/NativeBridge.java | 0 .../ir/translator/NativeTranslatorToCAst.java | 0 .../EclipseJavaScriptAnalysisEngine.java | 32 + .../EclipseProjectAnalysisEngine.java | 12 +- .../EclipseProjectSourceAnalysisEngine.java | 49 +- .../ibm/wala/ide/util/EclipseProjectPath.java | 200 +- .../com/ibm/wala/ide/util/HeadlessUtil.java | 114 +- .../src/com/ibm/wala/ide/util/JsdtUtil.java | 168 + 308 files changed, 1087 insertions(+), 33377 deletions(-) create mode 100644 com.ibm.wala.cast.java.jdt.test/data/Java60RegressionExclusions.txt delete mode 100644 com.ibm.wala.cast.java.test/src/com/ibm/wala/cast/java/test/TestPlugin.java delete mode 100644 com.ibm.wala.cast.java/src/com/ibm/wala/cast/java/JavaSourcePlugin.java delete mode 100644 com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/Activator.java delete mode 100644 com.ibm.wala.cast.js.rhino/source/com/ibm/wala/js/rhino/Activator.java create mode 100644 com.ibm.wala.cast.js.test.data/.project create mode 100644 com.ibm.wala.cast.js.test.data/.settings/.jsdtscope create mode 100644 com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.container create mode 100644 com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.name create mode 100644 com.ibm.wala.cast.js.test.data/META-INF/MANIFEST.MF create mode 100644 com.ibm.wala.cast.js.test.data/build.properties rename com.ibm.wala.cast.js.test/examples-src/pages/jquery.html => com.ibm.wala.cast.js.test.data/examples-src/jquery.js (93%) mode change 100755 => 100644 rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/apollo-example.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/collection.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/15.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/16.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/17.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/page11.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/page11b.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/page12.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/page13.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/page15.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/page16.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/crawl/page17.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/iframeTest2.html (100%) create mode 100755 com.ibm.wala.cast.js.test.data/examples-src/pages/jquery.html rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/jquery/ex1.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/jquery_hacked.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/list.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/nojs.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/page1.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/page2.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/page3.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/page4.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/pages/windowx.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/214631.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/Function_is_a_function.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/args.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/arguments.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/badforin.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/badforin2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/badforin3.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/calls.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/complex_call.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/control-flow.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/crash1.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/crash2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/dead_phi.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/dispatch.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/extjs_switch.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/forin.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/function_apply.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/function_apply2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/function_call.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/functions.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/global_object.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/global_object2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/inherit.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/instanceof.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/jquery_spec_test.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/lexical-ctor.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/lexical_broken.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/lexical_multiple_calls.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/more-control-flow.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/multivar.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/nested.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/nested_assign_to_param.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/newfn.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/objects.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/place_phi_npe.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/portal-example-simple.html (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/prototype_contamination_bug.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/recursive_lexical.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/repr.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/return_this.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/return_this2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/rewrite_does_not_change_lables_bug.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/rhino_crash1.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/rhino_crash2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/rhino_crash3.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/scoping_test.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/simple-lexical.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/simple.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/simpler.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/stack_overflow_on_ssa_conversion.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/string-op.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/string-prims.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/try.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/upward.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/with.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/wrap1.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/wrap2.js (100%) rename {com.ibm.wala.cast.js.test => com.ibm.wala.cast.js.test.data}/examples-src/tests/wrap3.js (100%) delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Async.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Base.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Color.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Controls.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DOM.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DateTime.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DragAndDrop.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Format.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Iter.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LICENSE.txt delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Logging.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LoggingPane.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MochiKit.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MockDOM.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/New.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Signal.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Sortable.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Style.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Test.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Visual.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/__package__.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/packed.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/README.txt delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/browser-harness.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/browser-test-overlay.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/browser-test.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/chrome/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/chrome/test_sample.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/gen_template.pl delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/harness-a11y.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/harness-overlay.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/harness.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/mozillaBug439164.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/mozillaBug488233.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/mozillaBug488233NoExtJS.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/mozillaBug490152.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/mozillaBug490152NoExtJS.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/mozillaBug625562.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/mozillaBug625562NoExtJS.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/redirect-a11y.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/redirect.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/redirect.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/runtests.pl.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/runtests.py.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/server.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/ssltunnel/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/ssltunnel/ssltunnel.cpp delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug100533_iframe.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug100533_load.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug277724_iframe1.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug277724_iframe2.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug340800_iframe.txt delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug344830_testembed.svg delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/chrome.template.txt delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/harness.css delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/nnc_lockup.gif delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/test.template.txt delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xhtml.template.txt delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xul.template.txt delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/FakeJSAN.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/EventUtils.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/MozillaFileLogger.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/SimpleTest.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/TestRunner.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/quit.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/setup.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/test.css delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/Makefile.in delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_async.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_async_throw.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_fp.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_pf.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_throw.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_timeout.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_pass.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_scope.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/cli.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/index.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/standalone.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Base.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Color.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DateTime.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DragAndDrop.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Format.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Iter.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Logging.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.json delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Base.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Color.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DOM.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DateTime.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DragAndDrop.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Format.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Iter.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-JSAN.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Logging.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-MochiKit.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Signal.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Style.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Visual.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Signal.js delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug100533.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1297.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1366.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1400.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1682.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug172261.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1823.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug2082.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218236.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218277.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug237071.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug238409.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug24958.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug277724.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-1.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-2.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-3.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug302186.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308484.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308856.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug319381.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug332848.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug333983.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug3348.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337124.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337631.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338541.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338679.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339350.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug340800.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug342448.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug343596.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug344830.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug344861.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug345521.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug348497.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug351601.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug352728.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug352728.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug355026.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug357509.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug358660.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug358797.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug359657.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug359754.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug360220.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug362391.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug362788.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug364092.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug364413.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug365773.xul delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug366645.xhtml delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug367164.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug51034.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug5141.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug589.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug6296.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug691.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug694.html delete mode 100755 com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug696.html delete mode 100644 com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/JavaScriptPlugin.java delete mode 100644 com.ibm.wala.cast/source/java/com/ibm/wala/cast/plugin/AstPlugin.java delete mode 100644 com.ibm.wala.cast/source/java/com/ibm/wala/cast/tree/AstPlugin.java delete mode 100644 com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/plugin/CoreTestsPlugin.java rename {com.ibm.wala.cast.js.rhino.test/harness-src => com.ibm.wala.ide.tests/src}/com/ibm/wala/cast/js/rhino/test/HTMLCGBuilder.java (100%) rename {com.ibm.wala.core.tests => com.ibm.wala.ide.tests}/src/com/ibm/wala/demandpa/driver/DemandCastChecker.java (100%) create mode 100644 com.ibm.wala.ide.tests/src/com/ibm/wala/ide/test/JSDTCallGraphTest.java create mode 100644 com.ibm.wala.ide.tests/src/com/ibm/wala/ide/test/JSProjectScopeTest.java rename {com.ibm.wala.cast/source/java => com.ibm.wala.ide/src}/com/ibm/wala/cast/ir/translator/NativeBridge.java (100%) rename {com.ibm.wala.cast/source/java => com.ibm.wala.ide/src}/com/ibm/wala/cast/ir/translator/NativeTranslatorToCAst.java (100%) create mode 100644 com.ibm.wala.ide/src/com/ibm/wala/cast/java/client/polyglot/EclipseJavaScriptAnalysisEngine.java rename {com.ibm.wala.cast.java.polyglot/source => com.ibm.wala.ide/src}/com/ibm/wala/cast/java/client/polyglot/EclipseProjectAnalysisEngine.java (79%) rename {com.ibm.wala.cast.java.polyglot/source => com.ibm.wala.ide/src}/com/ibm/wala/cast/java/client/polyglot/EclipseProjectSourceAnalysisEngine.java (67%) create mode 100644 com.ibm.wala.ide/src/com/ibm/wala/ide/util/JsdtUtil.java diff --git a/com.ibm.wala.cast.java.jdt.test/.classpath b/com.ibm.wala.cast.java.jdt.test/.classpath index d154f35ab..3afaa84d1 100644 --- a/com.ibm.wala.cast.java.jdt.test/.classpath +++ b/com.ibm.wala.cast.java.jdt.test/.classpath @@ -3,5 +3,6 @@ + diff --git a/com.ibm.wala.cast.java.jdt.test/data/Java60RegressionExclusions.txt b/com.ibm.wala.cast.java.jdt.test/data/Java60RegressionExclusions.txt new file mode 100644 index 000000000..a621d345d --- /dev/null +++ b/com.ibm.wala.cast.java.jdt.test/data/Java60RegressionExclusions.txt @@ -0,0 +1,11 @@ +java\/awt\/.* +javax\/swing\/.* +sun\/awt\/.* +sun\/swing\/.* +com\/sun\/.* +sun\/.* +org\/netbeans\/.* +org\/openide\/.* +com\/ibm\/crypto\/.* +com\/ibm\/security\/.* +org\/apache\/xerces\/.* diff --git a/com.ibm.wala.cast.java.jdt.test/launchers/JDTJava15IRTests.launch b/com.ibm.wala.cast.java.jdt.test/launchers/JDTJava15IRTests.launch index 1896f3978..69c793d9c 100644 --- a/com.ibm.wala.cast.java.jdt.test/launchers/JDTJava15IRTests.launch +++ b/com.ibm.wala.cast.java.jdt.test/launchers/JDTJava15IRTests.launch @@ -11,8 +11,8 @@ - - + + @@ -30,12 +30,12 @@ - + - - + + diff --git a/com.ibm.wala.cast.java.jdt.test/launchers/JDTJavaIRTests.launch b/com.ibm.wala.cast.java.jdt.test/launchers/JDTJavaIRTests.launch index b7b136cde..8d13ecf9b 100644 --- a/com.ibm.wala.cast.java.jdt.test/launchers/JDTJavaIRTests.launch +++ b/com.ibm.wala.cast.java.jdt.test/launchers/JDTJavaIRTests.launch @@ -11,8 +11,8 @@ - - + + @@ -30,12 +30,12 @@ - + - - + + diff --git a/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJava15IRTests.java b/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJava15IRTests.java index 3311d5b78..7d2a64035 100644 --- a/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJava15IRTests.java +++ b/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJava15IRTests.java @@ -20,9 +20,9 @@ import org.junit.Test; import com.ibm.wala.cast.java.client.JDTJavaSourceAnalysisEngine; import com.ibm.wala.cast.java.client.JavaSourceAnalysisEngine; import com.ibm.wala.cast.java.ipa.callgraph.JavaSourceAnalysisScope; +import com.ibm.wala.cast.java.jdt.test.Activator; import com.ibm.wala.cast.java.test.ide.IDEIRTestUtil; import com.ibm.wala.core.tests.callGraph.CallGraphTestUtil; -import com.ibm.wala.core.tests.plugin.CoreTestsPlugin; import com.ibm.wala.ide.tests.util.EclipseTestUtil; import com.ibm.wala.ide.util.EclipseFileProvider; import com.ibm.wala.ipa.callgraph.AnalysisScope; @@ -43,7 +43,7 @@ public class JDTJava15IRTests extends IRTests { @BeforeClass public static void beforeClass() { - EclipseTestUtil.importZippedProject(TestPlugin.getDefault(), JDTJavaIRTests.PROJECT_NAME, JDTJavaIRTests.PROJECT_ZIP, new NullProgressMonitor()); + EclipseTestUtil.importZippedProject(Activator.getDefault(), JDTJavaIRTests.PROJECT_NAME, JDTJavaIRTests.PROJECT_ZIP, new NullProgressMonitor()); System.err.println("finish importing project"); } @@ -63,7 +63,7 @@ public class JDTJava15IRTests extends IRTests { try { engine.setExclusionsFile((new EclipseFileProvider()) - .getFileFromPlugin(CoreTestsPlugin.getDefault(), CallGraphTestUtil.REGRESSION_EXCLUSIONS).getAbsolutePath()); + .getFileFromPlugin(Activator.getDefault(), CallGraphTestUtil.REGRESSION_EXCLUSIONS).getAbsolutePath()); } catch (IOException e) { Assert.assertFalse("Cannot find exclusions file", true); } diff --git a/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJavaIRTests.java b/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJavaIRTests.java index 8884ee843..3e3c53eb7 100644 --- a/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJavaIRTests.java +++ b/com.ibm.wala.cast.java.jdt.test/source/com/ibm/wala/cast/java/test/JDTJavaIRTests.java @@ -50,9 +50,9 @@ import org.junit.BeforeClass; import com.ibm.wala.cast.java.client.JDTJavaSourceAnalysisEngine; import com.ibm.wala.cast.java.client.JavaSourceAnalysisEngine; import com.ibm.wala.cast.java.ipa.callgraph.JavaSourceAnalysisScope; +import com.ibm.wala.cast.java.jdt.test.Activator; import com.ibm.wala.cast.java.test.ide.IDEIRTestUtil; import com.ibm.wala.core.tests.callGraph.CallGraphTestUtil; -import com.ibm.wala.core.tests.plugin.CoreTestsPlugin; import com.ibm.wala.ide.tests.util.EclipseTestUtil; import com.ibm.wala.ide.util.EclipseFileProvider; import com.ibm.wala.ipa.callgraph.AnalysisScope; @@ -77,7 +77,7 @@ public class JDTJavaIRTests extends JavaIRTests { @BeforeClass public static void beforeClass() { - EclipseTestUtil.importZippedProject(TestPlugin.getDefault(), PROJECT_NAME, PROJECT_ZIP, new NullProgressMonitor()); + EclipseTestUtil.importZippedProject(Activator.getDefault(), PROJECT_NAME, PROJECT_ZIP, new NullProgressMonitor()); System.err.println("finish importing project"); } @@ -97,7 +97,7 @@ public class JDTJavaIRTests extends JavaIRTests { try { engine.setExclusionsFile((new EclipseFileProvider()) - .getFileFromPlugin(CoreTestsPlugin.getDefault(), CallGraphTestUtil.REGRESSION_EXCLUSIONS).getAbsolutePath()); + .getFileFromPlugin(Activator.getDefault(), CallGraphTestUtil.REGRESSION_EXCLUSIONS).getAbsolutePath()); } catch (IOException e) { Assert.assertFalse("Cannot find exclusions file", true); } diff --git a/com.ibm.wala.cast.java.jdt/source/com/ibm/wala/cast/java/translator/jdt/JDTSourceModuleTranslator.java b/com.ibm.wala.cast.java.jdt/source/com/ibm/wala/cast/java/translator/jdt/JDTSourceModuleTranslator.java index 1b4f1d3c9..ef0a20860 100644 --- a/com.ibm.wala.cast.java.jdt/source/com/ibm/wala/cast/java/translator/jdt/JDTSourceModuleTranslator.java +++ b/com.ibm.wala.cast.java.jdt/source/com/ibm/wala/cast/java/translator/jdt/JDTSourceModuleTranslator.java @@ -38,17 +38,16 @@ package com.ibm.wala.cast.java.translator.jdt; import java.io.File; -import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; +import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IProject; import org.eclipse.jdt.core.ICompilationUnit; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.core.JavaModelException; -import org.eclipse.jdt.core.compiler.IProblem; import org.eclipse.jdt.core.dom.AST; import org.eclipse.jdt.core.dom.ASTParser; import org.eclipse.jdt.core.dom.ASTRequestor; @@ -61,9 +60,13 @@ import com.ibm.wala.classLoader.JarFileModule; import com.ibm.wala.classLoader.Module; import com.ibm.wala.classLoader.ModuleEntry; import com.ibm.wala.ide.classloader.EclipseSourceFileModule; +import com.ibm.wala.ide.util.HeadlessUtil; +import com.ibm.wala.ide.util.HeadlessUtil.EclipseCompiler; +import com.ibm.wala.ide.util.HeadlessUtil.Parser; import com.ibm.wala.ipa.callgraph.AnalysisScope; import com.ibm.wala.types.ClassLoaderReference; import com.ibm.wala.util.debug.Assertions; +import com.ibm.wala.util.functions.Function; /** * A SourceModuleTranslator whose implementation of loadAllSources() uses the PolyglotFrontEnd pseudo-compiler to generate DOMO IR @@ -115,54 +118,44 @@ public class JDTSourceModuleTranslator implements SourceModuleTranslator { public void loadAllSources(Set modules) { // TODO: we might need one AST (-> "Object" class) for all files. // TODO: group by project and send 'em in - System.out.println(modules); - // sort files into projects - Map> projectsFiles = new HashMap>(); - for (ModuleEntry m : modules) { - assert m instanceof EclipseSourceFileModule : "Expecing EclipseSourceFileModule, not " + m.getClass(); - EclipseSourceFileModule entry = (EclipseSourceFileModule) m; - IProject proj = entry.getIFile().getProject(); - if (!projectsFiles.containsKey(proj)) { - projectsFiles.put(proj, new HashMap()); + HeadlessUtil.parseModules(modules, new EclipseCompiler() { + @Override + public ICompilationUnit getCompilationUnit(IFile file) { + return JavaCore.createCompilationUnitFrom(file); } - projectsFiles.get(proj).put(JavaCore.createCompilationUnitFrom(entry.getIFile()), entry); - } - - final ASTParser parser = ASTParser.newParser(AST.JLS3); - - for (final Map.Entry> proj : projectsFiles.entrySet()) { - parser.setProject(JavaCore.create(proj.getKey())); - parser.setResolveBindings(true); - - Set units = proj.getValue().keySet(); - parser.createASTs(units.toArray(new ICompilationUnit[units.size()]), new String[0], new ASTRequestor() { - public void acceptAST(ICompilationUnit source, CompilationUnit ast) { - - try { - JDTJava2CAstTranslator jdt2cast = makeCAstTranslator(ast, source.getUnderlyingResource().getLocation().toOSString()); - final Java2IRTranslator java2ir = makeIRTranslator(); - java2ir.translate(proj.getValue().get(source), jdt2cast.translateToCAst()); - } catch (JavaModelException e) { - e.printStackTrace(); + @Override + public Parser getParser() { + return new Parser() { + final ASTParser parser; + { + parser = ASTParser.newParser(AST.JLS3); + parser.setResolveBindings(true); } - - IProblem[] problems = ast.getProblems(); - int length = problems.length; - if (length > 0) { - StringBuffer buffer = new StringBuffer(); - for (int i = 0; i < length; i++) { - buffer.append(problems[i].getMessage()); - buffer.append('\n'); - } - if (length != 0) - System.err.println("Unexpected problems in " + source.getElementName() + buffer.toString()); + @Override + public void setProject(IProject project) { + parser.setProject(JavaCore.create(project)); } - } - }, null); + @Override + public void processASTs(final Map files, final Function errors) { + parser.createASTs(files.keySet().toArray(new ICompilationUnit[files.size()]), new String[0], new ASTRequestor() { + public void acceptAST(ICompilationUnit source, CompilationUnit ast) { + try { + JDTJava2CAstTranslator jdt2cast = makeCAstTranslator(ast, source.getUnderlyingResource().getLocation().toOSString()); + final Java2IRTranslator java2ir = makeIRTranslator(); + java2ir.translate(files.get(source), jdt2cast.translateToCAst()); + } catch (JavaModelException e) { + e.printStackTrace(); + } - } + errors.apply(ast.getProblems()); + } + }, null); + } + }; + } + }); } protected Java2IRTranslator makeIRTranslator() { diff --git a/com.ibm.wala.cast.java.polyglot/.classpath b/com.ibm.wala.cast.java.polyglot/.classpath index 3c4fe4923..c3f9b76bd 100644 --- a/com.ibm.wala.cast.java.polyglot/.classpath +++ b/com.ibm.wala.cast.java.polyglot/.classpath @@ -1,8 +1,8 @@ - - + + diff --git a/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF index b7a4efc2f..403c9384a 100644 --- a/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF @@ -11,25 +11,41 @@ Require-Bundle: com.ibm.wala.cast.java, org.eclipse.core.runtime, com.ibm.wala.shrike, org.eclipse.jdt.core, - org.eclipse.core.resources, - com.ibm.wala.ide + org.eclipse.core.resources Bundle-RequiredExecutionEnvironment: J2SE-1.5 Bundle-ActivationPolicy: lazy -Export-Package: com.ibm.wala.cast.java.client.polyglot, - com.ibm.wala.cast.java.polyglot;uses:="org.osgi.framework,org.eclipse.core.runtime", +Export-Package: com.ibm.wala.cast.java.polyglot;uses:="org.eclipse.core.runtime,org.osgi.framework", com.ibm.wala.cast.java.translator.polyglot; - uses:="com.ibm.wala.types, - polyglot.types, - polyglot.util, - polyglot.ast, - com.ibm.wala.ipa.cha, - com.ibm.wala.cast.java.client, - com.ibm.wala.classLoader, + uses:="polyglot.types, com.ibm.wala.cast.tree, - com.ibm.wala.cast.java.loader, - com.ibm.wala.ipa.callgraph.impl, - com.ibm.wala.ipa.callgraph, - polyglot.frontend.goals, - com.ibm.wala.cast.tree.impl, + com.ibm.wala.classLoader, + com.ibm.wala.ipa.cha, + com.ibm.wala.cast.java.types, com.ibm.wala.cast.java.translator, - com.ibm.wala.cast.java.types" + com.ibm.wala.cast.java.client, + com.ibm.wala.types, + polyglot.ast, + polyglot.util, + com.ibm.wala.ipa.callgraph, + polyglot.frontend, + com.ibm.wala.cast.ir.translator, + com.ibm.wala.ipa.callgraph.impl, + com.ibm.wala.cast.java.loader, + com.ibm.wala.cast.tree.impl", + java_cup, + java_cup.runtime, + polyglot.ast, + polyglot.dispatch, + polyglot.frontend, + polyglot.lex, + polyglot.main, + polyglot.parse, + polyglot.qq, + polyglot.types, + polyglot.types.reflect, + polyglot.util, + polyglot.util.typedump, + polyglot.visit +Bundle-ClassPath: lib/java_cup.jar, + lib/polyglot.jar, + . diff --git a/com.ibm.wala.cast.java.polyglot/build.properties b/com.ibm.wala.cast.java.polyglot/build.properties index c820afa01..ab0d39f0e 100644 --- a/com.ibm.wala.cast.java.polyglot/build.properties +++ b/com.ibm.wala.cast.java.polyglot/build.properties @@ -1,4 +1,6 @@ source.. = source/ output.. = bin/ bin.includes = META-INF/,\ - . + .,\ + lib/java_cup.jar,\ + lib/polyglot.jar diff --git a/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF index 181ea817f..9ba1f9413 100644 --- a/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF @@ -5,13 +5,12 @@ Bundle-SymbolicName: com.ibm.wala.cast.java.test Bundle-Version: 1.0.0 Bundle-Activator: com.ibm.wala.cast.java.test.TestPlugin Bundle-Vendor: IBM -Require-Bundle: org.junit4, - com.ibm.wala.core.tests, +Require-Bundle: com.ibm.wala.core.tests, com.ibm.wala.cast.java, com.ibm.wala.cast, com.ibm.wala.core, com.ibm.wala.shrike, - org.eclipse.core.runtime + org.junit4 Bundle-ActivationPolicy: lazy Export-Package: com.ibm.wala.cast.java.test Bundle-RequiredExecutionEnvironment: J2SE-1.5 diff --git a/com.ibm.wala.cast.java.test/src/com/ibm/wala/cast/java/test/TestPlugin.java b/com.ibm.wala.cast.java.test/src/com/ibm/wala/cast/java/test/TestPlugin.java deleted file mode 100644 index 24447a842..000000000 --- a/com.ibm.wala.cast.java.test/src/com/ibm/wala/cast/java/test/TestPlugin.java +++ /dev/null @@ -1,53 +0,0 @@ -/****************************************************************************** - * Copyright (c) 2002 - 2006 IBM Corporation. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * IBM Corporation - initial API and implementation - *****************************************************************************/ -package com.ibm.wala.cast.java.test; - -import org.eclipse.core.runtime.Plugin; -import org.osgi.framework.BundleContext; - -/** - * The main plugin class to be used in the desktop. - */ -public class TestPlugin extends Plugin { - - //The shared instance. - private static TestPlugin plugin; - - /** - * The constructor. - */ - public TestPlugin() { - plugin = this; - } - - /** - * This method is called upon plug-in activation - */ - public void start(BundleContext context) throws Exception { - super.start(context); - } - - /** - * This method is called when the plug-in is stopped - */ - public void stop(BundleContext context) throws Exception { - super.stop(context); - plugin = null; - } - - /** - * Returns the shared instance. - */ - public static TestPlugin getDefault() { - return plugin; - } - -} diff --git a/com.ibm.wala.cast.java/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java/META-INF/MANIFEST.MF index 189876470..6fcdf1898 100644 --- a/com.ibm.wala.cast.java/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java/META-INF/MANIFEST.MF @@ -3,15 +3,12 @@ Bundle-ManifestVersion: 2 Bundle-Name: Java Source WALA Front End Bundle-SymbolicName: com.ibm.wala.cast.java Bundle-Version: 1.0.0.qualifier -Bundle-Activator: com.ibm.wala.cast.java.JavaSourcePlugin Bundle-Vendor: rfuhrer@watson.ibm.com Require-Bundle: com.ibm.wala.cast, com.ibm.wala.core, - com.ibm.wala.shrike, - org.eclipse.core.runtime + com.ibm.wala.shrike Bundle-ActivationPolicy: lazy -Export-Package: com.ibm.wala.cast.java, - com.ibm.wala.cast.java.analysis.typeInference, +Export-Package: com.ibm.wala.cast.java.analysis.typeInference, com.ibm.wala.cast.java.client, com.ibm.wala.cast.java.client.impl, com.ibm.wala.cast.java.examples.ast, diff --git a/com.ibm.wala.cast.java/src/com/ibm/wala/cast/java/JavaSourcePlugin.java b/com.ibm.wala.cast.java/src/com/ibm/wala/cast/java/JavaSourcePlugin.java deleted file mode 100644 index 3ea8ff0d7..000000000 --- a/com.ibm.wala.cast.java/src/com/ibm/wala/cast/java/JavaSourcePlugin.java +++ /dev/null @@ -1,53 +0,0 @@ -/****************************************************************************** - * Copyright (c) 2002 - 2006 IBM Corporation. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * IBM Corporation - initial API and implementation - *****************************************************************************/ -package com.ibm.wala.cast.java; - -import org.eclipse.core.runtime.Plugin; -import org.osgi.framework.BundleContext; - -/** - * The main plugin class to be used in the desktop. - */ -public class JavaSourcePlugin extends Plugin { - - //The shared instance. - private static JavaSourcePlugin plugin; - - /** - * The constructor. - */ - public JavaSourcePlugin() { - plugin = this; - } - - /** - * This method is called upon plug-in activation - */ - public void start(BundleContext context) throws Exception { - super.start(context); - } - - /** - * This method is called when the plug-in is stopped - */ - public void stop(BundleContext context) throws Exception { - super.stop(context); - plugin = null; - } - - /** - * Returns the shared instance. - */ - public static JavaSourcePlugin getDefault() { - return plugin; - } - -} diff --git a/com.ibm.wala.cast.js.rhino.test/META-INF/MANIFEST.MF b/com.ibm.wala.cast.js.rhino.test/META-INF/MANIFEST.MF index 8b7eefa49..fafb4a8da 100644 --- a/com.ibm.wala.cast.js.rhino.test/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.js.rhino.test/META-INF/MANIFEST.MF @@ -5,16 +5,14 @@ Bundle-SymbolicName: com.ibm.wala.cast.js.rhino.test Bundle-Version: 1.0.0 Bundle-Activator: com.ibm.wala.cast.js.rhino.test.Activator Bundle-Vendor: IBM -Require-Bundle: org.eclipse.core.runtime, - com.ibm.wala.cast.js.rhino;bundle-version="1.0.0", +Require-Bundle: com.ibm.wala.cast.js.rhino;bundle-version="1.0.0", com.ibm.wala.cast.js;bundle-version="1.0.0", com.ibm.wala.cast;bundle-version="1.0.0", com.ibm.wala.core;bundle-version="1.1.3", com.ibm.wala.cast.js.test;bundle-version="1.0.0", com.ibm.wala.cast.test;bundle-version="1.0.0", com.ibm.wala.core.tests;bundle-version="1.1.3", - org.junit4;bundle-version="4.3.1", - com.ibm.wala.ide;bundle-version="1.1.3" + org.junit4;bundle-version="4.3.1" Bundle-RequiredExecutionEnvironment: J2SE-1.5 Bundle-ActivationPolicy: lazy Export-Package: com.ibm.wala.cast.js.test diff --git a/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/Activator.java b/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/Activator.java deleted file mode 100644 index 6a6a84586..000000000 --- a/com.ibm.wala.cast.js.rhino.test/harness-src/com/ibm/wala/cast/js/rhino/test/Activator.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.ibm.wala.cast.js.rhino.test; - -import org.eclipse.core.runtime.Plugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends Plugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.ibm.wala.cast.js.rhino.test"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (non-Javadoc) - * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext context) throws Exception { - super.start(context); - plugin = this; - } - - /* - * (non-Javadoc) - * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) - */ - public void stop(BundleContext context) throws Exception { - plugin = null; - super.stop(context); - } - - /** - * Returns the shared instance - * - * @return the shared instance - */ - public static Activator getDefault() { - return plugin; - } - -} diff --git a/com.ibm.wala.cast.js.rhino/META-INF/MANIFEST.MF b/com.ibm.wala.cast.js.rhino/META-INF/MANIFEST.MF index 947ffa5fb..e8a05aa15 100644 --- a/com.ibm.wala.cast.js.rhino/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.js.rhino/META-INF/MANIFEST.MF @@ -3,10 +3,8 @@ Bundle-ManifestVersion: 2 Bundle-Name: Rhino Plug-in Bundle-SymbolicName: com.ibm.wala.cast.js.rhino Bundle-Version: 1.0.0 -Bundle-Activator: com.ibm.wala.js.rhino.Activator Bundle-Vendor: IBM -Require-Bundle: org.eclipse.core.runtime, - com.ibm.wala.cast;bundle-version="1.0.0", +Require-Bundle: com.ibm.wala.cast;bundle-version="1.0.0", com.ibm.wala.cast.js;bundle-version="1.0.0", com.ibm.wala.core;bundle-version="1.1.3" Bundle-RequiredExecutionEnvironment: J2SE-1.5 diff --git a/com.ibm.wala.cast.js.rhino/source/com/ibm/wala/js/rhino/Activator.java b/com.ibm.wala.cast.js.rhino/source/com/ibm/wala/js/rhino/Activator.java deleted file mode 100644 index 8ebda5869..000000000 --- a/com.ibm.wala.cast.js.rhino/source/com/ibm/wala/js/rhino/Activator.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.ibm.wala.js.rhino; - -import org.eclipse.core.runtime.Plugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends Plugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.ibm.wala.js.rhino"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (non-Javadoc) - * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext context) throws Exception { - super.start(context); - plugin = this; - } - - /* - * (non-Javadoc) - * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) - */ - public void stop(BundleContext context) throws Exception { - plugin = null; - super.stop(context); - } - - /** - * Returns the shared instance - * - * @return the shared instance - */ - public static Activator getDefault() { - return plugin; - } - -} diff --git a/com.ibm.wala.cast.js.test.data/.project b/com.ibm.wala.cast.js.test.data/.project new file mode 100644 index 000000000..1c3abaf49 --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/.project @@ -0,0 +1,28 @@ + + + com.ibm.wala.cast.js.test.data + + + + + + org.eclipse.wst.jsdt.core.javascriptValidator + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.wst.jsdt.core.jsNature + org.eclipse.pde.PluginNature + + diff --git a/com.ibm.wala.cast.js.test.data/.settings/.jsdtscope b/com.ibm.wala.cast.js.test.data/.settings/.jsdtscope new file mode 100644 index 000000000..29f5d7d4d --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/.settings/.jsdtscope @@ -0,0 +1,5 @@ + + + + + diff --git a/com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.container b/com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.container new file mode 100644 index 000000000..3bd5d0a48 --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.container @@ -0,0 +1 @@ +org.eclipse.wst.jsdt.launching.baseBrowserLibrary \ No newline at end of file diff --git a/com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.name b/com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.name new file mode 100644 index 000000000..05bd71b6e --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/.settings/org.eclipse.wst.jsdt.ui.superType.name @@ -0,0 +1 @@ +Window \ No newline at end of file diff --git a/com.ibm.wala.cast.js.test.data/META-INF/MANIFEST.MF b/com.ibm.wala.cast.js.test.data/META-INF/MANIFEST.MF new file mode 100644 index 000000000..6c428a510 --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/META-INF/MANIFEST.MF @@ -0,0 +1,7 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Data +Bundle-SymbolicName: com.ibm.wala.cast.js.test.data;singleton:=true +Bundle-Version: 1.0.0.qualifier +Bundle-ClassPath: examples-src/ +Bundle-ActivationPolicy: lazy diff --git a/com.ibm.wala.cast.js.test.data/build.properties b/com.ibm.wala.cast.js.test.data/build.properties new file mode 100644 index 000000000..d490782f0 --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/build.properties @@ -0,0 +1,2 @@ +bin.includes = META-INF/,\ + examples-src/ diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/jquery.html b/com.ibm.wala.cast.js.test.data/examples-src/jquery.js old mode 100755 new mode 100644 similarity index 93% rename from com.ibm.wala.cast.js.test/examples-src/pages/jquery.html rename to com.ibm.wala.cast.js.test.data/examples-src/jquery.js index 2bae2851f..71f4896fe --- a/com.ibm.wala.cast.js.test/examples-src/pages/jquery.html +++ b/com.ibm.wala.cast.js.test.data/examples-src/jquery.js @@ -1,263 +1,258 @@ - - - - - Untitled Document - - +/** + * + */ + +(function top () { + var c = n.jQuery = n.$ = function dollar (a, d) { + return new c.fn.init(a, d); + } + c.fn = c.prototype = { + init: function init (a, d) { + a = a || document; + if (a.nodeType) { + this[0] = a; + this.length = 1; + this.context = a; + return this + } + if (typeof a === "string") { + var f = r.exec(a); + if (f && (f[1] || !d)) if (f[1]) a = c.clean([f[1]], d); + else { + if ((d = document.getElementById(f[3])) && d.id != f[3]) return c().find(a); + f = c(d || []); + f.context = document; + f.selector = a; + return f + } else return c(d).find(a) + } else if (c.isFunction(a)) return c(document).ready(a); + if (a.selector && a.context) { + this.selector = + a.selector; + this.context = a.context + } + return this.setArray(c.isArray(a) ? a : c.makeArray(a)) + } + + }; + c.extend = c.fn.extend = function extend () { + var a = + arguments[0] || {}, + d = 1, + f = arguments.length, + j = false, + q; + if (typeof a === "boolean") { + j = a; + a = arguments[1] || {}; + d = 2 + } + if (typeof a !== "object" && !c.isFunction(a)) a = {}; + if (f == d) { + a = this; + --d + } + for (; d < f; d++) if ((q = arguments[d]) != null) for (var t in q) { + var y = a[t], + A = q[t]; + if (a !== A) if (j && A && typeof A === "object" && !A.nodeType) a[t] = c.extend(j, y || (A.length != null ? [] : {}), A); + else if (A !== void 0) a[t] = A + } + return a + }; + c.extend({ + noConflict: function noConflict (a) { + n.$ = + B; + if (a) n.jQuery = w; + return c + }, + isFunction: 2, + each: function each (a, d, f) { + var j, q = 0, + t = a.length; + if (f) if (t === void 0) for (j in a) { + if (d.apply(a[j], f) === false) break; + } else for (; q < t;) { + if (d.apply(a[q++], f) === false) break; + } else if (t === void 0) for (j in a) { + if (d.call(a[j], j, a[j]) === false) break; + } else for (f = a[0]; q < t && d.call(f, q, f) !== false; f = a[++q]); + return a + }, + className: { + add: function add (a, d) { + c.each((d || "").split(/\s+/), function (f, j) { + if (a.nodeType == 1 && !c.className.has(a.className, j)) a.className += (a.className ? " " : "") + j + }) + }, + remove: function remove (a, d) { + if (a.nodeType == 1) a.className = d !== void 0 ? c.grep(a.className.split(/\s+/), function (f) { + return !c.className.has(d, f) + }).join(" ") : "" + }, + has: function has (a, d) { + return a && c.inArray(d, (a.className || a).toString().split(/\s+/)) > -1 + } + }, + swap: function swap (a, d, f) { + var j = {}; + for (var q in d) { + j[q] = a.style[q]; + a.style[q] = d[q] + } + f.call(a); + for (q in d) a.style[q] = j[q] + }, + css: function css (a, d, f, j) { + if (d == "width" || d == "height") { + var q; + f = { + position: "absolute", + visibility: "hidden", + display: "block" + }; + var t = d == "width" ? ["Left", "Right"] : ["Top", "Bottom"], + y = function () { + q = d == "width" ? a.offsetWidth : a.offsetHeight; + j !== "border" && c.each(t, function () { + j || (q -= parseFloat(c.curCSS(a, "padding" + this, true)) || 0); + if (j === "margin") q += parseFloat(c.curCSS(a, "margin" + this, true)) || 0; + else q -= parseFloat(c.curCSS(a, "border" + this + "Width", true)) || 0 + }) + }; + a.offsetWidth !== 0 ? y() : c.swap(a, f, y); + return Math.max(0, Math.round(q)) + } + return c.curCSS(a, d, f) + }, + curCSS: function curCSS (a, d, f) { + var j, q = a.style; + if (d == "opacity" && !c.support.opacity) { + j = c.attr(q, "opacity"); + return j == "" ? "1" : j + } + if (d.match(/float/i)) d = W; + if (!f && q && q[d]) j = q[d]; + else if (F.getComputedStyle) { + if (d.match(/float/i)) d = "float"; + d = d.replace(/([A-Z])/g, "-$1").toLowerCase(); + if (a = F.getComputedStyle(a, null)) j = a.getPropertyValue(d); + if (d == "opacity" && j == "") j = "1" + } else if (a.currentStyle) { + j = d.replace(/\-(\w)/g, function (t, y) { + return y.toUpperCase() + }); + j = a.currentStyle[d] || a.currentStyle[j]; + if (!/^\d+(px)?$/i.test(j) && /^\d/.test(j)) { + d = q.left; + f = a.runtimeStyle.left; + a.runtimeStyle.left = a.currentStyle.left; + q.left = j || 0; + j = q.pixelLeft + "px"; + q.left = d; + a.runtimeStyle.left = f + } + } + return j + }, + clean: function clean (a, d, f) { + d = d || document; + if (typeof d.createElement === "undefined") d = d.ownerDocument || d[0] && d[0].ownerDocument || document; + if (!f && a.length === 1 && typeof a[0] === "string") { + var j = /^<(\w+)\s*\/?>$/.exec(a[0]); + if (j) return [d.createElement(j[1])] + } + c.each(a, function (y, A) { + if (typeof A === "number") A += ""; + if (A) { + if (typeof A === "string") { + A = A.replace(/(<(\w+)[^>]*?)\/>/g, function (M, Q, S) { + return S.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ? M : Q + ">" + }); + y = A.replace(/^\s+/, "").substring(0, 10).toLowerCase(); + var L = !y.indexOf("", ""] || !y.indexOf("", ""] || y.match(/^<(thead|tbody|tfoot|colg|cap)/) && [1, "", "
"] || !y.indexOf("", ""] || (!y.indexOf("", ""] || !y.indexOf("", ""] || !c.support.htmlSerialize && [1, "div
", "
"] || [0, "", ""]; + for (t.innerHTML = L[1] + A + L[2]; L[0]--;) t = t.lastChild; + if (!c.support.tbody) { + var N = /" && !N ? t.childNodes : []; + for (L = y.length - 1; L >= 0; --L) c.nodeName(y[L], "tbody") && !y[L].childNodes.length && y[L].parentNode.removeChild(y[L]) + }!c.support.leadingWhitespace && /^\s/.test(A) && t.insertBefore(d.createTextNode(A.match(/^\s*/)[0]), t.firstChild); + A = c.makeArray(t.childNodes) + } + if (A.nodeType) q.push(A); + else q = c.merge(q, A) + } + }); + if (f) { + for (a = 0; q[a]; a++) if (c.nodeName(q[a], "script") && (!q[a].type || q[a].type.toLowerCase() === "text/javascript")) j.push(q[a].parentNode ? q[a].parentNode.removeChild(q[a]) : q[a]); + else { + q[a].nodeType === 1 && q.splice.apply(q, [a + 1, 0].concat(c.makeArray(q[a].getElementsByTagName("script")))); + f.appendChild(q[a]) + } + return j + } + return q + }, + attr: function attr (a, d, f) { + if (!(!a || a.nodeType == 3 || a.nodeType == 8)) { + var j = !c.isXMLDoc(a), + q = f !== void 0; + d = j && c.props[d] || d; + if (a.tagName) { + var t = /href|src|style/.test(d); + if (d in a && j && !t) { + if (q) { + if (d == "type" && c.nodeName(a, "input") && a.parentNode) throw "type property can't be changed"; + a[d] = f + } + if (c.nodeName(a, "form") && a.getAttributeNode(d)) return a.getAttributeNode(d).nodeValue; + if (d == "tabIndex") return (d = a.getAttributeNode("tabIndex")) && d.specified ? d.value : a.nodeName.match(/(button|input|object|select|textarea)/i) ? 0 : a.nodeName.match(/^(a|area)$/i) && a.href ? 0 : void 0; + return a[d] + } + if (!c.support.style && j && d == "style") return c.attr(a.style, "cssText", f); + q && a.setAttribute(d, "" + f); + a = !c.support.hrefNormalized && j && t ? a.getAttribute(d, 2) : a.getAttribute(d); + return a === null ? void 0 : a + } + if (!c.support.opacity && d == "opacity") { + if (q) { + a.zoom = 1; + a.filter = (a.filter || "").replace(/alpha\([^)]*\)/, "") + (parseInt(f) + "" == "NaN" ? "" : "alpha(opacity=" + f * 100 + ")") + } + return a.filter && a.filter.indexOf("opacity=") >= 0 ? parseFloat(a.filter.match(/opacity=([^)]*)/)[1]) / 100 + "" : "" + } + d = d.replace(/-([a-z])/ig, function (y, A) { + return A.toUpperCase() + }); + if (q) a[d] = f; + return a[d] + } + }, + makeArray: function makeArray (a) { + var d = []; + if (a != null) { + var f = a.length; + if (f == null || typeof a === "string" || c.isFunction(a) || a.setInterval) d[0] = a; + else for (; f;) d[--f] = a[f] + } + return d + }, + inArray: function inArray (a, d) { + for (var f = 0, j = d.length; f < j; f++) if (d[f] === a) return f; + return -1 + }, + merge: function merge (a, d) { + var f = 0, + j, q = a.length; + if (c.support.getAll) for (; + (j = d[f++]) != null;) a[q++] = j; + else for (; + (j = + d[f++]) != null;) if (j.nodeType != 8) a[q++] = j; + return a + } + + }); + +})(); \ No newline at end of file diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/2.js b/com.ibm.wala.cast.js.test.data/examples-src/pages/2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/2.js rename to com.ibm.wala.cast.js.test.data/examples-src/pages/2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/apollo-example.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/apollo-example.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/apollo-example.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/apollo-example.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/collection.js b/com.ibm.wala.cast.js.test.data/examples-src/pages/collection.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/collection.js rename to com.ibm.wala.cast.js.test.data/examples-src/pages/collection.js diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/15.js b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/15.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/15.js rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/15.js diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/16.js b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/16.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/16.js rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/16.js diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/17.js b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/17.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/17.js rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/17.js diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/page11.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page11.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/page11.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page11.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/page11b.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page11b.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/page11b.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page11b.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/page12.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page12.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/page12.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page12.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/page13.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page13.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/page13.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page13.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/page15.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page15.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/page15.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page15.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/page16.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page16.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/page16.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page16.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/crawl/page17.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page17.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/crawl/page17.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/crawl/page17.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/iframeTest2.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/iframeTest2.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/iframeTest2.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/iframeTest2.html diff --git a/com.ibm.wala.cast.js.test.data/examples-src/pages/jquery.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/jquery.html new file mode 100755 index 000000000..afb045a8d --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/examples-src/pages/jquery.html @@ -0,0 +1,8 @@ + + + + + Untitled Document + + diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/jquery/ex1.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/jquery/ex1.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/jquery/ex1.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/jquery/ex1.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/jquery_hacked.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/jquery_hacked.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/jquery_hacked.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/jquery_hacked.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/list.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/list.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/list.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/list.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/nojs.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/nojs.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/nojs.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/nojs.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/page1.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/page1.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/page1.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/page1.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/page2.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/page2.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/page2.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/page2.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/page3.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/page3.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/page3.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/page3.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/page4.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/page4.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/page4.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/page4.html diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/windowx.html b/com.ibm.wala.cast.js.test.data/examples-src/pages/windowx.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/pages/windowx.html rename to com.ibm.wala.cast.js.test.data/examples-src/pages/windowx.html diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/214631.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/214631.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/214631.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/214631.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/Function_is_a_function.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/Function_is_a_function.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/Function_is_a_function.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/Function_is_a_function.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/args.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/args.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/args.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/args.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/arguments.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/arguments.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/arguments.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/arguments.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/badforin.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/badforin.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/badforin.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/badforin.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/badforin2.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/badforin2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/badforin2.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/badforin2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/badforin3.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/badforin3.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/badforin3.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/badforin3.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/calls.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/calls.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/calls.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/calls.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/complex_call.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/complex_call.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/complex_call.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/complex_call.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/control-flow.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/control-flow.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/control-flow.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/control-flow.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/crash1.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/crash1.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/crash1.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/crash1.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/crash2.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/crash2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/crash2.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/crash2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/dead_phi.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/dead_phi.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/dead_phi.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/dead_phi.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/dispatch.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/dispatch.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/dispatch.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/dispatch.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/extjs_switch.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/extjs_switch.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/extjs_switch.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/extjs_switch.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/forin.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/forin.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/forin.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/forin.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/function_apply.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/function_apply.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/function_apply.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/function_apply.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/function_apply2.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/function_apply2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/function_apply2.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/function_apply2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/function_call.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/function_call.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/function_call.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/function_call.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/functions.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/functions.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/functions.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/functions.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/global_object.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/global_object.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/global_object.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/global_object.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/global_object2.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/global_object2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/global_object2.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/global_object2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/inherit.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/inherit.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/inherit.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/inherit.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/instanceof.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/instanceof.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/instanceof.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/instanceof.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/jquery_spec_test.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/jquery_spec_test.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/jquery_spec_test.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/jquery_spec_test.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/lexical-ctor.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/lexical-ctor.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/lexical-ctor.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/lexical-ctor.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/lexical_broken.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/lexical_broken.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/lexical_broken.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/lexical_broken.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/lexical_multiple_calls.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/lexical_multiple_calls.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/lexical_multiple_calls.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/lexical_multiple_calls.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/more-control-flow.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/more-control-flow.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/more-control-flow.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/more-control-flow.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/multivar.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/multivar.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/multivar.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/multivar.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/nested.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/nested.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/nested.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/nested.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/nested_assign_to_param.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/nested_assign_to_param.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/nested_assign_to_param.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/nested_assign_to_param.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/newfn.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/newfn.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/newfn.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/newfn.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/objects.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/objects.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/objects.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/objects.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/place_phi_npe.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/place_phi_npe.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/place_phi_npe.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/place_phi_npe.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/portal-example-simple.html b/com.ibm.wala.cast.js.test.data/examples-src/tests/portal-example-simple.html similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/portal-example-simple.html rename to com.ibm.wala.cast.js.test.data/examples-src/tests/portal-example-simple.html diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/prototype_contamination_bug.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/prototype_contamination_bug.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/prototype_contamination_bug.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/prototype_contamination_bug.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/recursive_lexical.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/recursive_lexical.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/recursive_lexical.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/recursive_lexical.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/repr.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/repr.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/repr.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/repr.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/return_this.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/return_this.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/return_this.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/return_this.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/return_this2.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/return_this2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/return_this2.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/return_this2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/rewrite_does_not_change_lables_bug.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/rewrite_does_not_change_lables_bug.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/rewrite_does_not_change_lables_bug.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/rewrite_does_not_change_lables_bug.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/rhino_crash1.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/rhino_crash1.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/rhino_crash1.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/rhino_crash1.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/rhino_crash2.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/rhino_crash2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/rhino_crash2.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/rhino_crash2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/rhino_crash3.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/rhino_crash3.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/rhino_crash3.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/rhino_crash3.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/scoping_test.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/scoping_test.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/scoping_test.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/scoping_test.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/simple-lexical.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/simple-lexical.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/simple-lexical.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/simple-lexical.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/simple.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/simple.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/simple.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/simple.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/simpler.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/simpler.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/simpler.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/simpler.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/stack_overflow_on_ssa_conversion.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/stack_overflow_on_ssa_conversion.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/stack_overflow_on_ssa_conversion.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/stack_overflow_on_ssa_conversion.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/string-op.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/string-op.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/string-op.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/string-op.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/string-prims.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/string-prims.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/string-prims.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/string-prims.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/try.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/try.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/try.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/try.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/upward.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/upward.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/upward.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/upward.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/with.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/with.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/with.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/with.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/wrap1.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/wrap1.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/wrap1.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/wrap1.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/wrap2.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/wrap2.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/wrap2.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/wrap2.js diff --git a/com.ibm.wala.cast.js.test/examples-src/tests/wrap3.js b/com.ibm.wala.cast.js.test.data/examples-src/tests/wrap3.js similarity index 100% rename from com.ibm.wala.cast.js.test/examples-src/tests/wrap3.js rename to com.ibm.wala.cast.js.test.data/examples-src/tests/wrap3.js diff --git a/com.ibm.wala.cast.js.test/.classpath b/com.ibm.wala.cast.js.test/.classpath index b11eaff9a..5460b9ab1 100755 --- a/com.ibm.wala.cast.js.test/.classpath +++ b/com.ibm.wala.cast.js.test/.classpath @@ -1,8 +1,8 @@ - - - + + + diff --git a/com.ibm.wala.cast.js.test/META-INF/MANIFEST.MF b/com.ibm.wala.cast.js.test/META-INF/MANIFEST.MF index 87b3b989c..5c5bc1b79 100755 --- a/com.ibm.wala.cast.js.test/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.js.test/META-INF/MANIFEST.MF @@ -9,10 +9,11 @@ Bundle-Vendor: IBM Require-Bundle: com.ibm.wala.cast.js, com.ibm.wala.cast, com.ibm.wala.core, + com.ibm.wala.cast.js.test.data;bundle-version="1.0.0", + com.ibm.wala.cast.test;bundle-version="1.0.0", org.eclipse.core.runtime, com.ibm.wala.core.tests, - org.junit4;bundle-version="4.3.1", - com.ibm.wala.cast.test;bundle-version="1.0.0" + org.junit4;bundle-version="4.3.1" Bundle-ActivationPolicy: lazy Export-Package: com.ibm.wala.cast.js.test Bundle-RequiredExecutionEnvironment: J2SE-1.5 diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/Makefile.in b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/Makefile.in deleted file mode 100755 index a67103f5a..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/Makefile.in +++ /dev/null @@ -1,134 +0,0 @@ -# -# ***** BEGIN LICENSE BLOCK ***** -# Version: MPL 1.1/GPL 2.0/LGPL 2.1 -# -# The contents of this file are subject to the Mozilla Public License Version -# 1.1 (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# http://www.mozilla.org/MPL/ -# -# Software distributed under the License is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -# for the specific language governing rights and limitations under the -# License. -# -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# -# Alternatively, the contents of this file may be used under the terms of -# either the GNU General Public License Version 2 or later (the "GPL"), or -# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -# in which case the provisions of the GPL or the LGPL are applicable instead -# of those above. If you wish to allow use of your version of this file only -# under the terms of either the GPL or the LGPL, and not to allow others to -# use your version of this file under the terms of the MPL, indicate your -# decision by deleting the provisions above and replace them with the notice -# and other provisions required by the GPL or the LGPL. If you do not delete -# the provisions above, a recipient may use your version of this file under -# the terms of any one of the MPL, the GPL or the LGPL. -# -# ***** END LICENSE BLOCK ***** - -DEPTH = ../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ -relativesrcdir = testing/mochitest - -include $(DEPTH)/config/autoconf.mk - -DIRS = MochiKit \ - static \ - tests \ - chrome \ - ssltunnel \ - $(NULL) - -include $(topsrcdir)/config/rules.mk - -# files that get copied into $objdir/_tests/ -_SERV_FILES = \ - runtests.pl \ - runtests.py \ - automation.py \ - gen_template.pl \ - server.js \ - harness-a11y.xul \ - harness-overlay.xul \ - harness.xul \ - browser-test-overlay.xul \ - browser-test.js \ - browser-harness.xul \ - redirect-a11y.html \ - redirect.html \ - redirect.js \ - $(topsrcdir)/netwerk/test/httpserver/httpd.js \ - $(NULL) - - -_DEST_DIR = $(DEPTH)/_tests/$(relativesrcdir) - -ifeq ($(USE_SHORT_LIBNAME), 1) -PROGRAM = $(MOZ_APP_NAME)$(BIN_SUFFIX) -else -PROGRAM = $(MOZ_APP_NAME)-bin$(BIN_SUFFIX) -endif - -ifeq ($(MOZ_BUILD_APP),camino) -browser_path = \"../$(DIST)/Camino.app/Contents/MacOS/Camino\" -else -ifeq ($(OS_ARCH),Darwin) -ifdef MOZ_DEBUG -browser_path = \"../$(DIST)/$(MOZ_APP_DISPLAYNAME)Debug.app/Contents/MacOS/$(PROGRAM)\" -else -browser_path = \"../$(DIST)/$(MOZ_APP_DISPLAYNAME).app/Contents/MacOS/$(PROGRAM)\" -endif -else -browser_path = \"../$(DIST)/bin/$(PROGRAM)\" -endif -endif - -# These go in _tests/ so they need to go up an extra path segement -TEST_DRIVER_PPARGS = \ - -DBROWSER_PATH=$(browser_path) \ - -DXPC_BIN_PATH=\"../$(DIST)/bin\" \ - $(NULL) - -ifeq ($(OS_ARCH),Darwin) -TEST_DRIVER_PPARGS += -DIS_MAC=1 -else -TEST_DRIVER_PPARGS += -DIS_MAC=0 -endif - -ifeq ($(MOZ_BUILD_APP),camino) -TEST_DRIVER_PPARGS += -DIS_CAMINO=1 -else -TEST_DRIVER_PPARGS += -DIS_CAMINO=0 -endif - -ifeq ($(host_os), cygwin) -TEST_DRIVER_PPARGS += -DIS_CYGWIN=1 -endif - -runtests.pl: runtests.pl.in - $(PYTHON) $(topsrcdir)/config/Preprocessor.py \ - $(TEST_DRIVER_PPARGS) $(DEFINES) $(ACDEFINES) $^ > $@ - -runtests.py: runtests.py.in - $(PYTHON) $(topsrcdir)/config/Preprocessor.py \ - $(TEST_DRIVER_PPARGS) $(DEFINES) $(ACDEFINES) $^ > $@ - -automation.py: $(topsrcdir)/build/pgo/automation.py.in - $(PYTHON) $(topsrcdir)/config/Preprocessor.py \ - $(TEST_DRIVER_PPARGS) $(DEFINES) $(ACDEFINES) $^ > $@ - -GARBAGE += runtests.pl runtests.py automation.py - -libs:: $(_SERV_FILES) - $(INSTALL) $^ $(_DEST_DIR) diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Async.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Async.js deleted file mode 100755 index 8ffaad259..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Async.js +++ /dev/null @@ -1,681 +0,0 @@ -/*** - -MochiKit.Async 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide("MochiKit.Async"); - dojo.require("MochiKit.Base"); -} -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Async depends on MochiKit.Base!"; -} - -if (typeof(MochiKit.Async) == 'undefined') { - MochiKit.Async = {}; -} - -MochiKit.Async.NAME = "MochiKit.Async"; -MochiKit.Async.VERSION = "1.4"; -MochiKit.Async.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; -MochiKit.Async.toString = function () { - return this.__repr__(); -}; - -/** @id MochiKit.Async.Deferred */ -MochiKit.Async.Deferred = function (/* optional */ canceller) { - this.chain = []; - this.id = this._nextId(); - this.fired = -1; - this.paused = 0; - this.results = [null, null]; - this.canceller = canceller; - this.silentlyCancelled = false; - this.chained = false; -}; - -MochiKit.Async.Deferred.prototype = { - /** @id MochiKit.Async.Deferred.prototype.repr */ - repr: function () { - var state; - if (this.fired == -1) { - state = 'unfired'; - } else if (this.fired === 0) { - state = 'success'; - } else { - state = 'error'; - } - return 'Deferred(' + this.id + ', ' + state + ')'; - }, - - toString: MochiKit.Base.forwardCall("repr"), - - _nextId: MochiKit.Base.counter(), - - /** @id MochiKit.Async.Deferred.prototype.cancel */ - cancel: function () { - var self = MochiKit.Async; - if (this.fired == -1) { - if (this.canceller) { - this.canceller(this); - } else { - this.silentlyCancelled = true; - } - if (this.fired == -1) { - this.errback(new self.CancelledError(this)); - } - } else if ((this.fired === 0) && (this.results[0] instanceof self.Deferred)) { - this.results[0].cancel(); - } - }, - - _resback: function (res) { - /*** - - The primitive that means either callback or errback - - ***/ - this.fired = ((res instanceof Error) ? 1 : 0); - this.results[this.fired] = res; - this._fire(); - }, - - _check: function () { - if (this.fired != -1) { - if (!this.silentlyCancelled) { - throw new MochiKit.Async.AlreadyCalledError(this); - } - this.silentlyCancelled = false; - return; - } - }, - - /** @id MochiKit.Async.Deferred.prototype.callback */ - callback: function (res) { - this._check(); - if (res instanceof MochiKit.Async.Deferred) { - throw new Error("Deferred instances can only be chained if they are the result of a callback"); - } - this._resback(res); - }, - - /** @id MochiKit.Async.Deferred.prototype.errback */ - errback: function (res) { - this._check(); - var self = MochiKit.Async; - if (res instanceof self.Deferred) { - throw new Error("Deferred instances can only be chained if they are the result of a callback"); - } - if (!(res instanceof Error)) { - res = new self.GenericError(res); - } - this._resback(res); - }, - - /** @id MochiKit.Async.Deferred.prototype.addBoth */ - addBoth: function (fn) { - if (arguments.length > 1) { - fn = MochiKit.Base.partial.apply(null, arguments); - } - return this.addCallbacks(fn, fn); - }, - - /** @id MochiKit.Async.Deferred.prototype.addCallback */ - addCallback: function (fn) { - if (arguments.length > 1) { - fn = MochiKit.Base.partial.apply(null, arguments); - } - return this.addCallbacks(fn, null); - }, - - /** @id MochiKit.Async.Deferred.prototype.addErrback */ - addErrback: function (fn) { - if (arguments.length > 1) { - fn = MochiKit.Base.partial.apply(null, arguments); - } - return this.addCallbacks(null, fn); - }, - - /** @id MochiKit.Async.Deferred.prototype.addCallbacks */ - addCallbacks: function (cb, eb) { - if (this.chained) { - throw new Error("Chained Deferreds can not be re-used"); - } - this.chain.push([cb, eb]); - if (this.fired >= 0) { - this._fire(); - } - return this; - }, - - _fire: function () { - /*** - - Used internally to exhaust the callback sequence when a result - is available. - - ***/ - var chain = this.chain; - var fired = this.fired; - var res = this.results[fired]; - var self = this; - var cb = null; - while (chain.length > 0 && this.paused === 0) { - // Array - var pair = chain.shift(); - var f = pair[fired]; - if (f === null) { - continue; - } - try { - res = f(res); - fired = ((res instanceof Error) ? 1 : 0); - if (res instanceof MochiKit.Async.Deferred) { - cb = function (res) { - self._resback(res); - self.paused--; - if ((self.paused === 0) && (self.fired >= 0)) { - self._fire(); - } - }; - this.paused++; - } - } catch (err) { - fired = 1; - if (!(err instanceof Error)) { - err = new MochiKit.Async.GenericError(err); - } - res = err; - } - } - this.fired = fired; - this.results[fired] = res; - if (cb && this.paused) { - // this is for "tail recursion" in case the dependent deferred - // is already fired - res.addBoth(cb); - res.chained = true; - } - } -}; - -MochiKit.Base.update(MochiKit.Async, { - /** @id MochiKit.Async.evalJSONRequest */ - evalJSONRequest: function (/* req */) { - return eval('(' + arguments[0].responseText + ')'); - }, - - /** @id MochiKit.Async.succeed */ - succeed: function (/* optional */result) { - var d = new MochiKit.Async.Deferred(); - d.callback.apply(d, arguments); - return d; - }, - - /** @id MochiKit.Async.fail */ - fail: function (/* optional */result) { - var d = new MochiKit.Async.Deferred(); - d.errback.apply(d, arguments); - return d; - }, - - /** @id MochiKit.Async.getXMLHttpRequest */ - getXMLHttpRequest: function () { - var self = arguments.callee; - if (!self.XMLHttpRequest) { - var tryThese = [ - function () { return new XMLHttpRequest(); }, - function () { return new ActiveXObject('Msxml2.XMLHTTP'); }, - function () { return new ActiveXObject('Microsoft.XMLHTTP'); }, - function () { return new ActiveXObject('Msxml2.XMLHTTP.4.0'); }, - function () { - throw new MochiKit.Async.BrowserComplianceError("Browser does not support XMLHttpRequest"); - } - ]; - for (var i = 0; i < tryThese.length; i++) { - var func = tryThese[i]; - try { - self.XMLHttpRequest = func; - return func(); - } catch (e) { - // pass - } - } - } - return self.XMLHttpRequest(); - }, - - _xhr_onreadystatechange: function (d) { - // MochiKit.Logging.logDebug('this.readyState', this.readyState); - var m = MochiKit.Base; - if (this.readyState == 4) { - // IE SUCKS - try { - this.onreadystatechange = null; - } catch (e) { - try { - this.onreadystatechange = m.noop; - } catch (e) { - } - } - var status = null; - try { - status = this.status; - if (!status && m.isNotEmpty(this.responseText)) { - // 0 or undefined seems to mean cached or local - status = 304; - } - } catch (e) { - // pass - // MochiKit.Logging.logDebug('error getting status?', repr(items(e))); - } - // 200 is OK, 304 is NOT_MODIFIED - if (status == 200 || status == 304) { // OK - d.callback(this); - } else { - var err = new MochiKit.Async.XMLHttpRequestError(this, "Request failed"); - if (err.number) { - // XXX: This seems to happen on page change - d.errback(err); - } else { - // XXX: this seems to happen when the server is unreachable - d.errback(err); - } - } - } - }, - - _xhr_canceller: function (req) { - // IE SUCKS - try { - req.onreadystatechange = null; - } catch (e) { - try { - req.onreadystatechange = MochiKit.Base.noop; - } catch (e) { - } - } - req.abort(); - }, - - - /** @id MochiKit.Async.sendXMLHttpRequest */ - sendXMLHttpRequest: function (req, /* optional */ sendContent) { - if (typeof(sendContent) == "undefined" || sendContent === null) { - sendContent = ""; - } - - var m = MochiKit.Base; - var self = MochiKit.Async; - var d = new self.Deferred(m.partial(self._xhr_canceller, req)); - - try { - req.onreadystatechange = m.bind(self._xhr_onreadystatechange, - req, d); - req.send(sendContent); - } catch (e) { - try { - req.onreadystatechange = null; - } catch (ignore) { - // pass - } - d.errback(e); - } - - return d; - - }, - - /** @id MochiKit.Async.doXHR */ - doXHR: function (url, opts) { - var m = MochiKit.Base; - opts = m.update({ - method: 'GET', - sendContent: '' - /* - queryString: undefined, - username: undefined, - password: undefined, - headers: undefined, - mimeType: undefined - */ - }, opts); - var self = MochiKit.Async; - var req = self.getXMLHttpRequest(); - if (opts.queryString) { - var qs = m.queryString(opts.queryString); - if (qs) { - url += "?" + qs; - } - } - req.open(opts.method, url, true, opts.username, opts.password); - if (req.overrideMimeType && opts.mimeType) { - req.overrideMimeType(opts.mimeType); - } - if (opts.headers) { - var headers = opts.headers; - if (!m.isArrayLike(headers)) { - headers = m.items(headers); - } - for (var i = 0; i < headers.length; i++) { - var header = headers[i]; - var name = header[0]; - var value = header[1]; - req.setRequestHeader(name, value); - } - } - return self.sendXMLHttpRequest(req, opts.sendContent); - }, - - _buildURL: function (url/*, ...*/) { - if (arguments.length > 1) { - var m = MochiKit.Base; - var qs = m.queryString.apply(null, m.extend(null, arguments, 1)); - if (qs) { - return url + "?" + qs; - } - } - return url; - }, - - /** @id MochiKit.Async.doSimpleXMLHttpRequest */ - doSimpleXMLHttpRequest: function (url/*, ...*/) { - var self = MochiKit.Async; - url = self._buildURL.apply(self, arguments); - return self.doXHR(url); - }, - - /** @id MochiKit.Async.loadJSONDoc */ - loadJSONDoc: function (url/*, ...*/) { - var self = MochiKit.Async; - url = self._buildURL.apply(self, arguments); - var d = self.doXHR(url, { - 'mimeType': 'text/plain', - 'headers': [['Accept', 'application/json']] - }); - d = d.addCallback(self.evalJSONRequest); - return d; - }, - - /** @id MochiKit.Async.wait */ - wait: function (seconds, /* optional */value) { - var d = new MochiKit.Async.Deferred(); - var m = MochiKit.Base; - if (typeof(value) != 'undefined') { - d.addCallback(function () { return value; }); - } - var timeout = setTimeout( - m.bind("callback", d), - Math.floor(seconds * 1000)); - d.canceller = function () { - try { - clearTimeout(timeout); - } catch (e) { - // pass - } - }; - return d; - }, - - /** @id MochiKit.Async.callLater */ - callLater: function (seconds, func) { - var m = MochiKit.Base; - var pfunc = m.partial.apply(m, m.extend(null, arguments, 1)); - return MochiKit.Async.wait(seconds).addCallback( - function (res) { return pfunc(); } - ); - } -}); - - -/** @id MochiKit.Async.DeferredLock */ -MochiKit.Async.DeferredLock = function () { - this.waiting = []; - this.locked = false; - this.id = this._nextId(); -}; - -MochiKit.Async.DeferredLock.prototype = { - __class__: MochiKit.Async.DeferredLock, - /** @id MochiKit.Async.DeferredLock.prototype.acquire */ - acquire: function () { - var d = new MochiKit.Async.Deferred(); - if (this.locked) { - this.waiting.push(d); - } else { - this.locked = true; - d.callback(this); - } - return d; - }, - /** @id MochiKit.Async.DeferredLock.prototype.release */ - release: function () { - if (!this.locked) { - throw TypeError("Tried to release an unlocked DeferredLock"); - } - this.locked = false; - if (this.waiting.length > 0) { - this.locked = true; - this.waiting.shift().callback(this); - } - }, - _nextId: MochiKit.Base.counter(), - repr: function () { - var state; - if (this.locked) { - state = 'locked, ' + this.waiting.length + ' waiting'; - } else { - state = 'unlocked'; - } - return 'DeferredLock(' + this.id + ', ' + state + ')'; - }, - toString: MochiKit.Base.forwardCall("repr") - -}; - -/** @id MochiKit.Async.DeferredList */ -MochiKit.Async.DeferredList = function (list, /* optional */fireOnOneCallback, fireOnOneErrback, consumeErrors, canceller) { - - // call parent constructor - MochiKit.Async.Deferred.apply(this, [canceller]); - - this.list = list; - var resultList = []; - this.resultList = resultList; - - this.finishedCount = 0; - this.fireOnOneCallback = fireOnOneCallback; - this.fireOnOneErrback = fireOnOneErrback; - this.consumeErrors = consumeErrors; - - var cb = MochiKit.Base.bind(this._cbDeferred, this); - for (var i = 0; i < list.length; i++) { - var d = list[i]; - resultList.push(undefined); - d.addCallback(cb, i, true); - d.addErrback(cb, i, false); - } - - if (list.length === 0 && !fireOnOneCallback) { - this.callback(this.resultList); - } - -}; - -MochiKit.Async.DeferredList.prototype = new MochiKit.Async.Deferred(); - -MochiKit.Async.DeferredList.prototype._cbDeferred = function (index, succeeded, result) { - this.resultList[index] = [succeeded, result]; - this.finishedCount += 1; - if (this.fired == -1) { - if (succeeded && this.fireOnOneCallback) { - this.callback([index, result]); - } else if (!succeeded && this.fireOnOneErrback) { - this.errback(result); - } else if (this.finishedCount == this.list.length) { - this.callback(this.resultList); - } - } - if (!succeeded && this.consumeErrors) { - result = null; - } - return result; -}; - -/** @id MochiKit.Async.gatherResults */ -MochiKit.Async.gatherResults = function (deferredList) { - var d = new MochiKit.Async.DeferredList(deferredList, false, true, false); - d.addCallback(function (results) { - var ret = []; - for (var i = 0; i < results.length; i++) { - ret.push(results[i][1]); - } - return ret; - }); - return d; -}; - -/** @id MochiKit.Async.maybeDeferred */ -MochiKit.Async.maybeDeferred = function (func) { - var self = MochiKit.Async; - var result; - try { - var r = func.apply(null, MochiKit.Base.extend([], arguments, 1)); - if (r instanceof self.Deferred) { - result = r; - } else if (r instanceof Error) { - result = self.fail(r); - } else { - result = self.succeed(r); - } - } catch (e) { - result = self.fail(e); - } - return result; -}; - - -MochiKit.Async.EXPORT = [ - "AlreadyCalledError", - "CancelledError", - "BrowserComplianceError", - "GenericError", - "XMLHttpRequestError", - "Deferred", - "succeed", - "fail", - "getXMLHttpRequest", - "doSimpleXMLHttpRequest", - "loadJSONDoc", - "wait", - "callLater", - "sendXMLHttpRequest", - "DeferredLock", - "DeferredList", - "gatherResults", - "maybeDeferred", - "doXHR" -]; - -MochiKit.Async.EXPORT_OK = [ - "evalJSONRequest" -]; - -MochiKit.Async.__new__ = function () { - var m = MochiKit.Base; - var ne = m.partial(m._newNamedError, this); - - ne("AlreadyCalledError", - /** @id MochiKit.Async.AlreadyCalledError */ - function (deferred) { - /*** - - Raised by the Deferred if callback or errback happens - after it was already fired. - - ***/ - this.deferred = deferred; - } - ); - - ne("CancelledError", - /** @id MochiKit.Async.CancelledError */ - function (deferred) { - /*** - - Raised by the Deferred cancellation mechanism. - - ***/ - this.deferred = deferred; - } - ); - - ne("BrowserComplianceError", - /** @id MochiKit.Async.BrowserComplianceError */ - function (msg) { - /*** - - Raised when the JavaScript runtime is not capable of performing - the given function. Technically, this should really never be - raised because a non-conforming JavaScript runtime probably - isn't going to support exceptions in the first place. - - ***/ - this.message = msg; - } - ); - - ne("GenericError", - /** @id MochiKit.Async.GenericError */ - function (msg) { - this.message = msg; - } - ); - - ne("XMLHttpRequestError", - /** @id MochiKit.Async.XMLHttpRequestError */ - function (req, msg) { - /*** - - Raised when an XMLHttpRequest does not complete for any reason. - - ***/ - this.req = req; - this.message = msg; - try { - // Strange but true that this can raise in some cases. - this.number = req.status; - } catch (e) { - // pass - } - } - ); - - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": m.concat(this.EXPORT, this.EXPORT_OK) - }; - - m.nameFunctions(this); - -}; - -MochiKit.Async.__new__(); - -MochiKit.Base._exportSymbols(this, MochiKit.Async); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Base.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Base.js deleted file mode 100755 index 742fa952e..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Base.js +++ /dev/null @@ -1,1398 +0,0 @@ -/*** - -MochiKit.Base 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide("MochiKit.Base"); -} -if (typeof(MochiKit) == 'undefined') { - MochiKit = {}; -} -if (typeof(MochiKit.Base) == 'undefined') { - MochiKit.Base = {}; -} -if (typeof(MochiKit.__export__) == "undefined") { - MochiKit.__export__ = (MochiKit.__compat__ || - (typeof(JSAN) == 'undefined' && typeof(dojo) == 'undefined') - ); -} - -MochiKit.Base.VERSION = "1.4"; -MochiKit.Base.NAME = "MochiKit.Base"; -/** @id MochiKit.Base.update */ -MochiKit.Base.update = function (self, obj/*, ... */) { - if (self === null) { - self = {}; - } - for (var i = 1; i < arguments.length; i++) { - var o = arguments[i]; - if (typeof(o) != 'undefined' && o !== null) { - for (var k in o) { - self[k] = o[k]; - } - } - } - return self; -}; - -MochiKit.Base.update(MochiKit.Base, { - __repr__: function () { - return "[" + this.NAME + " " + this.VERSION + "]"; - }, - - toString: function () { - return this.__repr__(); - }, - - /** @id MochiKit.Base.camelize */ - camelize: function (selector) { - /* from dojo.style.toCamelCase */ - var arr = selector.split('-'); - var cc = arr[0]; - for (var i = 1; i < arr.length; i++) { - cc += arr[i].charAt(0).toUpperCase() + arr[i].substring(1); - } - return cc; - }, - - /** @id MochiKit.Base.counter */ - counter: function (n/* = 1 */) { - if (arguments.length === 0) { - n = 1; - } - return function () { - return n++; - }; - }, - - /** @id MochiKit.Base.clone */ - clone: function (obj) { - var me = arguments.callee; - if (arguments.length == 1) { - me.prototype = obj; - return new me(); - } - }, - - _flattenArray: function (res, lst) { - for (var i = 0; i < lst.length; i++) { - var o = lst[i]; - if (o instanceof Array) { - arguments.callee(res, o); - } else { - res.push(o); - } - } - return res; - }, - - /** @id MochiKit.Base.flattenArray */ - flattenArray: function (lst) { - return MochiKit.Base._flattenArray([], lst); - }, - - /** @id MochiKit.Base.flattenArguments */ - flattenArguments: function (lst/* ...*/) { - var res = []; - var m = MochiKit.Base; - var args = m.extend(null, arguments); - while (args.length) { - var o = args.shift(); - if (o && typeof(o) == "object" && typeof(o.length) == "number") { - for (var i = o.length - 1; i >= 0; i--) { - args.unshift(o[i]); - } - } else { - res.push(o); - } - } - return res; - }, - - /** @id MochiKit.Base.extend */ - extend: function (self, obj, /* optional */skip) { - // Extend an array with an array-like object starting - // from the skip index - if (!skip) { - skip = 0; - } - if (obj) { - // allow iterable fall-through, but skip the full isArrayLike - // check for speed, this is called often. - var l = obj.length; - if (typeof(l) != 'number' /* !isArrayLike(obj) */) { - if (typeof(MochiKit.Iter) != "undefined") { - obj = MochiKit.Iter.list(obj); - l = obj.length; - } else { - throw new TypeError("Argument not an array-like and MochiKit.Iter not present"); - } - } - if (!self) { - self = []; - } - for (var i = skip; i < l; i++) { - self.push(obj[i]); - } - } - // This mutates, but it's convenient to return because - // it's often used like a constructor when turning some - // ghetto array-like to a real array - return self; - }, - - - /** @id MochiKit.Base.updatetree */ - updatetree: function (self, obj/*, ...*/) { - if (self === null) { - self = {}; - } - for (var i = 1; i < arguments.length; i++) { - var o = arguments[i]; - if (typeof(o) != 'undefined' && o !== null) { - for (var k in o) { - var v = o[k]; - if (typeof(self[k]) == 'object' && typeof(v) == 'object') { - arguments.callee(self[k], v); - } else { - self[k] = v; - } - } - } - } - return self; - }, - - /** @id MochiKit.Base.setdefault */ - setdefault: function (self, obj/*, ...*/) { - if (self === null) { - self = {}; - } - for (var i = 1; i < arguments.length; i++) { - var o = arguments[i]; - for (var k in o) { - if (!(k in self)) { - self[k] = o[k]; - } - } - } - return self; - }, - - /** @id MochiKit.Base.keys */ - keys: function (obj) { - var rval = []; - for (var prop in obj) { - rval.push(prop); - } - return rval; - }, - - /** @id MochiKit.Base.values */ - values: function (obj) { - var rval = []; - for (var prop in obj) { - rval.push(obj[prop]); - } - return rval; - }, - - /** @id MochiKit.Base.items */ - items: function (obj) { - var rval = []; - var e; - for (var prop in obj) { - var v; - try { - v = obj[prop]; - } catch (e) { - continue; - } - rval.push([prop, v]); - } - return rval; - }, - - - _newNamedError: function (module, name, func) { - func.prototype = new MochiKit.Base.NamedError(module.NAME + "." + name); - module[name] = func; - }, - - - /** @id MochiKit.Base.operator */ - operator: { - // unary logic operators - /** @id MochiKit.Base.truth */ - truth: function (a) { return !!a; }, - /** @id MochiKit.Base.lognot */ - lognot: function (a) { return !a; }, - /** @id MochiKit.Base.identity */ - identity: function (a) { return a; }, - - // bitwise unary operators - /** @id MochiKit.Base.not */ - not: function (a) { return ~a; }, - /** @id MochiKit.Base.neg */ - neg: function (a) { return -a; }, - - // binary operators - /** @id MochiKit.Base.add */ - add: function (a, b) { return a + b; }, - /** @id MochiKit.Base.sub */ - sub: function (a, b) { return a - b; }, - /** @id MochiKit.Base.div */ - div: function (a, b) { return a / b; }, - /** @id MochiKit.Base.mod */ - mod: function (a, b) { return a % b; }, - /** @id MochiKit.Base.mul */ - mul: function (a, b) { return a * b; }, - - // bitwise binary operators - /** @id MochiKit.Base.and */ - and: function (a, b) { return a & b; }, - /** @id MochiKit.Base.or */ - or: function (a, b) { return a | b; }, - /** @id MochiKit.Base.xor */ - xor: function (a, b) { return a ^ b; }, - /** @id MochiKit.Base.lshift */ - lshift: function (a, b) { return a << b; }, - /** @id MochiKit.Base.rshift */ - rshift: function (a, b) { return a >> b; }, - /** @id MochiKit.Base.zrshift */ - zrshift: function (a, b) { return a >>> b; }, - - // near-worthless built-in comparators - /** @id MochiKit.Base.eq */ - eq: function (a, b) { return a == b; }, - /** @id MochiKit.Base.ne */ - ne: function (a, b) { return a != b; }, - /** @id MochiKit.Base.gt */ - gt: function (a, b) { return a > b; }, - /** @id MochiKit.Base.ge */ - ge: function (a, b) { return a >= b; }, - /** @id MochiKit.Base.lt */ - lt: function (a, b) { return a < b; }, - /** @id MochiKit.Base.le */ - le: function (a, b) { return a <= b; }, - - // strict built-in comparators - seq: function (a, b) { return a === b; }, - sne: function (a, b) { return a !== b; }, - - // compare comparators - /** @id MochiKit.Base.ceq */ - ceq: function (a, b) { return MochiKit.Base.compare(a, b) === 0; }, - /** @id MochiKit.Base.cne */ - cne: function (a, b) { return MochiKit.Base.compare(a, b) !== 0; }, - /** @id MochiKit.Base.cgt */ - cgt: function (a, b) { return MochiKit.Base.compare(a, b) == 1; }, - /** @id MochiKit.Base.cge */ - cge: function (a, b) { return MochiKit.Base.compare(a, b) != -1; }, - /** @id MochiKit.Base.clt */ - clt: function (a, b) { return MochiKit.Base.compare(a, b) == -1; }, - /** @id MochiKit.Base.cle */ - cle: function (a, b) { return MochiKit.Base.compare(a, b) != 1; }, - - // binary logical operators - /** @id MochiKit.Base.logand */ - logand: function (a, b) { return a && b; }, - /** @id MochiKit.Base.logor */ - logor: function (a, b) { return a || b; }, - /** @id MochiKit.Base.contains */ - contains: function (a, b) { return b in a; } - }, - - /** @id MochiKit.Base.forwardCall */ - forwardCall: function (func) { - return function () { - return this[func].apply(this, arguments); - }; - }, - - /** @id MochiKit.Base.itemgetter */ - itemgetter: function (func) { - return function (arg) { - return arg[func]; - }; - }, - - /** @id MochiKit.Base.typeMatcher */ - typeMatcher: function (/* typ */) { - var types = {}; - for (var i = 0; i < arguments.length; i++) { - var typ = arguments[i]; - types[typ] = typ; - } - return function () { - for (var i = 0; i < arguments.length; i++) { - if (!(typeof(arguments[i]) in types)) { - return false; - } - } - return true; - }; - }, - - /** @id MochiKit.Base.isNull */ - isNull: function (/* ... */) { - for (var i = 0; i < arguments.length; i++) { - if (arguments[i] !== null) { - return false; - } - } - return true; - }, - - /** @id MochiKit.Base.isUndefinedOrNull */ - isUndefinedOrNull: function (/* ... */) { - for (var i = 0; i < arguments.length; i++) { - var o = arguments[i]; - if (!(typeof(o) == 'undefined' || o === null)) { - return false; - } - } - return true; - }, - - /** @id MochiKit.Base.isEmpty */ - isEmpty: function (obj) { - return !MochiKit.Base.isNotEmpty.apply(this, arguments); - }, - - /** @id MochiKit.Base.isNotEmpty */ - isNotEmpty: function (obj) { - for (var i = 0; i < arguments.length; i++) { - var o = arguments[i]; - if (!(o && o.length)) { - return false; - } - } - return true; - }, - - /** @id MochiKit.Base.isArrayLike */ - isArrayLike: function () { - for (var i = 0; i < arguments.length; i++) { - var o = arguments[i]; - var typ = typeof(o); - if ( - (typ != 'object' && !(typ == 'function' && typeof(o.item) == 'function')) || - o === null || - typeof(o.length) != 'number' || - o.nodeType === 3 - ) { - return false; - } - } - return true; - }, - - /** @id MochiKit.Base.isDateLike */ - isDateLike: function () { - for (var i = 0; i < arguments.length; i++) { - var o = arguments[i]; - if (typeof(o) != "object" || o === null - || typeof(o.getTime) != 'function') { - return false; - } - } - return true; - }, - - - /** @id MochiKit.Base.xmap */ - xmap: function (fn/*, obj... */) { - if (fn === null) { - return MochiKit.Base.extend(null, arguments, 1); - } - var rval = []; - for (var i = 1; i < arguments.length; i++) { - rval.push(fn(arguments[i])); - } - return rval; - }, - - /** @id MochiKit.Base.map */ - map: function (fn, lst/*, lst... */) { - var m = MochiKit.Base; - var itr = MochiKit.Iter; - var isArrayLike = m.isArrayLike; - if (arguments.length <= 2) { - // allow an iterable to be passed - if (!isArrayLike(lst)) { - if (itr) { - // fast path for map(null, iterable) - lst = itr.list(lst); - if (fn === null) { - return lst; - } - } else { - throw new TypeError("Argument not an array-like and MochiKit.Iter not present"); - } - } - // fast path for map(null, lst) - if (fn === null) { - return m.extend(null, lst); - } - // disabled fast path for map(fn, lst) - /* - if (false && typeof(Array.prototype.map) == 'function') { - // Mozilla fast-path - return Array.prototype.map.call(lst, fn); - } - */ - var rval = []; - for (var i = 0; i < lst.length; i++) { - rval.push(fn(lst[i])); - } - return rval; - } else { - // default for map(null, ...) is zip(...) - if (fn === null) { - fn = Array; - } - var length = null; - for (i = 1; i < arguments.length; i++) { - // allow iterables to be passed - if (!isArrayLike(arguments[i])) { - if (itr) { - return itr.list(itr.imap.apply(null, arguments)); - } else { - throw new TypeError("Argument not an array-like and MochiKit.Iter not present"); - } - } - // find the minimum length - var l = arguments[i].length; - if (length === null || length > l) { - length = l; - } - } - rval = []; - for (i = 0; i < length; i++) { - var args = []; - for (var j = 1; j < arguments.length; j++) { - args.push(arguments[j][i]); - } - rval.push(fn.apply(this, args)); - } - return rval; - } - }, - - /** @id MochiKit.Base.xfilter */ - xfilter: function (fn/*, obj... */) { - var rval = []; - if (fn === null) { - fn = MochiKit.Base.operator.truth; - } - for (var i = 1; i < arguments.length; i++) { - var o = arguments[i]; - if (fn(o)) { - rval.push(o); - } - } - return rval; - }, - - /** @id MochiKit.Base.filter */ - filter: function (fn, lst, self) { - var rval = []; - // allow an iterable to be passed - var m = MochiKit.Base; - if (!m.isArrayLike(lst)) { - if (MochiKit.Iter) { - lst = MochiKit.Iter.list(lst); - } else { - throw new TypeError("Argument not an array-like and MochiKit.Iter not present"); - } - } - if (fn === null) { - fn = m.operator.truth; - } - if (typeof(Array.prototype.filter) == 'function') { - // Mozilla fast-path - return Array.prototype.filter.call(lst, fn, self); - } else if (typeof(self) == 'undefined' || self === null) { - for (var i = 0; i < lst.length; i++) { - var o = lst[i]; - if (fn(o)) { - rval.push(o); - } - } - } else { - for (i = 0; i < lst.length; i++) { - o = lst[i]; - if (fn.call(self, o)) { - rval.push(o); - } - } - } - return rval; - }, - - - _wrapDumbFunction: function (func) { - return function () { - // fast path! - switch (arguments.length) { - case 0: return func(); - case 1: return func(arguments[0]); - case 2: return func(arguments[0], arguments[1]); - case 3: return func(arguments[0], arguments[1], arguments[2]); - } - var args = []; - for (var i = 0; i < arguments.length; i++) { - args.push("arguments[" + i + "]"); - } - return eval("(func(" + args.join(",") + "))"); - }; - }, - - /** @id MochiKit.Base.methodcaller */ - methodcaller: function (func/*, args... */) { - var args = MochiKit.Base.extend(null, arguments, 1); - if (typeof(func) == "function") { - return function (obj) { - return func.apply(obj, args); - }; - } else { - return function (obj) { - return obj[func].apply(obj, args); - }; - } - }, - - /** @id MochiKit.Base.method */ - method: function (self, func) { - var m = MochiKit.Base; - return m.bind.apply(this, m.extend([func, self], arguments, 2)); - }, - - /** @id MochiKit.Base.compose */ - compose: function (f1, f2/*, f3, ... fN */) { - var fnlist = []; - var m = MochiKit.Base; - if (arguments.length === 0) { - throw new TypeError("compose() requires at least one argument"); - } - for (var i = 0; i < arguments.length; i++) { - var fn = arguments[i]; - if (typeof(fn) != "function") { - throw new TypeError(m.repr(fn) + " is not a function"); - } - fnlist.push(fn); - } - return function () { - var args = arguments; - for (var i = fnlist.length - 1; i >= 0; i--) { - args = [fnlist[i].apply(this, args)]; - } - return args[0]; - }; - }, - - /** @id MochiKit.Base.bind */ - bind: function (func, self/* args... */) { - if (typeof(func) == "string") { - func = self[func]; - } - var im_func = func.im_func; - var im_preargs = func.im_preargs; - var im_self = func.im_self; - var m = MochiKit.Base; - if (typeof(func) == "function" && typeof(func.apply) == "undefined") { - // this is for cases where JavaScript sucks ass and gives you a - // really dumb built-in function like alert() that doesn't have - // an apply - func = m._wrapDumbFunction(func); - } - if (typeof(im_func) != 'function') { - im_func = func; - } - if (typeof(self) != 'undefined') { - im_self = self; - } - if (typeof(im_preargs) == 'undefined') { - im_preargs = []; - } else { - im_preargs = im_preargs.slice(); - } - m.extend(im_preargs, arguments, 2); - var newfunc = function () { - var args = arguments; - var me = arguments.callee; - if (me.im_preargs.length > 0) { - args = m.concat(me.im_preargs, args); - } - var self = me.im_self; - if (!self) { - self = this; - } - return me.im_func.apply(self, args); - }; - newfunc.im_self = im_self; - newfunc.im_func = im_func; - newfunc.im_preargs = im_preargs; - return newfunc; - }, - - /** @id MochiKit.Base.bindMethods */ - bindMethods: function (self) { - var bind = MochiKit.Base.bind; - for (var k in self) { - var func = self[k]; - if (typeof(func) == 'function') { - self[k] = bind(func, self); - } - } - }, - - /** @id MochiKit.Base.registerComparator */ - registerComparator: function (name, check, comparator, /* optional */ override) { - MochiKit.Base.comparatorRegistry.register(name, check, comparator, override); - }, - - _primitives: {'boolean': true, 'string': true, 'number': true}, - - /** @id MochiKit.Base.compare */ - compare: function (a, b) { - if (a == b) { - return 0; - } - var aIsNull = (typeof(a) == 'undefined' || a === null); - var bIsNull = (typeof(b) == 'undefined' || b === null); - if (aIsNull && bIsNull) { - return 0; - } else if (aIsNull) { - return -1; - } else if (bIsNull) { - return 1; - } - var m = MochiKit.Base; - // bool, number, string have meaningful comparisons - var prim = m._primitives; - if (!(typeof(a) in prim && typeof(b) in prim)) { - try { - return m.comparatorRegistry.match(a, b); - } catch (e) { - if (e != m.NotFound) { - throw e; - } - } - } - if (a < b) { - return -1; - } else if (a > b) { - return 1; - } - // These types can't be compared - var repr = m.repr; - throw new TypeError(repr(a) + " and " + repr(b) + " can not be compared"); - }, - - /** @id MochiKit.Base.compareDateLike */ - compareDateLike: function (a, b) { - return MochiKit.Base.compare(a.getTime(), b.getTime()); - }, - - /** @id MochiKit.Base.compareArrayLike */ - compareArrayLike: function (a, b) { - var compare = MochiKit.Base.compare; - var count = a.length; - var rval = 0; - if (count > b.length) { - rval = 1; - count = b.length; - } else if (count < b.length) { - rval = -1; - } - for (var i = 0; i < count; i++) { - var cmp = compare(a[i], b[i]); - if (cmp) { - return cmp; - } - } - return rval; - }, - - /** @id MochiKit.Base.registerRepr */ - registerRepr: function (name, check, wrap, /* optional */override) { - MochiKit.Base.reprRegistry.register(name, check, wrap, override); - }, - - /** @id MochiKit.Base.repr */ - repr: function (o) { - if (typeof(o) == "undefined") { - return "undefined"; - } else if (o === null) { - return "null"; - } - try { - if (typeof(o.__repr__) == 'function') { - return o.__repr__(); - } else if (typeof(o.repr) == 'function' && o.repr != arguments.callee) { - return o.repr(); - } - return MochiKit.Base.reprRegistry.match(o); - } catch (e) { - if (typeof(o.NAME) == 'string' && ( - o.toString == Function.prototype.toString || - o.toString == Object.prototype.toString - )) { - return o.NAME; - } - } - try { - var ostring = (o + ""); - } catch (e) { - return "[" + typeof(o) + "]"; - } - if (typeof(o) == "function") { - o = ostring.replace(/^\s+/, ""); - var idx = o.indexOf("{"); - if (idx != -1) { - o = o.substr(0, idx) + "{...}"; - } - } - return ostring; - }, - - /** @id MochiKit.Base.reprArrayLike */ - reprArrayLike: function (o) { - var m = MochiKit.Base; - return "[" + m.map(m.repr, o).join(", ") + "]"; - }, - - /** @id MochiKit.Base.reprString */ - reprString: function (o) { - return ('"' + o.replace(/(["\\])/g, '\\$1') + '"' - ).replace(/[\f]/g, "\\f" - ).replace(/[\b]/g, "\\b" - ).replace(/[\n]/g, "\\n" - ).replace(/[\t]/g, "\\t" - ).replace(/[\r]/g, "\\r"); - }, - - /** @id MochiKit.Base.reprNumber */ - reprNumber: function (o) { - return o + ""; - }, - - /** @id MochiKit.Base.registerJSON */ - registerJSON: function (name, check, wrap, /* optional */override) { - MochiKit.Base.jsonRegistry.register(name, check, wrap, override); - }, - - - /** @id MochiKit.Base.evalJSON */ - evalJSON: function () { - return eval("(" + arguments[0] + ")"); - }, - - /** @id MochiKit.Base.serializeJSON */ - serializeJSON: function (o) { - var objtype = typeof(o); - if (objtype == "number" || objtype == "boolean") { - return o + ""; - } else if (o === null) { - return "null"; - } - var m = MochiKit.Base; - var reprString = m.reprString; - if (objtype == "string") { - return reprString(o); - } - // recurse - var me = arguments.callee; - // short-circuit for objects that support "json" serialization - // if they return "self" then just pass-through... - var newObj; - if (typeof(o.__json__) == "function") { - newObj = o.__json__(); - if (o !== newObj) { - return me(newObj); - } - } - if (typeof(o.json) == "function") { - newObj = o.json(); - if (o !== newObj) { - return me(newObj); - } - } - // array - if (objtype != "function" && typeof(o.length) == "number") { - var res = []; - for (var i = 0; i < o.length; i++) { - var val = me(o[i]); - if (typeof(val) != "string") { - val = "undefined"; - } - res.push(val); - } - return "[" + res.join(", ") + "]"; - } - // look in the registry - try { - newObj = m.jsonRegistry.match(o); - if (o !== newObj) { - return me(newObj); - } - } catch (e) { - if (e != m.NotFound) { - // something really bad happened - throw e; - } - } - // undefined is outside of the spec - if (objtype == "undefined") { - throw new TypeError("undefined can not be serialized as JSON"); - } - // it's a function with no adapter, bad - if (objtype == "function") { - return null; - } - // generic object code path - res = []; - for (var k in o) { - var useKey; - if (typeof(k) == "number") { - useKey = '"' + k + '"'; - } else if (typeof(k) == "string") { - useKey = reprString(k); - } else { - // skip non-string or number keys - continue; - } - val = me(o[k]); - if (typeof(val) != "string") { - // skip non-serializable values - continue; - } - res.push(useKey + ":" + val); - } - return "{" + res.join(", ") + "}"; - }, - - - /** @id MochiKit.Base.objEqual */ - objEqual: function (a, b) { - return (MochiKit.Base.compare(a, b) === 0); - }, - - /** @id MochiKit.Base.arrayEqual */ - arrayEqual: function (self, arr) { - if (self.length != arr.length) { - return false; - } - return (MochiKit.Base.compare(self, arr) === 0); - }, - - /** @id MochiKit.Base.concat */ - concat: function (/* lst... */) { - var rval = []; - var extend = MochiKit.Base.extend; - for (var i = 0; i < arguments.length; i++) { - extend(rval, arguments[i]); - } - return rval; - }, - - /** @id MochiKit.Base.keyComparator */ - keyComparator: function (key/* ... */) { - // fast-path for single key comparisons - var m = MochiKit.Base; - var compare = m.compare; - if (arguments.length == 1) { - return function (a, b) { - return compare(a[key], b[key]); - }; - } - var compareKeys = m.extend(null, arguments); - return function (a, b) { - var rval = 0; - // keep comparing until something is inequal or we run out of - // keys to compare - for (var i = 0; (rval === 0) && (i < compareKeys.length); i++) { - var key = compareKeys[i]; - rval = compare(a[key], b[key]); - } - return rval; - }; - }, - - /** @id MochiKit.Base.reverseKeyComparator */ - reverseKeyComparator: function (key) { - var comparator = MochiKit.Base.keyComparator.apply(this, arguments); - return function (a, b) { - return comparator(b, a); - }; - }, - - /** @id MochiKit.Base.partial */ - partial: function (func) { - var m = MochiKit.Base; - return m.bind.apply(this, m.extend([func, undefined], arguments, 1)); - }, - - /** @id MochiKit.Base.listMinMax */ - listMinMax: function (which, lst) { - if (lst.length === 0) { - return null; - } - var cur = lst[0]; - var compare = MochiKit.Base.compare; - for (var i = 1; i < lst.length; i++) { - var o = lst[i]; - if (compare(o, cur) == which) { - cur = o; - } - } - return cur; - }, - - /** @id MochiKit.Base.objMax */ - objMax: function (/* obj... */) { - return MochiKit.Base.listMinMax(1, arguments); - }, - - /** @id MochiKit.Base.objMin */ - objMin: function (/* obj... */) { - return MochiKit.Base.listMinMax(-1, arguments); - }, - - /** @id MochiKit.Base.findIdentical */ - findIdentical: function (lst, value, start/* = 0 */, /* optional */end) { - if (typeof(end) == "undefined" || end === null) { - end = lst.length; - } - if (typeof(start) == "undefined" || start === null) { - start = 0; - } - for (var i = start; i < end; i++) { - if (lst[i] === value) { - return i; - } - } - return -1; - }, - - /** @id MochiKit.Base.mean */ - mean: function(/* lst... */) { - /* http://www.nist.gov/dads/HTML/mean.html */ - var sum = 0; - - var m = MochiKit.Base; - var args = m.extend(null, arguments); - var count = args.length; - - while (args.length) { - var o = args.shift(); - if (o && typeof(o) == "object" && typeof(o.length) == "number") { - count += o.length - 1; - for (var i = o.length - 1; i >= 0; i--) { - sum += o[i]; - } - } else { - sum += o; - } - } - - if (count <= 0) { - throw new TypeError('mean() requires at least one argument'); - } - - return sum/count; - }, - - /** @id MochiKit.Base.median */ - median: function(/* lst... */) { - /* http://www.nist.gov/dads/HTML/median.html */ - var data = MochiKit.Base.flattenArguments(arguments); - if (data.length === 0) { - throw new TypeError('median() requires at least one argument'); - } - data.sort(compare); - if (data.length % 2 == 0) { - var upper = data.length / 2; - return (data[upper] + data[upper - 1]) / 2; - } else { - return data[(data.length - 1) / 2]; - } - }, - - /** @id MochiKit.Base.findValue */ - findValue: function (lst, value, start/* = 0 */, /* optional */end) { - if (typeof(end) == "undefined" || end === null) { - end = lst.length; - } - if (typeof(start) == "undefined" || start === null) { - start = 0; - } - var cmp = MochiKit.Base.compare; - for (var i = start; i < end; i++) { - if (cmp(lst[i], value) === 0) { - return i; - } - } - return -1; - }, - - /** @id MochiKit.Base.nodeWalk */ - nodeWalk: function (node, visitor) { - var nodes = [node]; - var extend = MochiKit.Base.extend; - while (nodes.length) { - var res = visitor(nodes.shift()); - if (res) { - extend(nodes, res); - } - } - }, - - - /** @id MochiKit.Base.nameFunctions */ - nameFunctions: function (namespace) { - var base = namespace.NAME; - if (typeof(base) == 'undefined') { - base = ''; - } else { - base = base + '.'; - } - for (var name in namespace) { - var o = namespace[name]; - if (typeof(o) == 'function' && typeof(o.NAME) == 'undefined') { - try { - o.NAME = base + name; - } catch (e) { - // pass - } - } - } - }, - - - /** @id MochiKit.Base.queryString */ - queryString: function (names, values) { - // check to see if names is a string or a DOM element, and if - // MochiKit.DOM is available. If so, drop it like it's a form - // Ugliest conditional in MochiKit? Probably! - if (typeof(MochiKit.DOM) != "undefined" && arguments.length == 1 - && (typeof(names) == "string" || ( - typeof(names.nodeType) != "undefined" && names.nodeType > 0 - )) - ) { - var kv = MochiKit.DOM.formContents(names); - names = kv[0]; - values = kv[1]; - } else if (arguments.length == 1) { - var o = names; - names = []; - values = []; - for (var k in o) { - var v = o[k]; - if (typeof(v) == "function") { - continue; - } else if (typeof(v) != "string" && - typeof(v.length) == "number") { - for (var i = 0; i < v.length; i++) { - names.push(k); - values.push(v[i]); - } - } else { - names.push(k); - values.push(v); - } - } - } - var rval = []; - var len = Math.min(names.length, values.length); - var urlEncode = MochiKit.Base.urlEncode; - for (var i = 0; i < len; i++) { - v = values[i]; - if (typeof(v) != 'undefined' && v !== null) { - rval.push(urlEncode(names[i]) + "=" + urlEncode(v)); - } - } - return rval.join("&"); - }, - - - /** @id MochiKit.Base.parseQueryString */ - parseQueryString: function (encodedString, useArrays) { - // strip a leading '?' from the encoded string - var qstr = (encodedString[0] == "?") ? encodedString.substring(1) : - encodedString; - var pairs = qstr.replace(/\+/g, "%20").split(/(\&\;|\&\#38\;|\&|\&)/); - var o = {}; - var decode; - if (typeof(decodeURIComponent) != "undefined") { - decode = decodeURIComponent; - } else { - decode = unescape; - } - if (useArrays) { - for (var i = 0; i < pairs.length; i++) { - var pair = pairs[i].split("="); - if (pair.length !== 2) { - continue; - } - var name = decode(pair[0]); - var arr = o[name]; - if (!(arr instanceof Array)) { - arr = []; - o[name] = arr; - } - arr.push(decode(pair[1])); - } - } else { - for (i = 0; i < pairs.length; i++) { - pair = pairs[i].split("="); - if (pair.length !== 2) { - continue; - } - o[decode(pair[0])] = decode(pair[1]); - } - } - return o; - } -}); - -/** @id MochiKit.Base.AdapterRegistry */ -MochiKit.Base.AdapterRegistry = function () { - this.pairs = []; -}; - -MochiKit.Base.AdapterRegistry.prototype = { - /** @id MochiKit.Base.AdapterRegistry.prototype.register */ - register: function (name, check, wrap, /* optional */ override) { - if (override) { - this.pairs.unshift([name, check, wrap]); - } else { - this.pairs.push([name, check, wrap]); - } - }, - - /** @id MochiKit.Base.AdapterRegistry.prototype.match */ - match: function (/* ... */) { - for (var i = 0; i < this.pairs.length; i++) { - var pair = this.pairs[i]; - if (pair[1].apply(this, arguments)) { - return pair[2].apply(this, arguments); - } - } - throw MochiKit.Base.NotFound; - }, - - /** @id MochiKit.Base.AdapterRegistry.prototype.unregister */ - unregister: function (name) { - for (var i = 0; i < this.pairs.length; i++) { - var pair = this.pairs[i]; - if (pair[0] == name) { - this.pairs.splice(i, 1); - return true; - } - } - return false; - } -}; - - -MochiKit.Base.EXPORT = [ - "flattenArray", - "noop", - "camelize", - "counter", - "clone", - "extend", - "update", - "updatetree", - "setdefault", - "keys", - "values", - "items", - "NamedError", - "operator", - "forwardCall", - "itemgetter", - "typeMatcher", - "isCallable", - "isUndefined", - "isUndefinedOrNull", - "isNull", - "isEmpty", - "isNotEmpty", - "isArrayLike", - "isDateLike", - "xmap", - "map", - "xfilter", - "filter", - "methodcaller", - "compose", - "bind", - "bindMethods", - "NotFound", - "AdapterRegistry", - "registerComparator", - "compare", - "registerRepr", - "repr", - "objEqual", - "arrayEqual", - "concat", - "keyComparator", - "reverseKeyComparator", - "partial", - "merge", - "listMinMax", - "listMax", - "listMin", - "objMax", - "objMin", - "nodeWalk", - "zip", - "urlEncode", - "queryString", - "serializeJSON", - "registerJSON", - "evalJSON", - "parseQueryString", - "findValue", - "findIdentical", - "flattenArguments", - "method", - "average", - "mean", - "median" -]; - -MochiKit.Base.EXPORT_OK = [ - "nameFunctions", - "comparatorRegistry", - "reprRegistry", - "jsonRegistry", - "compareDateLike", - "compareArrayLike", - "reprArrayLike", - "reprString", - "reprNumber" -]; - -MochiKit.Base._exportSymbols = function (globals, module) { - if (!MochiKit.__export__) { - return; - } - var all = module.EXPORT_TAGS[":all"]; - for (var i = 0; i < all.length; i++) { - globals[all[i]] = module[all[i]]; - } -}; - -MochiKit.Base.__new__ = function () { - // A singleton raised when no suitable adapter is found - var m = this; - - // convenience - /** @id MochiKit.Base.noop */ - m.noop = m.operator.identity; - - // Backwards compat - m.forward = m.forwardCall; - m.find = m.findValue; - - if (typeof(encodeURIComponent) != "undefined") { - /** @id MochiKit.Base.urlEncode */ - m.urlEncode = function (unencoded) { - return encodeURIComponent(unencoded).replace(/\'/g, '%27'); - }; - } else { - m.urlEncode = function (unencoded) { - return escape(unencoded - ).replace(/\+/g, '%2B' - ).replace(/\"/g,'%22' - ).rval.replace(/\'/g, '%27'); - }; - } - - /** @id MochiKit.Base.NamedError */ - m.NamedError = function (name) { - this.message = name; - this.name = name; - }; - m.NamedError.prototype = new Error(); - m.update(m.NamedError.prototype, { - repr: function () { - if (this.message && this.message != this.name) { - return this.name + "(" + m.repr(this.message) + ")"; - } else { - return this.name + "()"; - } - }, - toString: m.forwardCall("repr") - }); - - /** @id MochiKit.Base.NotFound */ - m.NotFound = new m.NamedError("MochiKit.Base.NotFound"); - - - /** @id MochiKit.Base.listMax */ - m.listMax = m.partial(m.listMinMax, 1); - /** @id MochiKit.Base.listMin */ - m.listMin = m.partial(m.listMinMax, -1); - - /** @id MochiKit.Base.isCallable */ - m.isCallable = m.typeMatcher('function'); - /** @id MochiKit.Base.isUndefined */ - m.isUndefined = m.typeMatcher('undefined'); - - /** @id MochiKit.Base.merge */ - m.merge = m.partial(m.update, null); - /** @id MochiKit.Base.zip */ - m.zip = m.partial(m.map, null); - - /** @id MochiKit.Base.average */ - m.average = m.mean; - - /** @id MochiKit.Base.comparatorRegistry */ - m.comparatorRegistry = new m.AdapterRegistry(); - m.registerComparator("dateLike", m.isDateLike, m.compareDateLike); - m.registerComparator("arrayLike", m.isArrayLike, m.compareArrayLike); - - /** @id MochiKit.Base.reprRegistry */ - m.reprRegistry = new m.AdapterRegistry(); - m.registerRepr("arrayLike", m.isArrayLike, m.reprArrayLike); - m.registerRepr("string", m.typeMatcher("string"), m.reprString); - m.registerRepr("numbers", m.typeMatcher("number", "boolean"), m.reprNumber); - - /** @id MochiKit.Base.jsonRegistry */ - m.jsonRegistry = new m.AdapterRegistry(); - - var all = m.concat(m.EXPORT, m.EXPORT_OK); - m.EXPORT_TAGS = { - ":common": m.concat(m.EXPORT_OK), - ":all": all - }; - - m.nameFunctions(this); - -}; - -MochiKit.Base.__new__(); - -// -// XXX: Internet Explorer blows -// -if (MochiKit.__export__) { - compare = MochiKit.Base.compare; - compose = MochiKit.Base.compose; - serializeJSON = MochiKit.Base.serializeJSON; -} - -MochiKit.Base._exportSymbols(this, MochiKit.Base); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Color.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Color.js deleted file mode 100755 index 50e7acf12..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Color.js +++ /dev/null @@ -1,902 +0,0 @@ -/*** - -MochiKit.Color 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito and others. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Color'); - dojo.require('MochiKit.Base'); - dojo.require('MochiKit.DOM'); - dojo.require('MochiKit.Style'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); - JSAN.use("MochiKit.DOM", []); - JSAN.use("MochiKit.Style", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Color depends on MochiKit.Base"; -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Color depends on MochiKit.DOM"; -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Color depends on MochiKit.Style"; -} - -if (typeof(MochiKit.Color) == "undefined") { - MochiKit.Color = {}; -} - -MochiKit.Color.NAME = "MochiKit.Color"; -MochiKit.Color.VERSION = "1.4"; - -MochiKit.Color.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; - -MochiKit.Color.toString = function () { - return this.__repr__(); -}; - - -/** @id MochiKit.Color.Color */ -MochiKit.Color.Color = function (red, green, blue, alpha) { - if (typeof(alpha) == 'undefined' || alpha === null) { - alpha = 1.0; - } - this.rgb = { - r: red, - g: green, - b: blue, - a: alpha - }; -}; - - -// Prototype methods - -MochiKit.Color.Color.prototype = { - - __class__: MochiKit.Color.Color, - - /** @id MochiKit.Color.Color.prototype.colorWithAlpha */ - colorWithAlpha: function (alpha) { - var rgb = this.rgb; - var m = MochiKit.Color; - return m.Color.fromRGB(rgb.r, rgb.g, rgb.b, alpha); - }, - - /** @id MochiKit.Color.Color.prototype.colorWithHue */ - colorWithHue: function (hue) { - // get an HSL model, and set the new hue... - var hsl = this.asHSL(); - hsl.h = hue; - var m = MochiKit.Color; - // convert back to RGB... - return m.Color.fromHSL(hsl); - }, - - /** @id MochiKit.Color.Color.prototype.colorWithSaturation */ - colorWithSaturation: function (saturation) { - // get an HSL model, and set the new hue... - var hsl = this.asHSL(); - hsl.s = saturation; - var m = MochiKit.Color; - // convert back to RGB... - return m.Color.fromHSL(hsl); - }, - - /** @id MochiKit.Color.Color.prototype.colorWithLightness */ - colorWithLightness: function (lightness) { - // get an HSL model, and set the new hue... - var hsl = this.asHSL(); - hsl.l = lightness; - var m = MochiKit.Color; - // convert back to RGB... - return m.Color.fromHSL(hsl); - }, - - /** @id MochiKit.Color.Color.prototype.darkerColorWithLevel */ - darkerColorWithLevel: function (level) { - var hsl = this.asHSL(); - hsl.l = Math.max(hsl.l - level, 0); - var m = MochiKit.Color; - return m.Color.fromHSL(hsl); - }, - - /** @id MochiKit.Color.Color.prototype.lighterColorWithLevel */ - lighterColorWithLevel: function (level) { - var hsl = this.asHSL(); - hsl.l = Math.min(hsl.l + level, 1); - var m = MochiKit.Color; - return m.Color.fromHSL(hsl); - }, - - /** @id MochiKit.Color.Color.prototype.blendedColor */ - blendedColor: function (other, /* optional */ fraction) { - if (typeof(fraction) == 'undefined' || fraction === null) { - fraction = 0.5; - } - var sf = 1.0 - fraction; - var s = this.rgb; - var d = other.rgb; - var df = fraction; - return MochiKit.Color.Color.fromRGB( - (s.r * sf) + (d.r * df), - (s.g * sf) + (d.g * df), - (s.b * sf) + (d.b * df), - (s.a * sf) + (d.a * df) - ); - }, - - /** @id MochiKit.Color.Color.prototype.compareRGB */ - compareRGB: function (other) { - var a = this.asRGB(); - var b = other.asRGB(); - return MochiKit.Base.compare( - [a.r, a.g, a.b, a.a], - [b.r, b.g, b.b, b.a] - ); - }, - - /** @id MochiKit.Color.Color.prototype.isLight */ - isLight: function () { - return this.asHSL().b > 0.5; - }, - - /** @id MochiKit.Color.Color.prototype.isDark */ - isDark: function () { - return (!this.isLight()); - }, - - /** @id MochiKit.Color.Color.prototype.toHSLString */ - toHSLString: function () { - var c = this.asHSL(); - var ccc = MochiKit.Color.clampColorComponent; - var rval = this._hslString; - if (!rval) { - var mid = ( - ccc(c.h, 360).toFixed(0) - + "," + ccc(c.s, 100).toPrecision(4) + "%" - + "," + ccc(c.l, 100).toPrecision(4) + "%" - ); - var a = c.a; - if (a >= 1) { - a = 1; - rval = "hsl(" + mid + ")"; - } else { - if (a <= 0) { - a = 0; - } - rval = "hsla(" + mid + "," + a + ")"; - } - this._hslString = rval; - } - return rval; - }, - - /** @id MochiKit.Color.Color.prototype.toRGBString */ - toRGBString: function () { - var c = this.rgb; - var ccc = MochiKit.Color.clampColorComponent; - var rval = this._rgbString; - if (!rval) { - var mid = ( - ccc(c.r, 255).toFixed(0) - + "," + ccc(c.g, 255).toFixed(0) - + "," + ccc(c.b, 255).toFixed(0) - ); - if (c.a != 1) { - rval = "rgba(" + mid + "," + c.a + ")"; - } else { - rval = "rgb(" + mid + ")"; - } - this._rgbString = rval; - } - return rval; - }, - - /** @id MochiKit.Color.Color.prototype.asRGB */ - asRGB: function () { - return MochiKit.Base.clone(this.rgb); - }, - - /** @id MochiKit.Color.Color.prototype.toHexString */ - toHexString: function () { - var m = MochiKit.Color; - var c = this.rgb; - var ccc = MochiKit.Color.clampColorComponent; - var rval = this._hexString; - if (!rval) { - rval = ("#" + - m.toColorPart(ccc(c.r, 255)) + - m.toColorPart(ccc(c.g, 255)) + - m.toColorPart(ccc(c.b, 255)) - ); - this._hexString = rval; - } - return rval; - }, - - /** @id MochiKit.Color.Color.prototype.asHSV */ - asHSV: function () { - var hsv = this.hsv; - var c = this.rgb; - if (typeof(hsv) == 'undefined' || hsv === null) { - hsv = MochiKit.Color.rgbToHSV(this.rgb); - this.hsv = hsv; - } - return MochiKit.Base.clone(hsv); - }, - - /** @id MochiKit.Color.Color.prototype.asHSL */ - asHSL: function () { - var hsl = this.hsl; - var c = this.rgb; - if (typeof(hsl) == 'undefined' || hsl === null) { - hsl = MochiKit.Color.rgbToHSL(this.rgb); - this.hsl = hsl; - } - return MochiKit.Base.clone(hsl); - }, - - /** @id MochiKit.Color.Color.prototype.toString */ - toString: function () { - return this.toRGBString(); - }, - - /** @id MochiKit.Color.Color.prototype.repr */ - repr: function () { - var c = this.rgb; - var col = [c.r, c.g, c.b, c.a]; - return this.__class__.NAME + "(" + col.join(", ") + ")"; - } - -}; - -// Constructor methods - -MochiKit.Base.update(MochiKit.Color.Color, { - /** @id MochiKit.Color.Color.fromRGB */ - fromRGB: function (red, green, blue, alpha) { - // designated initializer - var Color = MochiKit.Color.Color; - if (arguments.length == 1) { - var rgb = red; - red = rgb.r; - green = rgb.g; - blue = rgb.b; - if (typeof(rgb.a) == 'undefined') { - alpha = undefined; - } else { - alpha = rgb.a; - } - } - return new Color(red, green, blue, alpha); - }, - - /** @id MochiKit.Color.Color.fromHSL */ - fromHSL: function (hue, saturation, lightness, alpha) { - var m = MochiKit.Color; - return m.Color.fromRGB(m.hslToRGB.apply(m, arguments)); - }, - - /** @id MochiKit.Color.Color.fromHSV */ - fromHSV: function (hue, saturation, value, alpha) { - var m = MochiKit.Color; - return m.Color.fromRGB(m.hsvToRGB.apply(m, arguments)); - }, - - /** @id MochiKit.Color.Color.fromName */ - fromName: function (name) { - var Color = MochiKit.Color.Color; - // Opera 9 seems to "quote" named colors(?!) - if (name.charAt(0) == '"') { - name = name.substr(1, name.length - 2); - } - var htmlColor = Color._namedColors[name.toLowerCase()]; - if (typeof(htmlColor) == 'string') { - return Color.fromHexString(htmlColor); - } else if (name == "transparent") { - return Color.transparentColor(); - } - return null; - }, - - /** @id MochiKit.Color.Color.fromString */ - fromString: function (colorString) { - var self = MochiKit.Color.Color; - var three = colorString.substr(0, 3); - if (three == "rgb") { - return self.fromRGBString(colorString); - } else if (three == "hsl") { - return self.fromHSLString(colorString); - } else if (colorString.charAt(0) == "#") { - return self.fromHexString(colorString); - } - return self.fromName(colorString); - }, - - - /** @id MochiKit.Color.Color.fromHexString */ - fromHexString: function (hexCode) { - if (hexCode.charAt(0) == '#') { - hexCode = hexCode.substring(1); - } - var components = []; - var i, hex; - if (hexCode.length == 3) { - for (i = 0; i < 3; i++) { - hex = hexCode.substr(i, 1); - components.push(parseInt(hex + hex, 16) / 255.0); - } - } else { - for (i = 0; i < 6; i += 2) { - hex = hexCode.substr(i, 2); - components.push(parseInt(hex, 16) / 255.0); - } - } - var Color = MochiKit.Color.Color; - return Color.fromRGB.apply(Color, components); - }, - - - _fromColorString: function (pre, method, scales, colorCode) { - // parses either HSL or RGB - if (colorCode.indexOf(pre) === 0) { - colorCode = colorCode.substring(colorCode.indexOf("(", 3) + 1, colorCode.length - 1); - } - var colorChunks = colorCode.split(/\s*,\s*/); - var colorFloats = []; - for (var i = 0; i < colorChunks.length; i++) { - var c = colorChunks[i]; - var val; - var three = c.substring(c.length - 3); - if (c.charAt(c.length - 1) == '%') { - val = 0.01 * parseFloat(c.substring(0, c.length - 1)); - } else if (three == "deg") { - val = parseFloat(c) / 360.0; - } else if (three == "rad") { - val = parseFloat(c) / (Math.PI * 2); - } else { - val = scales[i] * parseFloat(c); - } - colorFloats.push(val); - } - return this[method].apply(this, colorFloats); - }, - - /** @id MochiKit.Color.Color.fromComputedStyle */ - fromComputedStyle: function (elem, style) { - var d = MochiKit.DOM; - var cls = MochiKit.Color.Color; - for (elem = d.getElement(elem); elem; elem = elem.parentNode) { - var actualColor = MochiKit.Style.computedStyle.apply(d, arguments); - if (!actualColor) { - continue; - } - var color = cls.fromString(actualColor); - if (!color) { - break; - } - if (color.asRGB().a > 0) { - return color; - } - } - return null; - }, - - /** @id MochiKit.Color.Color.fromBackground */ - fromBackground: function (elem) { - var cls = MochiKit.Color.Color; - return cls.fromComputedStyle( - elem, "backgroundColor", "background-color") || cls.whiteColor(); - }, - - /** @id MochiKit.Color.Color.fromText */ - fromText: function (elem) { - var cls = MochiKit.Color.Color; - return cls.fromComputedStyle( - elem, "color", "color") || cls.blackColor(); - }, - - /** @id MochiKit.Color.Color.namedColors */ - namedColors: function () { - return MochiKit.Base.clone(MochiKit.Color.Color._namedColors); - } -}); - - -// Module level functions - -MochiKit.Base.update(MochiKit.Color, { - /** @id MochiKit.Color.clampColorComponent */ - clampColorComponent: function (v, scale) { - v *= scale; - if (v < 0) { - return 0; - } else if (v > scale) { - return scale; - } else { - return v; - } - }, - - _hslValue: function (n1, n2, hue) { - if (hue > 6.0) { - hue -= 6.0; - } else if (hue < 0.0) { - hue += 6.0; - } - var val; - if (hue < 1.0) { - val = n1 + (n2 - n1) * hue; - } else if (hue < 3.0) { - val = n2; - } else if (hue < 4.0) { - val = n1 + (n2 - n1) * (4.0 - hue); - } else { - val = n1; - } - return val; - }, - - /** @id MochiKit.Color.hsvToRGB */ - hsvToRGB: function (hue, saturation, value, alpha) { - if (arguments.length == 1) { - var hsv = hue; - hue = hsv.h; - saturation = hsv.s; - value = hsv.v; - alpha = hsv.a; - } - var red; - var green; - var blue; - if (saturation === 0) { - red = 0; - green = 0; - blue = 0; - } else { - var i = Math.floor(hue * 6); - var f = (hue * 6) - i; - var p = value * (1 - saturation); - var q = value * (1 - (saturation * f)); - var t = value * (1 - (saturation * (1 - f))); - switch (i) { - case 1: red = q; green = value; blue = p; break; - case 2: red = p; green = value; blue = t; break; - case 3: red = p; green = q; blue = value; break; - case 4: red = t; green = p; blue = value; break; - case 5: red = value; green = p; blue = q; break; - case 6: // fall through - case 0: red = value; green = t; blue = p; break; - } - } - return { - r: red, - g: green, - b: blue, - a: alpha - }; - }, - - /** @id MochiKit.Color.hslToRGB */ - hslToRGB: function (hue, saturation, lightness, alpha) { - if (arguments.length == 1) { - var hsl = hue; - hue = hsl.h; - saturation = hsl.s; - lightness = hsl.l; - alpha = hsl.a; - } - var red; - var green; - var blue; - if (saturation === 0) { - red = lightness; - green = lightness; - blue = lightness; - } else { - var m2; - if (lightness <= 0.5) { - m2 = lightness * (1.0 + saturation); - } else { - m2 = lightness + saturation - (lightness * saturation); - } - var m1 = (2.0 * lightness) - m2; - var f = MochiKit.Color._hslValue; - var h6 = hue * 6.0; - red = f(m1, m2, h6 + 2); - green = f(m1, m2, h6); - blue = f(m1, m2, h6 - 2); - } - return { - r: red, - g: green, - b: blue, - a: alpha - }; - }, - - /** @id MochiKit.Color.rgbToHSV */ - rgbToHSV: function (red, green, blue, alpha) { - if (arguments.length == 1) { - var rgb = red; - red = rgb.r; - green = rgb.g; - blue = rgb.b; - alpha = rgb.a; - } - var max = Math.max(Math.max(red, green), blue); - var min = Math.min(Math.min(red, green), blue); - var hue; - var saturation; - var value = max; - if (min == max) { - hue = 0; - saturation = 0; - } else { - var delta = (max - min); - saturation = delta / max; - - if (red == max) { - hue = (green - blue) / delta; - } else if (green == max) { - hue = 2 + ((blue - red) / delta); - } else { - hue = 4 + ((red - green) / delta); - } - hue /= 6; - if (hue < 0) { - hue += 1; - } - if (hue > 1) { - hue -= 1; - } - } - return { - h: hue, - s: saturation, - v: value, - a: alpha - }; - }, - - /** @id MochiKit.Color.rgbToHSL */ - rgbToHSL: function (red, green, blue, alpha) { - if (arguments.length == 1) { - var rgb = red; - red = rgb.r; - green = rgb.g; - blue = rgb.b; - alpha = rgb.a; - } - var max = Math.max(red, Math.max(green, blue)); - var min = Math.min(red, Math.min(green, blue)); - var hue; - var saturation; - var lightness = (max + min) / 2.0; - var delta = max - min; - if (delta === 0) { - hue = 0; - saturation = 0; - } else { - if (lightness <= 0.5) { - saturation = delta / (max + min); - } else { - saturation = delta / (2 - max - min); - } - if (red == max) { - hue = (green - blue) / delta; - } else if (green == max) { - hue = 2 + ((blue - red) / delta); - } else { - hue = 4 + ((red - green) / delta); - } - hue /= 6; - if (hue < 0) { - hue += 1; - } - if (hue > 1) { - hue -= 1; - } - - } - return { - h: hue, - s: saturation, - l: lightness, - a: alpha - }; - }, - - /** @id MochiKit.Color.toColorPart */ - toColorPart: function (num) { - num = Math.round(num); - var digits = num.toString(16); - if (num < 16) { - return '0' + digits; - } - return digits; - }, - - __new__: function () { - var m = MochiKit.Base; - /** @id MochiKit.Color.fromRGBString */ - this.Color.fromRGBString = m.bind( - this.Color._fromColorString, this.Color, "rgb", "fromRGB", - [1.0/255.0, 1.0/255.0, 1.0/255.0, 1] - ); - /** @id MochiKit.Color.fromHSLString */ - this.Color.fromHSLString = m.bind( - this.Color._fromColorString, this.Color, "hsl", "fromHSL", - [1.0/360.0, 0.01, 0.01, 1] - ); - - var third = 1.0 / 3.0; - /** @id MochiKit.Color.colors */ - var colors = { - // NSColor colors plus transparent - /** @id MochiKit.Color.blackColor */ - black: [0, 0, 0], - /** @id MochiKit.Color.blueColor */ - blue: [0, 0, 1], - /** @id MochiKit.Color.brownColor */ - brown: [0.6, 0.4, 0.2], - /** @id MochiKit.Color.cyanColor */ - cyan: [0, 1, 1], - /** @id MochiKit.Color.darkGrayColor */ - darkGray: [third, third, third], - /** @id MochiKit.Color.grayColor */ - gray: [0.5, 0.5, 0.5], - /** @id MochiKit.Color.greenColor */ - green: [0, 1, 0], - /** @id MochiKit.Color.lightGrayColor */ - lightGray: [2 * third, 2 * third, 2 * third], - /** @id MochiKit.Color.magentaColor */ - magenta: [1, 0, 1], - /** @id MochiKit.Color.orangeColor */ - orange: [1, 0.5, 0], - /** @id MochiKit.Color.purpleColor */ - purple: [0.5, 0, 0.5], - /** @id MochiKit.Color.redColor */ - red: [1, 0, 0], - /** @id MochiKit.Color.transparentColor */ - transparent: [0, 0, 0, 0], - /** @id MochiKit.Color.whiteColor */ - white: [1, 1, 1], - /** @id MochiKit.Color.yellowColor */ - yellow: [1, 1, 0] - }; - - var makeColor = function (name, r, g, b, a) { - var rval = this.fromRGB(r, g, b, a); - this[name] = function () { return rval; }; - return rval; - }; - - for (var k in colors) { - var name = k + "Color"; - var bindArgs = m.concat( - [makeColor, this.Color, name], - colors[k] - ); - this.Color[name] = m.bind.apply(null, bindArgs); - } - - var isColor = function () { - for (var i = 0; i < arguments.length; i++) { - if (!(arguments[i] instanceof Color)) { - return false; - } - } - return true; - }; - - var compareColor = function (a, b) { - return a.compareRGB(b); - }; - - m.nameFunctions(this); - - m.registerComparator(this.Color.NAME, isColor, compareColor); - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": m.concat(this.EXPORT, this.EXPORT_OK) - }; - - } -}); - -MochiKit.Color.EXPORT = [ - "Color" -]; - -MochiKit.Color.EXPORT_OK = [ - "clampColorComponent", - "rgbToHSL", - "hslToRGB", - "rgbToHSV", - "hsvToRGB", - "toColorPart" -]; - -MochiKit.Color.__new__(); - -MochiKit.Base._exportSymbols(this, MochiKit.Color); - -// Full table of css3 X11 colors - -MochiKit.Color.Color._namedColors = { - aliceblue: "#f0f8ff", - antiquewhite: "#faebd7", - aqua: "#00ffff", - aquamarine: "#7fffd4", - azure: "#f0ffff", - beige: "#f5f5dc", - bisque: "#ffe4c4", - black: "#000000", - blanchedalmond: "#ffebcd", - blue: "#0000ff", - blueviolet: "#8a2be2", - brown: "#a52a2a", - burlywood: "#deb887", - cadetblue: "#5f9ea0", - chartreuse: "#7fff00", - chocolate: "#d2691e", - coral: "#ff7f50", - cornflowerblue: "#6495ed", - cornsilk: "#fff8dc", - crimson: "#dc143c", - cyan: "#00ffff", - darkblue: "#00008b", - darkcyan: "#008b8b", - darkgoldenrod: "#b8860b", - darkgray: "#a9a9a9", - darkgreen: "#006400", - darkgrey: "#a9a9a9", - darkkhaki: "#bdb76b", - darkmagenta: "#8b008b", - darkolivegreen: "#556b2f", - darkorange: "#ff8c00", - darkorchid: "#9932cc", - darkred: "#8b0000", - darksalmon: "#e9967a", - darkseagreen: "#8fbc8f", - darkslateblue: "#483d8b", - darkslategray: "#2f4f4f", - darkslategrey: "#2f4f4f", - darkturquoise: "#00ced1", - darkviolet: "#9400d3", - deeppink: "#ff1493", - deepskyblue: "#00bfff", - dimgray: "#696969", - dimgrey: "#696969", - dodgerblue: "#1e90ff", - firebrick: "#b22222", - floralwhite: "#fffaf0", - forestgreen: "#228b22", - fuchsia: "#ff00ff", - gainsboro: "#dcdcdc", - ghostwhite: "#f8f8ff", - gold: "#ffd700", - goldenrod: "#daa520", - gray: "#808080", - green: "#008000", - greenyellow: "#adff2f", - grey: "#808080", - honeydew: "#f0fff0", - hotpink: "#ff69b4", - indianred: "#cd5c5c", - indigo: "#4b0082", - ivory: "#fffff0", - khaki: "#f0e68c", - lavender: "#e6e6fa", - lavenderblush: "#fff0f5", - lawngreen: "#7cfc00", - lemonchiffon: "#fffacd", - lightblue: "#add8e6", - lightcoral: "#f08080", - lightcyan: "#e0ffff", - lightgoldenrodyellow: "#fafad2", - lightgray: "#d3d3d3", - lightgreen: "#90ee90", - lightgrey: "#d3d3d3", - lightpink: "#ffb6c1", - lightsalmon: "#ffa07a", - lightseagreen: "#20b2aa", - lightskyblue: "#87cefa", - lightslategray: "#778899", - lightslategrey: "#778899", - lightsteelblue: "#b0c4de", - lightyellow: "#ffffe0", - lime: "#00ff00", - limegreen: "#32cd32", - linen: "#faf0e6", - magenta: "#ff00ff", - maroon: "#800000", - mediumaquamarine: "#66cdaa", - mediumblue: "#0000cd", - mediumorchid: "#ba55d3", - mediumpurple: "#9370db", - mediumseagreen: "#3cb371", - mediumslateblue: "#7b68ee", - mediumspringgreen: "#00fa9a", - mediumturquoise: "#48d1cc", - mediumvioletred: "#c71585", - midnightblue: "#191970", - mintcream: "#f5fffa", - mistyrose: "#ffe4e1", - moccasin: "#ffe4b5", - navajowhite: "#ffdead", - navy: "#000080", - oldlace: "#fdf5e6", - olive: "#808000", - olivedrab: "#6b8e23", - orange: "#ffa500", - orangered: "#ff4500", - orchid: "#da70d6", - palegoldenrod: "#eee8aa", - palegreen: "#98fb98", - paleturquoise: "#afeeee", - palevioletred: "#db7093", - papayawhip: "#ffefd5", - peachpuff: "#ffdab9", - peru: "#cd853f", - pink: "#ffc0cb", - plum: "#dda0dd", - powderblue: "#b0e0e6", - purple: "#800080", - red: "#ff0000", - rosybrown: "#bc8f8f", - royalblue: "#4169e1", - saddlebrown: "#8b4513", - salmon: "#fa8072", - sandybrown: "#f4a460", - seagreen: "#2e8b57", - seashell: "#fff5ee", - sienna: "#a0522d", - silver: "#c0c0c0", - skyblue: "#87ceeb", - slateblue: "#6a5acd", - slategray: "#708090", - slategrey: "#708090", - snow: "#fffafa", - springgreen: "#00ff7f", - steelblue: "#4682b4", - tan: "#d2b48c", - teal: "#008080", - thistle: "#d8bfd8", - tomato: "#ff6347", - turquoise: "#40e0d0", - violet: "#ee82ee", - wheat: "#f5deb3", - white: "#ffffff", - whitesmoke: "#f5f5f5", - yellow: "#ffff00", - yellowgreen: "#9acd32" -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Controls.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Controls.js deleted file mode 100755 index 539b09d37..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Controls.js +++ /dev/null @@ -1,1388 +0,0 @@ -/*** -Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) - (c) 2005 Ivan Krstic (http://blogs.law.harvard.edu/ivan) - (c) 2005 Jon Tirsen (http://www.tirsen.com) -Contributors: - Richard Livsey - Rahul Bhargava - Rob Wills - Mochi-ized By Thomas Herve (_firstname_@nimail.org) - -See scriptaculous.js for full license. - -Autocompleter.Base handles all the autocompletion functionality -that's independent of the data source for autocompletion. This -includes drawing the autocompletion menu, observing keyboard -and mouse events, and similar. - -Specific autocompleters need to provide, at the very least, -a getUpdatedChoices function that will be invoked every time -the text inside the monitored textbox changes. This method -should get the text for which to provide autocompletion by -invoking this.getToken(), NOT by directly accessing -this.element.value. This is to allow incremental tokenized -autocompletion. Specific auto-completion logic (AJAX, etc) -belongs in getUpdatedChoices. - -Tokenized incremental autocompletion is enabled automatically -when an autocompleter is instantiated with the 'tokens' option -in the options parameter, e.g.: -new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' }); -will incrementally autocomplete with a comma as the token. -Additionally, ',' in the above example can be replaced with -a token array, e.g. { tokens: [',', '\n'] } which -enables autocompletion on multiple tokens. This is most -useful when one of the tokens is \n (a newline), as it -allows smart autocompletion after linebreaks. - -***/ - -MochiKit.Base.update(MochiKit.Base, { - ScriptFragment: '(?:)((\n|\r|.)*?)(?:<\/script>)', - -/** @id MochiKit.Base.stripScripts */ - stripScripts: function (str) { - return str.replace(new RegExp(MochiKit.Base.ScriptFragment, 'img'), ''); - }, - -/** @id MochiKit.Base.stripTags */ - stripTags: function(str) { - return str.replace(/<\/?[^>]+>/gi, ''); - }, - -/** @id MochiKit.Base.extractScripts */ - extractScripts: function (str) { - var matchAll = new RegExp(MochiKit.Base.ScriptFragment, 'img'); - var matchOne = new RegExp(MochiKit.Base.ScriptFragment, 'im'); - return MochiKit.Base.map(function (scriptTag) { - return (scriptTag.match(matchOne) || ['', ''])[1]; - }, str.match(matchAll) || []); - }, - -/** @id MochiKit.Base.evalScripts */ - evalScripts: function (str) { - return MochiKit.Base.map(function (scr) { - eval(scr); - }, MochiKit.Base.extractScripts(str)); - } -}); - -MochiKit.Form = { - -/** @id MochiKit.Form.serialize */ - serialize: function (form) { - var elements = MochiKit.Form.getElements(form); - var queryComponents = []; - - for (var i = 0; i < elements.length; i++) { - var queryComponent = MochiKit.Form.serializeElement(elements[i]); - if (queryComponent) { - queryComponents.push(queryComponent); - } - } - - return queryComponents.join('&'); - }, - -/** @id MochiKit.Form.getElements */ - getElements: function (form) { - form = MochiKit.DOM.getElement(form); - var elements = []; - - for (tagName in MochiKit.Form.Serializers) { - var tagElements = form.getElementsByTagName(tagName); - for (var j = 0; j < tagElements.length; j++) { - elements.push(tagElements[j]); - } - } - return elements; - }, - -/** @id MochiKit.Form.serializeElement */ - serializeElement: function (element) { - element = MochiKit.DOM.getElement(element); - var method = element.tagName.toLowerCase(); - var parameter = MochiKit.Form.Serializers[method](element); - - if (parameter) { - var key = encodeURIComponent(parameter[0]); - if (key.length === 0) { - return; - } - - if (!(parameter[1] instanceof Array)) { - parameter[1] = [parameter[1]]; - } - - return parameter[1].map(function (value) { - return key + '=' + encodeURIComponent(value); - }).join('&'); - } - } -}; - -MochiKit.Form.Serializers = { - -/** @id MochiKit.Form.Serializers.input */ - input: function (element) { - switch (element.type.toLowerCase()) { - case 'submit': - case 'hidden': - case 'password': - case 'text': - return MochiKit.Form.Serializers.textarea(element); - case 'checkbox': - case 'radio': - return MochiKit.Form.Serializers.inputSelector(element); - } - return false; - }, - -/** @id MochiKit.Form.Serializers.inputSelector */ - inputSelector: function (element) { - if (element.checked) { - return [element.name, element.value]; - } - }, - -/** @id MochiKit.Form.Serializers.textarea */ - textarea: function (element) { - return [element.name, element.value]; - }, - -/** @id MochiKit.Form.Serializers.select */ - select: function (element) { - return MochiKit.Form.Serializers[element.type == 'select-one' ? - 'selectOne' : 'selectMany'](element); - }, - -/** @id MochiKit.Form.Serializers.selectOne */ - selectOne: function (element) { - var value = '', opt, index = element.selectedIndex; - if (index >= 0) { - opt = element.options[index]; - value = opt.value; - if (!value && !('value' in opt)) { - value = opt.text; - } - } - return [element.name, value]; - }, - -/** @id MochiKit.Form.Serializers.selectMany */ - selectMany: function (element) { - var value = []; - for (var i = 0; i < element.length; i++) { - var opt = element.options[i]; - if (opt.selected) { - var optValue = opt.value; - if (!optValue && !('value' in opt)) { - optValue = opt.text; - } - value.push(optValue); - } - } - return [element.name, value]; - } -}; - -/** @id Ajax */ -var Ajax = { - activeRequestCount: 0 -}; - -Ajax.Responders = { - responders: [], - -/** @id Ajax.Responders.register */ - register: function (responderToAdd) { - if (MochiKit.Base.find(this.responders, responderToAdd) == -1) { - this.responders.push(responderToAdd); - } - }, - -/** @id Ajax.Responders.unregister */ - unregister: function (responderToRemove) { - this.responders = this.responders.without(responderToRemove); - }, - -/** @id Ajax.Responders.dispatch */ - dispatch: function (callback, request, transport, json) { - MochiKit.Iter.forEach(this.responders, function (responder) { - if (responder[callback] && - typeof(responder[callback]) == 'function') { - try { - responder[callback].apply(responder, [request, transport, json]); - } catch (e) {} - } - }); - } -}; - -Ajax.Responders.register({ - -/** @id Ajax.Responders.onCreate */ - onCreate: function () { - Ajax.activeRequestCount++; - }, - -/** @id Ajax.Responders.onComplete */ - onComplete: function () { - Ajax.activeRequestCount--; - } -}); - -/** @id Ajax.Base */ -Ajax.Base = function () {}; - -Ajax.Base.prototype = { - -/** @id Ajax.Base.prototype.setOptions */ - setOptions: function (options) { - this.options = { - method: 'post', - asynchronous: true, - parameters: '' - } - MochiKit.Base.update(this.options, options || {}); - }, - -/** @id Ajax.Base.prototype.responseIsSuccess */ - responseIsSuccess: function () { - return this.transport.status == undefined - || this.transport.status === 0 - || (this.transport.status >= 200 && this.transport.status < 300); - }, - -/** @id Ajax.Base.prototype.responseIsFailure */ - responseIsFailure: function () { - return !this.responseIsSuccess(); - } -}; - -/** @id Ajax.Request */ -Ajax.Request = function (url, options) { - this.__init__(url, options); -}; - -/** @id Ajax.Events */ -Ajax.Request.Events = ['Uninitialized', 'Loading', 'Loaded', - 'Interactive', 'Complete']; - -MochiKit.Base.update(Ajax.Request.prototype, Ajax.Base.prototype); - -MochiKit.Base.update(Ajax.Request.prototype, { - __init__: function (url, options) { - this.transport = MochiKit.Async.getXMLHttpRequest(); - this.setOptions(options); - this.request(url); - }, - -/** @id Ajax.Request.prototype.request */ - request: function (url) { - var parameters = this.options.parameters || ''; - if (parameters.length > 0){ - parameters += '&_='; - } - - try { - this.url = url; - if (this.options.method == 'get' && parameters.length > 0) { - this.url += (this.url.match(/\?/) ? '&' : '?') + parameters; - } - Ajax.Responders.dispatch('onCreate', this, this.transport); - - this.transport.open(this.options.method, this.url, - this.options.asynchronous); - - if (this.options.asynchronous) { - this.transport.onreadystatechange = MochiKit.Base.bind(this.onStateChange, this); - setTimeout(MochiKit.Base.bind(function () { - this.respondToReadyState(1); - }, this), 10); - } - - this.setRequestHeaders(); - - var body = this.options.postBody ? this.options.postBody : parameters; - this.transport.send(this.options.method == 'post' ? body : null); - - } catch (e) { - this.dispatchException(e); - } - }, - -/** @id Ajax.Request.prototype.setRequestHeaders */ - setRequestHeaders: function () { - var requestHeaders = ['X-Requested-With', 'XMLHttpRequest']; - - if (this.options.method == 'post') { - requestHeaders.push('Content-type', - 'application/x-www-form-urlencoded'); - - /* Force 'Connection: close' for Mozilla browsers to work around - * a bug where XMLHttpRequest sends an incorrect Content-length - * header. See Mozilla Bugzilla #246651. - */ - if (this.transport.overrideMimeType) { - requestHeaders.push('Connection', 'close'); - } - } - - if (this.options.requestHeaders) { - requestHeaders.push.apply(requestHeaders, this.options.requestHeaders); - } - - for (var i = 0; i < requestHeaders.length; i += 2) { - this.transport.setRequestHeader(requestHeaders[i], requestHeaders[i+1]); - } - }, - -/** @id Ajax.Request.prototype.onStateChange */ - onStateChange: function () { - var readyState = this.transport.readyState; - if (readyState != 1) { - this.respondToReadyState(this.transport.readyState); - } - }, - -/** @id Ajax.Request.prototype.header */ - header: function (name) { - try { - return this.transport.getResponseHeader(name); - } catch (e) {} - }, - -/** @id Ajax.Request.prototype.evalJSON */ - evalJSON: function () { - try { - return eval(this.header('X-JSON')); - } catch (e) {} - }, - -/** @id Ajax.Request.prototype.evalResponse */ - evalResponse: function () { - try { - return eval(this.transport.responseText); - } catch (e) { - this.dispatchException(e); - } - }, - -/** @id Ajax.Request.prototype.respondToReadyState */ - respondToReadyState: function (readyState) { - var event = Ajax.Request.Events[readyState]; - var transport = this.transport, json = this.evalJSON(); - - if (event == 'Complete') { - try { - (this.options['on' + this.transport.status] - || this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')] - || MochiKit.Base.noop)(transport, json); - } catch (e) { - this.dispatchException(e); - } - - if ((this.header('Content-type') || '').match(/^text\/javascript/i)) { - this.evalResponse(); - } - } - - try { - (this.options['on' + event] || MochiKit.Base.noop)(transport, json); - Ajax.Responders.dispatch('on' + event, this, transport, json); - } catch (e) { - this.dispatchException(e); - } - - /* Avoid memory leak in MSIE: clean up the oncomplete event handler */ - if (event == 'Complete') { - this.transport.onreadystatechange = MochiKit.Base.noop; - } - }, - -/** @id Ajax.Request.prototype.dispatchException */ - dispatchException: function (exception) { - (this.options.onException || MochiKit.Base.noop)(this, exception); - Ajax.Responders.dispatch('onException', this, exception); - } -}); - -/** @id Ajax.Updater */ -Ajax.Updater = function (container, url, options) { - this.__init__(container, url, options); -}; - -MochiKit.Base.update(Ajax.Updater.prototype, Ajax.Request.prototype); - -MochiKit.Base.update(Ajax.Updater.prototype, { - __init__: function (container, url, options) { - this.containers = { - success: container.success ? MochiKit.DOM.getElement(container.success) : MochiKit.DOM.getElement(container), - failure: container.failure ? MochiKit.DOM.getElement(container.failure) : - (container.success ? null : MochiKit.DOM.getElement(container)) - } - this.transport = MochiKit.Async.getXMLHttpRequest(); - this.setOptions(options); - - var onComplete = this.options.onComplete || MochiKit.Base.noop; - this.options.onComplete = MochiKit.Base.bind(function (transport, object) { - this.updateContent(); - onComplete(transport, object); - }, this); - - this.request(url); - }, - -/** @id Ajax.Updater.prototype.updateContent */ - updateContent: function () { - var receiver = this.responseIsSuccess() ? - this.containers.success : this.containers.failure; - var response = this.transport.responseText; - - if (!this.options.evalScripts) { - response = MochiKit.Base.stripScripts(response); - } - - if (receiver) { - if (this.options.insertion) { - new this.options.insertion(receiver, response); - } else { - MochiKit.DOM.getElement(receiver).innerHTML = - MochiKit.Base.stripScripts(response); - setTimeout(function () { - MochiKit.Base.evalScripts(response); - }, 10); - } - } - - if (this.responseIsSuccess()) { - if (this.onComplete) { - setTimeout(MochiKit.Base.bind(this.onComplete, this), 10); - } - } - } -}); - -/** @id Field */ -var Field = { - -/** @id clear */ - clear: function () { - for (var i = 0; i < arguments.length; i++) { - MochiKit.DOM.getElement(arguments[i]).value = ''; - } - }, - -/** @id focus */ - focus: function (element) { - MochiKit.DOM.getElement(element).focus(); - }, - -/** @id present */ - present: function () { - for (var i = 0; i < arguments.length; i++) { - if (MochiKit.DOM.getElement(arguments[i]).value == '') { - return false; - } - } - return true; - }, - -/** @id select */ - select: function (element) { - MochiKit.DOM.getElement(element).select(); - }, - -/** @id activate */ - activate: function (element) { - element = MochiKit.DOM.getElement(element); - element.focus(); - if (element.select) { - element.select(); - } - }, - -/** @id scrollFreeActivate */ - scrollFreeActivate: function (field) { - setTimeout(function () { - Field.activate(field); - }, 1); - } -}; - - -/** @id Autocompleter */ -var Autocompleter = {}; - -/** @id Autocompleter.Base */ -Autocompleter.Base = function () {}; - -Autocompleter.Base.prototype = { - -/** @id Autocompleter.Base.prototype.baseInitialize */ - baseInitialize: function (element, update, options) { - this.element = MochiKit.DOM.getElement(element); - this.update = MochiKit.DOM.getElement(update); - this.hasFocus = false; - this.changed = false; - this.active = false; - this.index = 0; - this.entryCount = 0; - - if (this.setOptions) { - this.setOptions(options); - } - else { - this.options = options || {}; - } - - this.options.paramName = this.options.paramName || this.element.name; - this.options.tokens = this.options.tokens || []; - this.options.frequency = this.options.frequency || 0.4; - this.options.minChars = this.options.minChars || 1; - this.options.onShow = this.options.onShow || function (element, update) { - if (!update.style.position || update.style.position == 'absolute') { - update.style.position = 'absolute'; - MochiKit.Position.clone(element, update, { - setHeight: false, - offsetTop: element.offsetHeight - }); - } - MochiKit.Visual.appear(update, {duration:0.15}); - }; - this.options.onHide = this.options.onHide || function (element, update) { - MochiKit.Visual.fade(update, {duration: 0.15}); - }; - - if (typeof(this.options.tokens) == 'string') { - this.options.tokens = new Array(this.options.tokens); - } - - this.observer = null; - - this.element.setAttribute('autocomplete', 'off'); - - MochiKit.Style.hideElement(this.update); - - MochiKit.Signal.connect(this.element, 'onblur', this, this.onBlur); - MochiKit.Signal.connect(this.element, 'onkeypress', this, this.onKeyPress, this); - }, - -/** @id Autocompleter.Base.prototype.show */ - show: function () { - if (MochiKit.Style.getStyle(this.update, 'display') == 'none') { - this.options.onShow(this.element, this.update); - } - if (!this.iefix && /MSIE/.test(navigator.userAgent && - (MochiKit.Style.getStyle(this.update, 'position') == 'absolute')) { - new Insertion.After(this.update, - ''); - this.iefix = MochiKit.DOM.getElement(this.update.id + '_iefix'); - } - if (this.iefix) { - setTimeout(MochiKit.Base.bind(this.fixIEOverlapping, this), 50); - } - }, - -/** @id Autocompleter.Base.prototype.fixIEOverlapping */ - fixIEOverlapping: function () { - MochiKit.Position.clone(this.update, this.iefix); - this.iefix.style.zIndex = 1; - this.update.style.zIndex = 2; - MochiKit.Style.showElement(this.iefix); - }, - -/** @id Autocompleter.Base.prototype.hide */ - hide: function () { - this.stopIndicator(); - if (MochiKit.Style.getStyle(this.update, 'display') != 'none') { - this.options.onHide(this.element, this.update); - } - if (this.iefix) { - MochiKit.Style.hideElement(this.iefix); - } - }, - -/** @id Autocompleter.Base.prototype.startIndicator */ - startIndicator: function () { - if (this.options.indicator) { - MochiKit.Style.showElement(this.options.indicator); - } - }, - -/** @id Autocompleter.Base.prototype.stopIndicator */ - stopIndicator: function () { - if (this.options.indicator) { - MochiKit.Style.hideElement(this.options.indicator); - } - }, - -/** @id Autocompleter.Base.prototype.onKeyPress */ - onKeyPress: function (event) { - if (this.active) { - if (event.key().string == "KEY_TAB" || event.key().string == "KEY_RETURN") { - this.selectEntry(); - MochiKit.Event.stop(event); - } else if (event.key().string == "KEY_ESCAPE") { - this.hide(); - this.active = false; - MochiKit.Event.stop(event); - return; - } else if (event.key().string == "KEY_LEFT" || event.key().string == "KEY_RIGHT") { - return; - } else if (event.key().string == "KEY_UP") { - this.markPrevious(); - this.render(); - if (/AppleWebKit'/.test(navigator.appVersion)) { - event.stop(); - } - return; - } else if (event.key().string == "KEY_DOWN") { - this.markNext(); - this.render(); - if (/AppleWebKit'/.test(navigator.appVersion)) { - event.stop(); - } - return; - } - } else { - if (event.key().string == "KEY_TAB" || event.key().string == "KEY_RETURN") { - return; - } - } - - this.changed = true; - this.hasFocus = true; - - if (this.observer) { - clearTimeout(this.observer); - } - this.observer = setTimeout(MochiKit.Base.bind(this.onObserverEvent, this), - this.options.frequency*1000); - }, - -/** @id Autocompleter.Base.prototype.findElement */ - findElement: function (event, tagName) { - var element = event.target; - while (element.parentNode && (!element.tagName || - (element.tagName.toUpperCase() != tagName.toUpperCase()))) { - element = element.parentNode; - } - return element; - }, - -/** @id Autocompleter.Base.prototype.hover */ - onHover: function (event) { - var element = this.findElement(event, 'LI'); - if (this.index != element.autocompleteIndex) { - this.index = element.autocompleteIndex; - this.render(); - } - event.stop(); - }, - -/** @id Autocompleter.Base.prototype.onClick */ - onClick: function (event) { - var element = this.findElement(event, 'LI'); - this.index = element.autocompleteIndex; - this.selectEntry(); - this.hide(); - }, - -/** @id Autocompleter.Base.prototype.onBlur */ - onBlur: function (event) { - // needed to make click events working - setTimeout(MochiKit.Base.bind(this.hide, this), 250); - this.hasFocus = false; - this.active = false; - }, - -/** @id Autocompleter.Base.prototype.render */ - render: function () { - if (this.entryCount > 0) { - for (var i = 0; i < this.entryCount; i++) { - this.index == i ? - MochiKit.DOM.addElementClass(this.getEntry(i), 'selected') : - MochiKit.DOM.removeElementClass(this.getEntry(i), 'selected'); - } - if (this.hasFocus) { - this.show(); - this.active = true; - } - } else { - this.active = false; - this.hide(); - } - }, - -/** @id Autocompleter.Base.prototype.markPrevious */ - markPrevious: function () { - if (this.index > 0) { - this.index-- - } else { - this.index = this.entryCount-1; - } - }, - -/** @id Autocompleter.Base.prototype.markNext */ - markNext: function () { - if (this.index < this.entryCount-1) { - this.index++ - } else { - this.index = 0; - } - }, - -/** @id Autocompleter.Base.prototype.getEntry */ - getEntry: function (index) { - return this.update.firstChild.childNodes[index]; - }, - -/** @id Autocompleter.Base.prototype.getCurrentEntry */ - getCurrentEntry: function () { - return this.getEntry(this.index); - }, - -/** @id Autocompleter.Base.prototype.selectEntry */ - selectEntry: function () { - this.active = false; - this.updateElement(this.getCurrentEntry()); - }, - -/** @id Autocompleter.Base.prototype.collectTextNodesIgnoreClass */ - collectTextNodesIgnoreClass: function (element, className) { - return MochiKit.Base.flattenArray(MochiKit.Base.map(function (node) { - if (node.nodeType == 3) { - return node.nodeValue; - } else if (node.hasChildNodes() && !MochiKit.DOM.hasElementClass(node, className)) { - return this.collectTextNodesIgnoreClass(node, className); - } - return ''; - }, MochiKit.DOM.getElement(element).childNodes)).join(''); - }, - -/** @id Autocompleter.Base.prototype.updateElement */ - updateElement: function (selectedElement) { - if (this.options.updateElement) { - this.options.updateElement(selectedElement); - return; - } - var value = ''; - if (this.options.select) { - var nodes = document.getElementsByClassName(this.options.select, selectedElement) || []; - if (nodes.length > 0) { - value = MochiKit.DOM.scrapeText(nodes[0]); - } - } else { - value = this.collectTextNodesIgnoreClass(selectedElement, 'informal'); - } - var lastTokenPos = this.findLastToken(); - if (lastTokenPos != -1) { - var newValue = this.element.value.substr(0, lastTokenPos + 1); - var whitespace = this.element.value.substr(lastTokenPos + 1).match(/^\s+/); - if (whitespace) { - newValue += whitespace[0]; - } - this.element.value = newValue + value; - } else { - this.element.value = value; - } - this.element.focus(); - - if (this.options.afterUpdateElement) { - this.options.afterUpdateElement(this.element, selectedElement); - } - }, - -/** @id Autocompleter.Base.prototype.updateChoices */ - updateChoices: function (choices) { - if (!this.changed && this.hasFocus) { - this.update.innerHTML = choices; - var d = MochiKit.DOM; - d.removeEmptyTextNodes(this.update); - d.removeEmptyTextNodes(this.update.firstChild); - - if (this.update.firstChild && this.update.firstChild.childNodes) { - this.entryCount = this.update.firstChild.childNodes.length; - for (var i = 0; i < this.entryCount; i++) { - var entry = this.getEntry(i); - entry.autocompleteIndex = i; - this.addObservers(entry); - } - } else { - this.entryCount = 0; - } - - this.stopIndicator(); - - this.index = 0; - this.render(); - } - }, - -/** @id Autocompleter.Base.prototype.addObservers */ - addObservers: function (element) { - MochiKit.Signal.connect(element, 'onmouseover', this, this.onHover); - MochiKit.Signal.connect(element, 'onclick', this, this.onClick); - }, - -/** @id Autocompleter.Base.prototype.onObserverEvent */ - onObserverEvent: function () { - this.changed = false; - if (this.getToken().length >= this.options.minChars) { - this.startIndicator(); - this.getUpdatedChoices(); - } else { - this.active = false; - this.hide(); - } - }, - -/** @id Autocompleter.Base.prototype.getToken */ - getToken: function () { - var tokenPos = this.findLastToken(); - if (tokenPos != -1) { - var ret = this.element.value.substr(tokenPos + 1).replace(/^\s+/,'').replace(/\s+$/,''); - } else { - var ret = this.element.value; - } - return /\n/.test(ret) ? '' : ret; - }, - -/** @id Autocompleter.Base.prototype.findLastToken */ - findLastToken: function () { - var lastTokenPos = -1; - - for (var i = 0; i < this.options.tokens.length; i++) { - var thisTokenPos = this.element.value.lastIndexOf(this.options.tokens[i]); - if (thisTokenPos > lastTokenPos) { - lastTokenPos = thisTokenPos; - } - } - return lastTokenPos; - } -} - -/** @id Ajax.Autocompleter */ -Ajax.Autocompleter = function (element, update, url, options) { - this.__init__(element, update, url, options); -}; - -MochiKit.Base.update(Ajax.Autocompleter.prototype, Autocompleter.Base.prototype); - -MochiKit.Base.update(Ajax.Autocompleter.prototype, { - __init__: function (element, update, url, options) { - this.baseInitialize(element, update, options); - this.options.asynchronous = true; - this.options.onComplete = MochiKit.Base.bind(this.onComplete, this); - this.options.defaultParams = this.options.parameters || null; - this.url = url; - }, - -/** @id Ajax.Autocompleter.prototype.getUpdatedChoices */ - getUpdatedChoices: function () { - var entry = encodeURIComponent(this.options.paramName) + '=' + - encodeURIComponent(this.getToken()); - - this.options.parameters = this.options.callback ? - this.options.callback(this.element, entry) : entry; - - if (this.options.defaultParams) { - this.options.parameters += '&' + this.options.defaultParams; - } - new Ajax.Request(this.url, this.options); - }, - -/** @id Ajax.Autocompleter.prototype.onComplete */ - onComplete: function (request) { - this.updateChoices(request.responseText); - } -}); - -/*** - -The local array autocompleter. Used when you'd prefer to -inject an array of autocompletion options into the page, rather -than sending out Ajax queries, which can be quite slow sometimes. - -The constructor takes four parameters. The first two are, as usual, -the id of the monitored textbox, and id of the autocompletion menu. -The third is the array you want to autocomplete from, and the fourth -is the options block. - -Extra local autocompletion options: -- choices - How many autocompletion choices to offer - -- partialSearch - If false, the autocompleter will match entered - text only at the beginning of strings in the - autocomplete array. Defaults to true, which will - match text at the beginning of any *word* in the - strings in the autocomplete array. If you want to - search anywhere in the string, additionally set - the option fullSearch to true (default: off). - -- fullSsearch - Search anywhere in autocomplete array strings. - -- partialChars - How many characters to enter before triggering - a partial match (unlike minChars, which defines - how many characters are required to do any match - at all). Defaults to 2. - -- ignoreCase - Whether to ignore case when autocompleting. - Defaults to true. - -It's possible to pass in a custom function as the 'selector' -option, if you prefer to write your own autocompletion logic. -In that case, the other options above will not apply unless -you support them. - -***/ - -/** @id Autocompleter.Local */ -Autocompleter.Local = function (element, update, array, options) { - this.__init__(element, update, array, options); -}; - -MochiKit.Base.update(Autocompleter.Local.prototype, Autocompleter.Base.prototype); - -MochiKit.Base.update(Autocompleter.Local.prototype, { - __init__: function (element, update, array, options) { - this.baseInitialize(element, update, options); - this.options.array = array; - }, - -/** @id Autocompleter.Local.prototype.getUpdatedChoices */ - getUpdatedChoices: function () { - this.updateChoices(this.options.selector(this)); - }, - -/** @id Autocompleter.Local.prototype.setOptions */ - setOptions: function (options) { - this.options = MochiKit.Base.update({ - choices: 10, - partialSearch: true, - partialChars: 2, - ignoreCase: true, - fullSearch: false, - selector: function (instance) { - var ret = []; // Beginning matches - var partial = []; // Inside matches - var entry = instance.getToken(); - var count = 0; - - for (var i = 0; i < instance.options.array.length && - ret.length < instance.options.choices ; i++) { - - var elem = instance.options.array[i]; - var foundPos = instance.options.ignoreCase ? - elem.toLowerCase().indexOf(entry.toLowerCase()) : - elem.indexOf(entry); - - while (foundPos != -1) { - if (foundPos === 0 && elem.length != entry.length) { - ret.push('
  • ' + elem.substr(0, entry.length) + '' + - elem.substr(entry.length) + '
  • '); - break; - } else if (entry.length >= instance.options.partialChars && - instance.options.partialSearch && foundPos != -1) { - if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos - 1, 1))) { - partial.push('
  • ' + elem.substr(0, foundPos) + '' + - elem.substr(foundPos, entry.length) + '' + elem.substr( - foundPos + entry.length) + '
  • '); - break; - } - } - - foundPos = instance.options.ignoreCase ? - elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) : - elem.indexOf(entry, foundPos + 1); - - } - } - if (partial.length) { - ret = ret.concat(partial.slice(0, instance.options.choices - ret.length)) - } - return '
      ' + ret.join('') + '
    '; - } - }, options || {}); - } -}); - -/*** - -AJAX in-place editor - -see documentation on http://wiki.script.aculo.us/scriptaculous/show/Ajax.InPlaceEditor - -Use this if you notice weird scrolling problems on some browsers, -the DOM might be a bit confused when this gets called so do this -waits 1 ms (with setTimeout) until it does the activation - -***/ - -/** @id Ajax.InPlaceEditor */ -Ajax.InPlaceEditor = function (element, url, options) { - this.__init__(element, url, options); -}; - -/** @id Ajax.InPlaceEditor.defaultHighlightColor */ -Ajax.InPlaceEditor.defaultHighlightColor = '#FFFF99'; - -Ajax.InPlaceEditor.prototype = { - __init__: function (element, url, options) { - this.url = url; - this.element = MochiKit.DOM.getElement(element); - - this.options = MochiKit.Base.update({ - okButton: true, - okText: 'ok', - cancelLink: true, - cancelText: 'cancel', - savingText: 'Saving...', - clickToEditText: 'Click to edit', - okText: 'ok', - rows: 1, - onComplete: function (transport, element) { - new MochiKit.Visual.Highlight(element, {startcolor: this.options.highlightcolor}); - }, - onFailure: function (transport) { - alert('Error communicating with the server: ' + MochiKit.Base.stripTags(transport.responseText)); - }, - callback: function (form) { - return MochiKit.DOM.formContents(form); - }, - handleLineBreaks: true, - loadingText: 'Loading...', - savingClassName: 'inplaceeditor-saving', - loadingClassName: 'inplaceeditor-loading', - formClassName: 'inplaceeditor-form', - highlightcolor: Ajax.InPlaceEditor.defaultHighlightColor, - highlightendcolor: '#FFFFFF', - externalControl: null, - submitOnBlur: false, - ajaxOptions: {} - }, options || {}); - - if (!this.options.formId && this.element.id) { - this.options.formId = this.element.id + '-inplaceeditor'; - if (MochiKit.DOM.getElement(this.options.formId)) { - // there's already a form with that name, don't specify an id - this.options.formId = null; - } - } - - if (this.options.externalControl) { - this.options.externalControl = MochiKit.DOM.getElement(this.options.externalControl); - } - - this.originalBackground = MochiKit.Style.getStyle(this.element, 'background-color'); - if (!this.originalBackground) { - this.originalBackground = 'transparent'; - } - - this.element.title = this.options.clickToEditText; - - this.onclickListener = MochiKit.Signal.connect(this.element, 'onclick', this, this.enterEditMode); - this.mouseoverListener = MochiKit.Signal.connect(this.element, 'onmouseover', this, this.enterHover); - this.mouseoutListener = MochiKit.Signal.connect(this.element, 'onmouseout', this, this.leaveHover); - if (this.options.externalControl) { - this.onclickListenerExternal = MochiKit.Signal.connect(this.options.externalControl, - 'onclick', this, this.enterEditMode); - this.mouseoverListenerExternal = MochiKit.Signal.connect(this.options.externalControl, - 'onmouseover', this, this.enterHover); - this.mouseoutListenerExternal = MochiKit.Signal.connect(this.options.externalControl, - 'onmouseout', this, this.leaveHover); - } - }, - -/** @id Ajax.InPlaceEditor.prototype.enterEditMode */ - enterEditMode: function (evt) { - if (this.saving) { - return; - } - if (this.editing) { - return; - } - this.editing = true; - this.onEnterEditMode(); - if (this.options.externalControl) { - MochiKit.Style.hideElement(this.options.externalControl); - } - MochiKit.Style.hideElement(this.element); - this.createForm(); - this.element.parentNode.insertBefore(this.form, this.element); - Field.scrollFreeActivate(this.editField); - // stop the event to avoid a page refresh in Safari - if (evt) { - evt.stop(); - } - return false; - }, - -/** @id Ajax.InPlaceEditor.prototype.createForm */ - createForm: function () { - this.form = document.createElement('form'); - this.form.id = this.options.formId; - MochiKit.DOM.addElementClass(this.form, this.options.formClassName) - this.form.onsubmit = MochiKit.Base.bind(this.onSubmit, this); - - this.createEditField(); - - if (this.options.textarea) { - var br = document.createElement('br'); - this.form.appendChild(br); - } - - if (this.options.okButton) { - okButton = document.createElement('input'); - okButton.type = 'submit'; - okButton.value = this.options.okText; - this.form.appendChild(okButton); - } - - if (this.options.cancelLink) { - cancelLink = document.createElement('a'); - cancelLink.href = '#'; - cancelLink.appendChild(document.createTextNode(this.options.cancelText)); - cancelLink.onclick = MochiKit.Base.bind(this.onclickCancel, this); - this.form.appendChild(cancelLink); - } - }, - -/** @id Ajax.InPlaceEditor.prototype.hasHTMLLineBreaks */ - hasHTMLLineBreaks: function (string) { - if (!this.options.handleLineBreaks) { - return false; - } - return string.match(/
    /i); - }, - -/** @id Ajax.InPlaceEditor.prototype.convertHTMLLineBreaks */ - convertHTMLLineBreaks: function (string) { - return string.replace(/
    /gi, '\n').replace(//gi, '\n').replace(/<\/p>/gi, '\n').replace(/

    /gi, ''); - }, - -/** @id Ajax.InPlaceEditor.prototype.createEditField */ - createEditField: function () { - var text; - if (this.options.loadTextURL) { - text = this.options.loadingText; - } else { - text = this.getText(); - } - - var obj = this; - - if (this.options.rows == 1 && !this.hasHTMLLineBreaks(text)) { - this.options.textarea = false; - var textField = document.createElement('input'); - textField.obj = this; - textField.type = 'text'; - textField.name = 'value'; - textField.value = text; - textField.style.backgroundColor = this.options.highlightcolor; - var size = this.options.size || this.options.cols || 0; - if (size !== 0) { - textField.size = size; - } - if (this.options.submitOnBlur) { - textField.onblur = MochiKit.Base.bind(this.onSubmit, this); - } - this.editField = textField; - } else { - this.options.textarea = true; - var textArea = document.createElement('textarea'); - textArea.obj = this; - textArea.name = 'value'; - textArea.value = this.convertHTMLLineBreaks(text); - textArea.rows = this.options.rows; - textArea.cols = this.options.cols || 40; - if (this.options.submitOnBlur) { - textArea.onblur = MochiKit.Base.bind(this.onSubmit, this); - } - this.editField = textArea; - } - - if (this.options.loadTextURL) { - this.loadExternalText(); - } - this.form.appendChild(this.editField); - }, - -/** @id Ajax.InPlaceEditor.prototype.getText */ - getText: function () { - return this.element.innerHTML; - }, - -/** @id Ajax.InPlaceEditor.prototype.loadExternalText */ - loadExternalText: function () { - MochiKit.DOM.addElementClass(this.form, this.options.loadingClassName); - this.editField.disabled = true; - new Ajax.Request( - this.options.loadTextURL, - MochiKit.Base.update({ - asynchronous: true, - onComplete: MochiKit.Base.bind(this.onLoadedExternalText, this) - }, this.options.ajaxOptions) - ); - }, - -/** @id Ajax.InPlaceEditor.prototype.onLoadedExternalText */ - onLoadedExternalText: function (transport) { - MochiKit.DOM.removeElementClass(this.form, this.options.loadingClassName); - this.editField.disabled = false; - this.editField.value = MochiKit.Base.stripTags(transport); - }, - -/** @id Ajax.InPlaceEditor.prototype.onclickCancel */ - onclickCancel: function () { - this.onComplete(); - this.leaveEditMode(); - return false; - }, - -/** @id Ajax.InPlaceEditor.prototype.onFailure */ - onFailure: function (transport) { - this.options.onFailure(transport); - if (this.oldInnerHTML) { - this.element.innerHTML = this.oldInnerHTML; - this.oldInnerHTML = null; - } - return false; - }, - -/** @id Ajax.InPlaceEditor.prototype.onSubmit */ - onSubmit: function () { - // onLoading resets these so we need to save them away for the Ajax call - var form = this.form; - var value = this.editField.value; - - // do this first, sometimes the ajax call returns before we get a - // chance to switch on Saving which means this will actually switch on - // Saving *after* we have left edit mode causing Saving to be - // displayed indefinitely - this.onLoading(); - - new Ajax.Updater( - { - success: this.element, - // dont update on failure (this could be an option) - failure: null - }, - this.url, - MochiKit.Base.update({ - parameters: this.options.callback(form, value), - onComplete: MochiKit.Base.bind(this.onComplete, this), - onFailure: MochiKit.Base.bind(this.onFailure, this) - }, this.options.ajaxOptions) - ); - // stop the event to avoid a page refresh in Safari - if (arguments.length > 1) { - arguments[0].stop(); - } - return false; - }, - -/** @id Ajax.InPlaceEditor.prototype.onLoading */ - onLoading: function () { - this.saving = true; - this.removeForm(); - this.leaveHover(); - this.showSaving(); - }, - -/** @id Ajax.InPlaceEditor.prototype.onSaving */ - showSaving: function () { - this.oldInnerHTML = this.element.innerHTML; - this.element.innerHTML = this.options.savingText; - MochiKit.DOM.addElementClass(this.element, this.options.savingClassName); - this.element.style.backgroundColor = this.originalBackground; - MochiKit.Style.showElement(this.element); - }, - -/** @id Ajax.InPlaceEditor.prototype.removeForm */ - removeForm: function () { - if (this.form) { - if (this.form.parentNode) { - MochiKit.DOM.removeElement(this.form); - } - this.form = null; - } - }, - -/** @id Ajax.InPlaceEditor.prototype.enterHover */ - enterHover: function () { - if (this.saving) { - return; - } - this.element.style.backgroundColor = this.options.highlightcolor; - if (this.effect) { - this.effect.cancel(); - } - MochiKit.DOM.addElementClass(this.element, this.options.hoverClassName) - }, - -/** @id Ajax.InPlaceEditor.prototype.leaveHover */ - leaveHover: function () { - if (this.options.backgroundColor) { - this.element.style.backgroundColor = this.oldBackground; - } - MochiKit.DOM.removeElementClass(this.element, this.options.hoverClassName) - if (this.saving) { - return; - } - this.effect = new MochiKit.Visual.Highlight(this.element, { - startcolor: this.options.highlightcolor, - endcolor: this.options.highlightendcolor, - restorecolor: this.originalBackground - }); - }, - -/** @id Ajax.InPlaceEditor.prototype.leaveEditMode */ - leaveEditMode: function () { - MochiKit.DOM.removeElementClass(this.element, this.options.savingClassName); - this.removeForm(); - this.leaveHover(); - this.element.style.backgroundColor = this.originalBackground; - MochiKit.Style.showElement(this.element); - if (this.options.externalControl) { - MochiKit.Style.showElement(this.options.externalControl); - } - this.editing = false; - this.saving = false; - this.oldInnerHTML = null; - this.onLeaveEditMode(); - }, - -/** @id Ajax.InPlaceEditor.prototype.onComplete */ - onComplete: function (transport) { - this.leaveEditMode(); - MochiKit.Base.bind(this.options.onComplete, this)(transport, this.element); - }, - -/** @id Ajax.InPlaceEditor.prototype.onEnterEditMode */ - onEnterEditMode: function () {}, - -/** @id Ajax.InPlaceEditor.prototype.onLeaveEditMode */ - onLeaveEditMode: function () {}, - - /** @id Ajax.InPlaceEditor.prototype.dispose */ - dispose: function () { - if (this.oldInnerHTML) { - this.element.innerHTML = this.oldInnerHTML; - } - this.leaveEditMode(); - MochiKit.Signal.disconnect(this.onclickListener); - MochiKit.Signal.disconnect(this.mouseoverListener); - MochiKit.Signal.disconnect(this.mouseoutListener); - if (this.options.externalControl) { - MochiKit.Signal.disconnect(this.onclickListenerExternal); - MochiKit.Signal.disconnect(this.mouseoverListenerExternal); - MochiKit.Signal.disconnect(this.mouseoutListenerExternal); - } - } -}; - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DOM.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DOM.js deleted file mode 100755 index caff07ec2..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DOM.js +++ /dev/null @@ -1,1043 +0,0 @@ -/*** - -MochiKit.DOM 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide("MochiKit.DOM"); - dojo.require("MochiKit.Base"); -} -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.DOM depends on MochiKit.Base!"; -} - -if (typeof(MochiKit.DOM) == 'undefined') { - MochiKit.DOM = {}; -} - -MochiKit.DOM.NAME = "MochiKit.DOM"; -MochiKit.DOM.VERSION = "1.4"; -MochiKit.DOM.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; -MochiKit.DOM.toString = function () { - return this.__repr__(); -}; - -MochiKit.DOM.EXPORT = [ - "removeEmptyTextNodes", - "formContents", - "currentWindow", - "currentDocument", - "withWindow", - "withDocument", - "registerDOMConverter", - "coerceToDOM", - "createDOM", - "createDOMFunc", - "isChildNode", - "getNodeAttribute", - "setNodeAttribute", - "updateNodeAttributes", - "appendChildNodes", - "replaceChildNodes", - "removeElement", - "swapDOM", - "BUTTON", - "TT", - "PRE", - "H1", - "H2", - "H3", - "BR", - "CANVAS", - "HR", - "LABEL", - "TEXTAREA", - "FORM", - "STRONG", - "SELECT", - "OPTION", - "OPTGROUP", - "LEGEND", - "FIELDSET", - "P", - "UL", - "OL", - "LI", - "TD", - "TR", - "THEAD", - "TBODY", - "TFOOT", - "TABLE", - "TH", - "INPUT", - "SPAN", - "A", - "DIV", - "IMG", - "getElement", - "$", - "getElementsByTagAndClassName", - "addToCallStack", - "addLoadEvent", - "focusOnLoad", - "setElementClass", - "toggleElementClass", - "addElementClass", - "removeElementClass", - "swapElementClass", - "hasElementClass", - "escapeHTML", - "toHTML", - "emitHTML", - "scrapeText" -]; - -MochiKit.DOM.EXPORT_OK = [ - "domConverters" -]; - -MochiKit.DOM.DEPRECATED = [ - ['computedStyle', 'MochiKit.Style.computedStyle', '1.4'], - /** @id MochiKit.DOM.elementDimensions */ - ['elementDimensions', 'MochiKit.Style.getElementDimensions', '1.4'], - /** @id MochiKit.DOM.elementPosition */ - ['elementPosition', 'MochiKit.Style.getElementPosition', '1.4'], - ['hideElement', 'MochiKit.Style.hideElement', '1.4'], - /** @id MochiKit.DOM.setElementDimensions */ - ['setElementDimensions', 'MochiKit.Style.setElementDimensions', '1.4'], - /** @id MochiKit.DOM.setElementPosition */ - ['setElementPosition', 'MochiKit.Style.setElementPosition', '1.4'], - ['setDisplayForElement', 'MochiKit.Style.setDisplayForElement', '1.4'], - /** @id MochiKit.DOM.setOpacity */ - ['setOpacity', 'MochiKit.Style.setOpacity', '1.4'], - ['showElement', 'MochiKit.Style.showElement', '1.4'], - /** @id MochiKit.DOM.Coordinates */ - ['Coordinates', 'MochiKit.Style.Coordinates', '1.4'], // FIXME: broken - /** @id MochiKit.DOM.Dimensions */ - ['Dimensions', 'MochiKit.Style.Dimensions', '1.4'] // FIXME: broken -]; - -/** @id MochiKit.DOM.getViewportDimensions */ -MochiKit.DOM.getViewportDimensions = new Function('' + - 'if (!MochiKit["Style"]) {' + - ' throw new Error("This function has been deprecated and depends on MochiKit.Style.");' + - '}' + - 'return MochiKit.Style.getViewportDimensions.apply(this, arguments);'); - -MochiKit.Base.update(MochiKit.DOM, { - - /** @id MochiKit.DOM.currentWindow */ - currentWindow: function () { - return MochiKit.DOM._window; - }, - - /** @id MochiKit.DOM.currentDocument */ - currentDocument: function () { - return MochiKit.DOM._document; - }, - - /** @id MochiKit.DOM.withWindow */ - withWindow: function (win, func) { - var self = MochiKit.DOM; - var oldDoc = self._document; - var oldWin = self._win; - var rval; - try { - self._window = win; - self._document = win.document; - rval = func(); - } catch (e) { - self._window = oldWin; - self._document = oldDoc; - throw e; - } - self._window = oldWin; - self._document = oldDoc; - return rval; - }, - - /** @id MochiKit.DOM.formContents */ - formContents: function (elem/* = document */) { - var names = []; - var values = []; - var m = MochiKit.Base; - var self = MochiKit.DOM; - if (typeof(elem) == "undefined" || elem === null) { - elem = self._document; - } else { - elem = self.getElement(elem); - } - m.nodeWalk(elem, function (elem) { - var name = elem.name; - if (m.isNotEmpty(name)) { - var tagName = elem.tagName.toUpperCase(); - if (tagName === "INPUT" - && (elem.type == "radio" || elem.type == "checkbox") - && !elem.checked - ) { - return null; - } - if (tagName === "SELECT") { - if (elem.type == "select-one") { - if (elem.selectedIndex >= 0) { - var opt = elem.options[elem.selectedIndex]; - names.push(name); - values.push(opt.value); - return null; - } - // no form elements? - names.push(name); - values.push(""); - return null; - } else { - var opts = elem.options; - if (!opts.length) { - names.push(name); - values.push(""); - return null; - } - for (var i = 0; i < opts.length; i++) { - var opt = opts[i]; - if (!opt.selected) { - continue; - } - names.push(name); - values.push(opt.value); - } - return null; - } - } - if (tagName === "FORM" || tagName === "P" || tagName === "SPAN" - || tagName === "DIV" - ) { - return elem.childNodes; - } - names.push(name); - values.push(elem.value || ''); - return null; - } - return elem.childNodes; - }); - return [names, values]; - }, - - /** @id MochiKit.DOM.withDocument */ - withDocument: function (doc, func) { - var self = MochiKit.DOM; - var oldDoc = self._document; - var rval; - try { - self._document = doc; - rval = func(); - } catch (e) { - self._document = oldDoc; - throw e; - } - self._document = oldDoc; - return rval; - }, - - /** @id MochiKit.DOM.registerDOMConverter */ - registerDOMConverter: function (name, check, wrap, /* optional */override) { - MochiKit.DOM.domConverters.register(name, check, wrap, override); - }, - - /** @id MochiKit.DOM.coerceToDOM */ - coerceToDOM: function (node, ctx) { - var m = MochiKit.Base; - var im = MochiKit.Iter; - var self = MochiKit.DOM; - if (im) { - var iter = im.iter; - var repeat = im.repeat; - var map = m.map; - } - var domConverters = self.domConverters; - var coerceToDOM = arguments.callee; - var NotFound = m.NotFound; - while (true) { - if (typeof(node) == 'undefined' || node === null) { - return null; - } - if (typeof(node.nodeType) != 'undefined' && node.nodeType > 0) { - return node; - } - if (typeof(node) == 'number' || typeof(node) == 'boolean') { - node = node.toString(); - // FALL THROUGH - } - if (typeof(node) == 'string') { - return self._document.createTextNode(node); - } - if (typeof(node.__dom__) == 'function') { - node = node.__dom__(ctx); - continue; - } - if (typeof(node.dom) == 'function') { - node = node.dom(ctx); - continue; - } - if (typeof(node) == 'function') { - node = node.apply(ctx, [ctx]); - continue; - } - - if (im) { - // iterable - var iterNodes = null; - try { - iterNodes = iter(node); - } catch (e) { - // pass - } - if (iterNodes) { - return map(coerceToDOM, iterNodes, repeat(ctx)); - } - } - - // adapter - try { - node = domConverters.match(node, ctx); - continue; - } catch (e) { - if (e != NotFound) { - throw e; - } - } - - // fallback - return self._document.createTextNode(node.toString()); - } - // mozilla warnings aren't too bright - return undefined; - }, - - /** @id MochiKit.DOM.isChildNode */ - isChildNode: function (node, maybeparent) { - var self = MochiKit.DOM; - if (typeof(node) == "string") { - node = self.getElement(node); - } - if (typeof(maybeparent) == "string") { - maybeparent = self.getElement(maybeparent); - } - if (node === maybeparent) { - return true; - } - while (node && node.tagName.toUpperCase() != "BODY") { - node = node.parentNode; - if (node === maybeparent) { - return true; - } - } - return false; - }, - - /** @id MochiKit.DOM.setNodeAttribute */ - setNodeAttribute: function (node, attr, value) { - var o = {}; - o[attr] = value; - try { - return MochiKit.DOM.updateNodeAttributes(node, o); - } catch (e) { - // pass - } - return null; - }, - - /** @id MochiKit.DOM.getNodeAttribute */ - getNodeAttribute: function (node, attr) { - var self = MochiKit.DOM; - var rename = self.attributeArray.renames[attr]; - node = self.getElement(node); - try { - if (rename) { - return node[rename]; - } - return node.getAttribute(attr); - } catch (e) { - // pass - } - return null; - }, - - /** @id MochiKit.DOM.updateNodeAttributes */ - updateNodeAttributes: function (node, attrs) { - var elem = node; - var self = MochiKit.DOM; - if (typeof(node) == 'string') { - elem = self.getElement(node); - } - if (attrs) { - var updatetree = MochiKit.Base.updatetree; - if (self.attributeArray.compliant) { - // not IE, good. - for (var k in attrs) { - var v = attrs[k]; - if (typeof(v) == 'object' && typeof(elem[k]) == 'object') { - updatetree(elem[k], v); - } else if (k.substring(0, 2) == "on") { - if (typeof(v) == "string") { - v = new Function(v); - } - elem[k] = v; - } else { - elem.setAttribute(k, v); - } - } - } else { - // IE is insane in the membrane - var renames = self.attributeArray.renames; - for (k in attrs) { - v = attrs[k]; - var renamed = renames[k]; - if (k == "style" && typeof(v) == "string") { - elem.style.cssText = v; - } else if (typeof(renamed) == "string") { - elem[renamed] = v; - } else if (typeof(elem[k]) == 'object' - && typeof(v) == 'object') { - updatetree(elem[k], v); - } else if (k.substring(0, 2) == "on") { - if (typeof(v) == "string") { - v = new Function(v); - } - elem[k] = v; - } else { - elem.setAttribute(k, v); - } - } - } - } - return elem; - }, - - /** @id MochiKit.DOM.appendChildNodes */ - appendChildNodes: function (node/*, nodes...*/) { - var elem = node; - var self = MochiKit.DOM; - if (typeof(node) == 'string') { - elem = self.getElement(node); - } - var nodeStack = [ - self.coerceToDOM( - MochiKit.Base.extend(null, arguments, 1), - elem - ) - ]; - var concat = MochiKit.Base.concat; - while (nodeStack.length) { - var n = nodeStack.shift(); - if (typeof(n) == 'undefined' || n === null) { - // pass - } else if (typeof(n.nodeType) == 'number') { - elem.appendChild(n); - } else { - nodeStack = concat(n, nodeStack); - } - } - return elem; - }, - - /** @id MochiKit.DOM.replaceChildNodes */ - replaceChildNodes: function (node/*, nodes...*/) { - var elem = node; - var self = MochiKit.DOM; - if (typeof(node) == 'string') { - elem = self.getElement(node); - arguments[0] = elem; - } - var child; - while ((child = elem.firstChild)) { - elem.removeChild(child); - } - if (arguments.length < 2) { - return elem; - } else { - return self.appendChildNodes.apply(this, arguments); - } - }, - - /** @id MochiKit.DOM.createDOM */ - createDOM: function (name, attrs/*, nodes... */) { - var elem; - var self = MochiKit.DOM; - var m = MochiKit.Base; - if (typeof(attrs) == "string" || typeof(attrs) == "number") { - var args = m.extend([name, null], arguments, 1); - return arguments.callee.apply(this, args); - } - if (typeof(name) == 'string') { - // Internet Explorer is dumb - var xhtml = self._xhtml; - if (attrs && !self.attributeArray.compliant) { - // http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/name_2.asp - var contents = ""; - if ('name' in attrs) { - contents += ' name="' + self.escapeHTML(attrs.name) + '"'; - } - if (name == 'input' && 'type' in attrs) { - contents += ' type="' + self.escapeHTML(attrs.type) + '"'; - } - if (contents) { - name = "<" + name + contents + ">"; - xhtml = false; - } - } - var d = self._document; - if (xhtml && d === document) { - elem = d.createElementNS("http://www.w3.org/1999/xhtml", name); - } else { - elem = d.createElement(name); - } - } else { - elem = name; - } - if (attrs) { - self.updateNodeAttributes(elem, attrs); - } - if (arguments.length <= 2) { - return elem; - } else { - var args = m.extend([elem], arguments, 2); - return self.appendChildNodes.apply(this, args); - } - }, - - /** @id MochiKit.DOM.createDOMFunc */ - createDOMFunc: function (/* tag, attrs, *nodes */) { - var m = MochiKit.Base; - return m.partial.apply( - this, - m.extend([MochiKit.DOM.createDOM], arguments) - ); - }, - - /** @id MochiKit.DOM.removeElement */ - removeElement: function (elem) { - var e = MochiKit.DOM.getElement(elem); - e.parentNode.removeChild(e); - return e; - }, - - /** @id MochiKit.DOM.swapDOM */ - swapDOM: function (dest, src) { - var self = MochiKit.DOM; - dest = self.getElement(dest); - var parent = dest.parentNode; - if (src) { - src = self.getElement(src); - parent.replaceChild(src, dest); - } else { - parent.removeChild(dest); - } - return src; - }, - - /** @id MochiKit.DOM.getElement */ - getElement: function (id) { - var self = MochiKit.DOM; - if (arguments.length == 1) { - return ((typeof(id) == "string") ? - self._document.getElementById(id) : id); - } else { - return MochiKit.Base.map(self.getElement, arguments); - } - }, - - /** @id MochiKit.DOM.getElementsByTagAndClassName */ - getElementsByTagAndClassName: function (tagName, className, - /* optional */parent) { - var self = MochiKit.DOM; - if (typeof(tagName) == 'undefined' || tagName === null) { - tagName = '*'; - } - if (typeof(parent) == 'undefined' || parent === null) { - parent = self._document; - } - parent = self.getElement(parent); - var children = (parent.getElementsByTagName(tagName) - || self._document.all); - if (typeof(className) == 'undefined' || className === null) { - return MochiKit.Base.extend(null, children); - } - - var elements = []; - for (var i = 0; i < children.length; i++) { - var child = children[i]; - var cls = child.className; - if (!cls) { - continue; - } - var classNames = cls.split(' '); - for (var j = 0; j < classNames.length; j++) { - if (classNames[j] == className) { - elements.push(child); - break; - } - } - } - - return elements; - }, - - _newCallStack: function (path, once) { - var rval = function () { - var callStack = arguments.callee.callStack; - for (var i = 0; i < callStack.length; i++) { - if (callStack[i].apply(this, arguments) === false) { - break; - } - } - if (once) { - try { - this[path] = null; - } catch (e) { - // pass - } - } - }; - rval.callStack = []; - return rval; - }, - - /** @id MochiKit.DOM.addToCallStack */ - addToCallStack: function (target, path, func, once) { - var self = MochiKit.DOM; - var existing = target[path]; - var regfunc = existing; - if (!(typeof(existing) == 'function' - && typeof(existing.callStack) == "object" - && existing.callStack !== null)) { - regfunc = self._newCallStack(path, once); - if (typeof(existing) == 'function') { - regfunc.callStack.push(existing); - } - target[path] = regfunc; - } - regfunc.callStack.push(func); - }, - - /** @id MochiKit.DOM.addLoadEvent */ - addLoadEvent: function (func) { - var self = MochiKit.DOM; - self.addToCallStack(self._window, "onload", func, true); - - }, - - /** @id MochiKit.DOM.focusOnLoad */ - focusOnLoad: function (element) { - var self = MochiKit.DOM; - self.addLoadEvent(function () { - element = self.getElement(element); - if (element) { - element.focus(); - } - }); - }, - - /** @id MochiKit.DOM.setElementClass */ - setElementClass: function (element, className) { - var self = MochiKit.DOM; - var obj = self.getElement(element); - if (self.attributeArray.compliant) { - obj.setAttribute("class", className); - } else { - obj.setAttribute("className", className); - } - }, - - /** @id MochiKit.DOM.toggleElementClass */ - toggleElementClass: function (className/*, element... */) { - var self = MochiKit.DOM; - for (var i = 1; i < arguments.length; i++) { - var obj = self.getElement(arguments[i]); - if (!self.addElementClass(obj, className)) { - self.removeElementClass(obj, className); - } - } - }, - - /** @id MochiKit.DOM.addElementClass */ - addElementClass: function (element, className) { - var self = MochiKit.DOM; - var obj = self.getElement(element); - var cls = obj.className; - // trivial case, no className yet - if (cls == undefined || cls.length === 0) { - self.setElementClass(obj, className); - return true; - } - // the other trivial case, already set as the only class - if (cls == className) { - return false; - } - var classes = cls.split(" "); - for (var i = 0; i < classes.length; i++) { - // already present - if (classes[i] == className) { - return false; - } - } - // append class - self.setElementClass(obj, cls + " " + className); - return true; - }, - - /** @id MochiKit.DOM.removeElementClass */ - removeElementClass: function (element, className) { - var self = MochiKit.DOM; - var obj = self.getElement(element); - var cls = obj.className; - // trivial case, no className yet - if (cls == undefined || cls.length === 0) { - return false; - } - // other trivial case, set only to className - if (cls == className) { - self.setElementClass(obj, ""); - return true; - } - var classes = cls.split(" "); - for (var i = 0; i < classes.length; i++) { - // already present - if (classes[i] == className) { - // only check sane case where the class is used once - classes.splice(i, 1); - self.setElementClass(obj, classes.join(" ")); - return true; - } - } - // not found - return false; - }, - - /** @id MochiKit.DOM.swapElementClass */ - swapElementClass: function (element, fromClass, toClass) { - var obj = MochiKit.DOM.getElement(element); - var res = MochiKit.DOM.removeElementClass(obj, fromClass); - if (res) { - MochiKit.DOM.addElementClass(obj, toClass); - } - return res; - }, - - /** @id MochiKit.DOM.hasElementClass */ - hasElementClass: function (element, className/*...*/) { - var obj = MochiKit.DOM.getElement(element); - var cls = obj.className; - if (!cls) { - return false; - } - var classes = cls.split(" "); - for (var i = 1; i < arguments.length; i++) { - var good = false; - for (var j = 0; j < classes.length; j++) { - if (classes[j] == arguments[i]) { - good = true; - break; - } - } - if (!good) { - return false; - } - } - return true; - }, - - /** @id MochiKit.DOM.escapeHTML */ - escapeHTML: function (s) { - return s.replace(/&/g, "&" - ).replace(/"/g, """ - ).replace(//g, ">"); - }, - - /** @id MochiKit.DOM.toHTML */ - toHTML: function (dom) { - return MochiKit.DOM.emitHTML(dom).join(""); - }, - - /** @id MochiKit.DOM.emitHTML */ - emitHTML: function (dom, /* optional */lst) { - if (typeof(lst) == 'undefined' || lst === null) { - lst = []; - } - // queue is the call stack, we're doing this non-recursively - var queue = [dom]; - var self = MochiKit.DOM; - var escapeHTML = self.escapeHTML; - var attributeArray = self.attributeArray; - while (queue.length) { - dom = queue.pop(); - if (typeof(dom) == 'string') { - lst.push(dom); - } else if (dom.nodeType == 1) { - // we're not using higher order stuff here - // because safari has heisenbugs.. argh. - // - // I think it might have something to do with - // garbage collection and function calls. - lst.push('<' + dom.tagName.toLowerCase()); - var attributes = []; - var domAttr = attributeArray(dom); - for (var i = 0; i < domAttr.length; i++) { - var a = domAttr[i]; - attributes.push([ - " ", - a.name, - '="', - escapeHTML(a.value), - '"' - ]); - } - attributes.sort(); - for (i = 0; i < attributes.length; i++) { - var attrs = attributes[i]; - for (var j = 0; j < attrs.length; j++) { - lst.push(attrs[j]); - } - } - if (dom.hasChildNodes()) { - lst.push(">"); - // queue is the FILO call stack, so we put the close tag - // on first - queue.push(""); - var cnodes = dom.childNodes; - for (i = cnodes.length - 1; i >= 0; i--) { - queue.push(cnodes[i]); - } - } else { - lst.push('/>'); - } - } else if (dom.nodeType == 3) { - lst.push(escapeHTML(dom.nodeValue)); - } - } - return lst; - }, - - /** @id MochiKit.DOM.scrapeText */ - scrapeText: function (node, /* optional */asArray) { - var rval = []; - (function (node) { - var cn = node.childNodes; - if (cn) { - for (var i = 0; i < cn.length; i++) { - arguments.callee.call(this, cn[i]); - } - } - var nodeValue = node.nodeValue; - if (typeof(nodeValue) == 'string') { - rval.push(nodeValue); - } - })(MochiKit.DOM.getElement(node)); - if (asArray) { - return rval; - } else { - return rval.join(""); - } - }, - - /** @id MochiKit.DOM.removeEmptyTextNodes */ - removeEmptyTextNodes: function (element) { - element = MochiKit.DOM.getElement(element); - for (var i = 0; i < element.childNodes.length; i++) { - var node = element.childNodes[i]; - if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) { - node.parentNode.removeChild(node); - } - } - }, - - __new__: function (win) { - - var m = MochiKit.Base; - if (typeof(document) != "undefined") { - this._document = document; - this._xhtml = - document.createElementNS && - document.createElement("testname").localName == "testname"; - } else if (MochiKit.MockDOM) { - this._document = MochiKit.MockDOM.document; - } - this._window = win; - - this.domConverters = new m.AdapterRegistry(); - - var __tmpElement = this._document.createElement("span"); - var attributeArray; - if (__tmpElement && __tmpElement.attributes && - __tmpElement.attributes.length > 0) { - // for braindead browsers (IE) that insert extra junk - var filter = m.filter; - attributeArray = function (node) { - return filter(attributeArray.ignoreAttrFilter, node.attributes); - }; - attributeArray.ignoreAttr = {}; - var attrs = __tmpElement.attributes; - var ignoreAttr = attributeArray.ignoreAttr; - for (var i = 0; i < attrs.length; i++) { - var a = attrs[i]; - ignoreAttr[a.name] = a.value; - } - attributeArray.ignoreAttrFilter = function (a) { - return (attributeArray.ignoreAttr[a.name] != a.value); - }; - attributeArray.compliant = false; - attributeArray.renames = { - "class": "className", - "checked": "defaultChecked", - "usemap": "useMap", - "for": "htmlFor", - "readonly": "readOnly", - "colspan": "colSpan", - "bgcolor": "bgColor" - }; - } else { - attributeArray = function (node) { - /*** - - Return an array of attributes for a given node, - filtering out attributes that don't belong for - that are inserted by "Certain Browsers". - - ***/ - return node.attributes; - }; - attributeArray.compliant = true; - attributeArray.renames = {}; - } - this.attributeArray = attributeArray; - - // FIXME: this really belongs in Base, and could probably be cleaner - var _deprecated = function(fromModule, arr) { - var modules = arr[1].split('.'); - var str = ''; - var obj = {}; - - str += 'if (!MochiKit.' + modules[1] + ') { throw new Error("'; - str += 'This function has been deprecated and depends on MochiKit.'; - str += modules[1] + '.");}'; - str += 'return MochiKit.' + modules[1] + '.' + arr[0]; - str += '.apply(this, arguments);'; - - obj[modules[2]] = new Function(str); - MochiKit.Base.update(MochiKit[fromModule], obj); - } - for (var i; i < MochiKit.DOM.DEPRECATED.length; i++) { - _deprecated('DOM', MochiKit.DOM.DEPRECATED[i]); - } - - // shorthand for createDOM syntax - var createDOMFunc = this.createDOMFunc; - /** @id MochiKit.DOM.UL */ - this.UL = createDOMFunc("ul"); - /** @id MochiKit.DOM.OL */ - this.OL = createDOMFunc("ol"); - /** @id MochiKit.DOM.LI */ - this.LI = createDOMFunc("li"); - /** @id MochiKit.DOM.TD */ - this.TD = createDOMFunc("td"); - /** @id MochiKit.DOM.TR */ - this.TR = createDOMFunc("tr"); - /** @id MochiKit.DOM.TBODY */ - this.TBODY = createDOMFunc("tbody"); - /** @id MochiKit.DOM.THEAD */ - this.THEAD = createDOMFunc("thead"); - /** @id MochiKit.DOM.TFOOT */ - this.TFOOT = createDOMFunc("tfoot"); - /** @id MochiKit.DOM.TABLE */ - this.TABLE = createDOMFunc("table"); - /** @id MochiKit.DOM.TH */ - this.TH = createDOMFunc("th"); - /** @id MochiKit.DOM.INPUT */ - this.INPUT = createDOMFunc("input"); - /** @id MochiKit.DOM.SPAN */ - this.SPAN = createDOMFunc("span"); - /** @id MochiKit.DOM.A */ - this.A = createDOMFunc("a"); - /** @id MochiKit.DOM.DIV */ - this.DIV = createDOMFunc("div"); - /** @id MochiKit.DOM.IMG */ - this.IMG = createDOMFunc("img"); - /** @id MochiKit.DOM.BUTTON */ - this.BUTTON = createDOMFunc("button"); - /** @id MochiKit.DOM.TT */ - this.TT = createDOMFunc("tt"); - /** @id MochiKit.DOM.PRE */ - this.PRE = createDOMFunc("pre"); - /** @id MochiKit.DOM.H1 */ - this.H1 = createDOMFunc("h1"); - /** @id MochiKit.DOM.H2 */ - this.H2 = createDOMFunc("h2"); - /** @id MochiKit.DOM.H3 */ - this.H3 = createDOMFunc("h3"); - /** @id MochiKit.DOM.BR */ - this.BR = createDOMFunc("br"); - /** @id MochiKit.DOM.HR */ - this.HR = createDOMFunc("hr"); - /** @id MochiKit.DOM.LABEL */ - this.LABEL = createDOMFunc("label"); - /** @id MochiKit.DOM.TEXTAREA */ - this.TEXTAREA = createDOMFunc("textarea"); - /** @id MochiKit.DOM.FORM */ - this.FORM = createDOMFunc("form"); - /** @id MochiKit.DOM.P */ - this.P = createDOMFunc("p"); - /** @id MochiKit.DOM.SELECT */ - this.SELECT = createDOMFunc("select"); - /** @id MochiKit.DOM.OPTION */ - this.OPTION = createDOMFunc("option"); - /** @id MochiKit.DOM.OPTGROUP */ - this.OPTGROUP = createDOMFunc("optgroup"); - /** @id MochiKit.DOM.LEGEND */ - this.LEGEND = createDOMFunc("legend"); - /** @id MochiKit.DOM.FIELDSET */ - this.FIELDSET = createDOMFunc("fieldset"); - /** @id MochiKit.DOM.STRONG */ - this.STRONG = createDOMFunc("strong"); - /** @id MochiKit.DOM.CANVAS */ - this.CANVAS = createDOMFunc("canvas"); - - /** @id MochiKit.DOM.$ */ - this.$ = this.getElement; - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": m.concat(this.EXPORT, this.EXPORT_OK) - }; - - m.nameFunctions(this); - - } -}); - - -MochiKit.DOM.__new__(((typeof(window) == "undefined") ? this : window)); - -// -// XXX: Internet Explorer blows -// -if (MochiKit.__export__) { - withWindow = MochiKit.DOM.withWindow; - withDocument = MochiKit.DOM.withDocument; -} - -MochiKit.Base._exportSymbols(this, MochiKit.DOM); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DateTime.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DateTime.js deleted file mode 100755 index 1b517b3a5..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DateTime.js +++ /dev/null @@ -1,216 +0,0 @@ -/*** - -MochiKit.DateTime 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.DateTime'); -} - -if (typeof(MochiKit) == 'undefined') { - MochiKit = {}; -} - -if (typeof(MochiKit.DateTime) == 'undefined') { - MochiKit.DateTime = {}; -} - -MochiKit.DateTime.NAME = "MochiKit.DateTime"; -MochiKit.DateTime.VERSION = "1.4"; -MochiKit.DateTime.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; -MochiKit.DateTime.toString = function () { - return this.__repr__(); -}; - -/** @id MochiKit.DateTime.isoDate */ -MochiKit.DateTime.isoDate = function (str) { - str = str + ""; - if (typeof(str) != "string" || str.length === 0) { - return null; - } - var iso = str.split('-'); - if (iso.length === 0) { - return null; - } - return new Date(iso[0], iso[1] - 1, iso[2]); -}; - -MochiKit.DateTime._isoRegexp = /(\d{4,})(?:-(\d{1,2})(?:-(\d{1,2})(?:[T ](\d{1,2}):(\d{1,2})(?::(\d{1,2})(?:\.(\d+))?)?(?:(Z)|([+-])(\d{1,2})(?::(\d{1,2}))?)?)?)?)?/; - -/** @id MochiKit.DateTime.isoTimestamp */ -MochiKit.DateTime.isoTimestamp = function (str) { - str = str + ""; - if (typeof(str) != "string" || str.length === 0) { - return null; - } - var res = str.match(MochiKit.DateTime._isoRegexp); - if (typeof(res) == "undefined" || res === null) { - return null; - } - var year, month, day, hour, min, sec, msec; - year = parseInt(res[1], 10); - if (typeof(res[2]) == "undefined" || res[2] === '') { - return new Date(year); - } - month = parseInt(res[2], 10) - 1; - day = parseInt(res[3], 10); - if (typeof(res[4]) == "undefined" || res[4] === '') { - return new Date(year, month, day); - } - hour = parseInt(res[4], 10); - min = parseInt(res[5], 10); - sec = (typeof(res[6]) != "undefined" && res[6] !== '') ? parseInt(res[6], 10) : 0; - if (typeof(res[7]) != "undefined" && res[7] !== '') { - msec = Math.round(1000.0 * parseFloat("0." + res[7])); - } else { - msec = 0; - } - if ((typeof(res[8]) == "undefined" || res[8] === '') && (typeof(res[9]) == "undefined" || res[9] === '')) { - return new Date(year, month, day, hour, min, sec, msec); - } - var ofs; - if (typeof(res[9]) != "undefined" && res[9] !== '') { - ofs = parseInt(res[10], 10) * 3600000; - if (typeof(res[11]) != "undefined" && res[11] !== '') { - ofs += parseInt(res[11], 10) * 60000; - } - if (res[9] == "-") { - ofs = -ofs; - } - } else { - ofs = 0; - } - return new Date(Date.UTC(year, month, day, hour, min, sec, msec) - ofs); -}; - -/** @id MochiKit.DateTime.toISOTime */ -MochiKit.DateTime.toISOTime = function (date, realISO/* = false */) { - if (typeof(date) == "undefined" || date === null) { - return null; - } - var hh = date.getHours(); - var mm = date.getMinutes(); - var ss = date.getSeconds(); - var lst = [ - ((realISO && (hh < 10)) ? "0" + hh : hh), - ((mm < 10) ? "0" + mm : mm), - ((ss < 10) ? "0" + ss : ss) - ]; - return lst.join(":"); -}; - -/** @id MochiKit.DateTime.toISOTimeStamp */ -MochiKit.DateTime.toISOTimestamp = function (date, realISO/* = false*/) { - if (typeof(date) == "undefined" || date === null) { - return null; - } - var sep = realISO ? "T" : " "; - var foot = realISO ? "Z" : ""; - if (realISO) { - date = new Date(date.getTime() + (date.getTimezoneOffset() * 60000)); - } - return MochiKit.DateTime.toISODate(date) + sep + MochiKit.DateTime.toISOTime(date, realISO) + foot; -}; - -/** @id MochiKit.DateTime.toISODate */ -MochiKit.DateTime.toISODate = function (date) { - if (typeof(date) == "undefined" || date === null) { - return null; - } - var _padTwo = MochiKit.DateTime._padTwo; - return [ - date.getFullYear(), - _padTwo(date.getMonth() + 1), - _padTwo(date.getDate()) - ].join("-"); -}; - -/** @id MochiKit.DateTime.americanDate */ -MochiKit.DateTime.americanDate = function (d) { - d = d + ""; - if (typeof(d) != "string" || d.length === 0) { - return null; - } - var a = d.split('/'); - return new Date(a[2], a[0] - 1, a[1]); -}; - -MochiKit.DateTime._padTwo = function (n) { - return (n > 9) ? n : "0" + n; -}; - -/** @id MochiKit.DateTime.toPaddedAmericanDate */ -MochiKit.DateTime.toPaddedAmericanDate = function (d) { - if (typeof(d) == "undefined" || d === null) { - return null; - } - var _padTwo = MochiKit.DateTime._padTwo; - return [ - _padTwo(d.getMonth() + 1), - _padTwo(d.getDate()), - d.getFullYear() - ].join('/'); -}; - -/** @id MochiKit.DateTime.toAmericanDate */ -MochiKit.DateTime.toAmericanDate = function (d) { - if (typeof(d) == "undefined" || d === null) { - return null; - } - return [d.getMonth() + 1, d.getDate(), d.getFullYear()].join('/'); -}; - -MochiKit.DateTime.EXPORT = [ - "isoDate", - "isoTimestamp", - "toISOTime", - "toISOTimestamp", - "toISODate", - "americanDate", - "toPaddedAmericanDate", - "toAmericanDate" -]; - -MochiKit.DateTime.EXPORT_OK = []; -MochiKit.DateTime.EXPORT_TAGS = { - ":common": MochiKit.DateTime.EXPORT, - ":all": MochiKit.DateTime.EXPORT -}; - -MochiKit.DateTime.__new__ = function () { - // MochiKit.Base.nameFunctions(this); - var base = this.NAME + "."; - for (var k in this) { - var o = this[k]; - if (typeof(o) == 'function' && typeof(o.NAME) == 'undefined') { - try { - o.NAME = base + k; - } catch (e) { - // pass - } - } - } -}; - -MochiKit.DateTime.__new__(); - -if (typeof(MochiKit.Base) != "undefined") { - MochiKit.Base._exportSymbols(this, MochiKit.DateTime); -} else { - (function (globals, module) { - if ((typeof(JSAN) == 'undefined' && typeof(dojo) == 'undefined') - || (MochiKit.__export__ === false)) { - var all = module.EXPORT_TAGS[":all"]; - for (var i = 0; i < all.length; i++) { - globals[all[i]] = module[all[i]]; - } - } - })(this, MochiKit.DateTime); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DragAndDrop.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DragAndDrop.js deleted file mode 100755 index b23a5ecd3..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/DragAndDrop.js +++ /dev/null @@ -1,821 +0,0 @@ -/*** -MochiKit.DragAndDrop 1.4 - -See for documentation, downloads, license, etc. - -Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) - Mochi-ized By Thomas Herve (_firstname_@nimail.org) - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.DragAndDrop'); - dojo.require('MochiKit.Base'); - dojo.require('MochiKit.DOM'); - dojo.require('MochiKit.Iter'); - dojo.require('MochiKit.Visual'); - dojo.require('MochiKit.Signal'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); - JSAN.use("MochiKit.DOM", []); - JSAN.use("MochiKit.Visual", []); - JSAN.use("MochiKit.Iter", []); - JSAN.use("MochiKit.Signal", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined' || - typeof(MochiKit.DOM) == 'undefined' || - typeof(MochiKit.Visual) == 'undefined' || - typeof(MochiKit.Signal) == 'undefined' || - typeof(MochiKit.Iter) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.DragAndDrop depends on MochiKit.Base, MochiKit.DOM, MochiKit.Visual, MochiKit.Signal and MochiKit.Iter!"; -} - -if (typeof(MochiKit.DragAndDrop) == 'undefined') { - MochiKit.DragAndDrop = {}; -} - -MochiKit.DragAndDrop.NAME = 'MochiKit.DragAndDrop'; -MochiKit.DragAndDrop.VERSION = '1.4'; - -MochiKit.DragAndDrop.__repr__ = function () { - return '[' + this.NAME + ' ' + this.VERSION + ']'; -}; - -MochiKit.DragAndDrop.toString = function () { - return this.__repr__(); -}; - -MochiKit.DragAndDrop.EXPORT = [ - "Droppable", - "Draggable" -]; - -MochiKit.DragAndDrop.EXPORT_OK = [ - "Droppables", - "Draggables" -]; - -MochiKit.DragAndDrop.Droppables = { - /*** - - Manage all droppables. Shouldn't be used, use the Droppable object instead. - - ***/ - drops: [], - - remove: function (element) { - this.drops = MochiKit.Base.filter(function (d) { - return d.element != MochiKit.DOM.getElement(element) - }, this.drops); - }, - - register: function (drop) { - this.drops.push(drop); - }, - - unregister: function (drop) { - this.drops = MochiKit.Base.filter(function (d) { - return d != drop; - }, this.drops); - }, - - prepare: function (element) { - MochiKit.Base.map(function (drop) { - if (drop.isAccepted(element)) { - if (drop.options.activeclass) { - MochiKit.DOM.addElementClass(drop.element, - drop.options.activeclass); - } - drop.options.onactive(drop.element, element); - } - }, this.drops); - }, - - findDeepestChild: function (drops) { - deepest = drops[0]; - - for (i = 1; i < drops.length; ++i) { - if (MochiKit.DOM.isParent(drops[i].element, deepest.element)) { - deepest = drops[i]; - } - } - return deepest; - }, - - show: function (point, element) { - if (!this.drops.length) { - return; - } - var affected = []; - - if (this.last_active) { - this.last_active.deactivate(); - } - MochiKit.Iter.forEach(this.drops, function (drop) { - if (drop.isAffected(point, element)) { - affected.push(drop); - } - }); - if (affected.length > 0) { - drop = this.findDeepestChild(affected); - MochiKit.Position.within(drop.element, point.page.x, point.page.y); - drop.options.onhover(element, drop.element, - MochiKit.Position.overlap(drop.options.overlap, drop.element)); - drop.activate(); - } - }, - - fire: function (event, element) { - if (!this.last_active) { - return; - } - MochiKit.Position.prepare(); - - if (this.last_active.isAffected(event.mouse(), element)) { - this.last_active.options.ondrop(element, - this.last_active.element, event); - } - }, - - reset: function (element) { - MochiKit.Base.map(function (drop) { - if (drop.options.activeclass) { - MochiKit.DOM.removeElementClass(drop.element, - drop.options.activeclass); - } - drop.options.ondesactive(drop.element, element); - }, this.drops); - if (this.last_active) { - this.last_active.deactivate(); - } - } -}; - -/** @id MochiKit.DragAndDrop.Droppable */ -MochiKit.DragAndDrop.Droppable = function (element, options) { - this.__init__(element, options); -}; - -MochiKit.DragAndDrop.Droppable.prototype = { - /*** - - A droppable object. Simple use is to create giving an element: - - new MochiKit.DragAndDrop.Droppable('myelement'); - - Generally you'll want to define the 'ondrop' function and maybe the - 'accept' option to filter draggables. - - ***/ - __class__: MochiKit.DragAndDrop.Droppable, - - __init__: function (element, /* optional */options) { - var d = MochiKit.DOM; - var b = MochiKit.Base; - this.element = d.getElement(element); - this.options = b.update({ - - /** @id MochiKit.DragAndDrop.greedy */ - greedy: true, - - /** @id MochiKit.DragAndDrop.hoverclass */ - hoverclass: null, - - /** @id MochiKit.DragAndDrop.activeclass */ - activeclass: null, - - /** @id MochiKit.DragAndDrop.hoverfunc */ - hoverfunc: b.noop, - - /** @id MochiKit.DragAndDrop.accept */ - accept: null, - - /** @id MochiKit.DragAndDrop.onactive */ - onactive: b.noop, - - /** @id MochiKit.DragAndDrop.ondesactive */ - ondesactive: b.noop, - - /** @id MochiKit.DragAndDrop.onhover */ - onhover: b.noop, - - /** @id MochiKit.DragAndDrop.ondrop */ - ondrop: b.noop, - - /** @id MochiKit.DragAndDrop.containment */ - containment: [], - tree: false - }, options || {}); - - // cache containers - this.options._containers = []; - b.map(MochiKit.Base.bind(function (c) { - this.options._containers.push(d.getElement(c)); - }, this), this.options.containment); - - d.makePositioned(this.element); // fix IE - - MochiKit.DragAndDrop.Droppables.register(this); - }, - - /** @id MochiKit.DragAndDrop.isContained */ - isContained: function (element) { - if (this.options._containers.length) { - var containmentNode; - if (this.options.tree) { - containmentNode = element.treeNode; - } else { - containmentNode = element.parentNode; - } - return MochiKit.Iter.some(this.options._containers, function (c) { - return containmentNode == c; - }); - } else { - return true; - } - }, - - /** @id MochiKit.DragAndDrop.isAccepted */ - isAccepted: function (element) { - return ((!this.options.accept) || MochiKit.Iter.some( - this.options.accept, function (c) { - return MochiKit.DOM.hasElementClass(element, c); - })); - }, - - /** @id MochiKit.DragAndDrop.isAffected */ - isAffected: function (point, element) { - return ((this.element != element) && - this.isContained(element) && - this.isAccepted(element) && - MochiKit.Position.within(this.element, point.page.x, - point.page.y)); - }, - - /** @id MochiKit.DragAndDrop.deactivate */ - deactivate: function () { - /*** - - A droppable is deactivate when a draggable has been over it and left. - - ***/ - if (this.options.hoverclass) { - MochiKit.DOM.removeElementClass(this.element, - this.options.hoverclass); - } - this.options.hoverfunc(this.element, false); - MochiKit.DragAndDrop.Droppables.last_active = null; - }, - - /** @id MochiKit.DragAndDrop.activate */ - activate: function () { - /*** - - A droppable is active when a draggable is over it. - - ***/ - if (this.options.hoverclass) { - MochiKit.DOM.addElementClass(this.element, this.options.hoverclass); - } - this.options.hoverfunc(this.element, true); - MochiKit.DragAndDrop.Droppables.last_active = this; - }, - - /** @id MochiKit.DragAndDrop.destroy */ - destroy: function () { - /*** - - Delete this droppable. - - ***/ - MochiKit.DragAndDrop.Droppables.unregister(this); - }, - - /** @id MochiKit.DragAndDrop.repr */ - repr: function () { - return '[' + this.__class__.NAME + ", options:" + MochiKit.Base.repr(this.options) + "]"; - } -}; - -MochiKit.DragAndDrop.Draggables = { - /*** - - Manage draggables elements. Not intended to direct use. - - ***/ - drags: [], - - register: function (draggable) { - if (this.drags.length === 0) { - var conn = MochiKit.Signal.connect; - this.eventMouseUp = conn(document, 'onmouseup', this, this.endDrag); - this.eventMouseMove = conn(document, 'onmousemove', this, - this.updateDrag); - this.eventKeypress = conn(document, 'onkeypress', this, - this.keyPress); - } - this.drags.push(draggable); - }, - - unregister: function (draggable) { - this.drags = MochiKit.Base.filter(function (d) { - return d != draggable; - }, this.drags); - if (this.drags.length === 0) { - var disc = MochiKit.Signal.disconnect - disc(this.eventMouseUp); - disc(this.eventMouseMove); - disc(this.eventKeypress); - } - }, - - activate: function (draggable) { - // allows keypress events if window is not currently focused - // fails for Safari - window.focus(); - this.activeDraggable = draggable; - }, - - deactivate: function () { - this.activeDraggable = null; - }, - - updateDrag: function (event) { - if (!this.activeDraggable) { - return; - } - var pointer = event.mouse(); - // Mozilla-based browsers fire successive mousemove events with - // the same coordinates, prevent needless redrawing (moz bug?) - if (this._lastPointer && (MochiKit.Base.repr(this._lastPointer.page) == - MochiKit.Base.repr(pointer.page))) { - return; - } - this._lastPointer = pointer; - this.activeDraggable.updateDrag(event, pointer); - }, - - endDrag: function (event) { - if (!this.activeDraggable) { - return; - } - this._lastPointer = null; - this.activeDraggable.endDrag(event); - this.activeDraggable = null; - }, - - keyPress: function (event) { - if (this.activeDraggable) { - this.activeDraggable.keyPress(event); - } - }, - - notify: function (eventName, draggable, event) { - MochiKit.Signal.signal(this, eventName, draggable, event); - } -}; - -/** @id MochiKit.DragAndDrop.Draggable */ -MochiKit.DragAndDrop.Draggable = function (element, options) { - this.__init__(element, options); -}; - -MochiKit.DragAndDrop.Draggable.prototype = { - /*** - - A draggable object. Simple instantiate : - - new MochiKit.DragAndDrop.Draggable('myelement'); - - ***/ - __class__ : MochiKit.DragAndDrop.Draggable, - - __init__: function (element, /* optional */options) { - var v = MochiKit.Visual; - var b = MochiKit.Base; - options = b.update({ - - /** @id MochiKit.DragAndDrop.handle */ - handle: false, - - /** @id MochiKit.DragAndDrop.starteffect */ - starteffect: function (innerelement) { - this._savedOpacity = MochiKit.Style.getOpacity(innerelement) || 1.0; - new v.Opacity(innerelement, {duration:0.2, from:this._savedOpacity, to:0.7}); - }, - /** @id MochiKit.DragAndDrop.reverteffect */ - reverteffect: function (innerelement, top_offset, left_offset) { - var dur = Math.sqrt(Math.abs(top_offset^2) + - Math.abs(left_offset^2))*0.02; - return new v.Move(innerelement, - {x: -left_offset, y: -top_offset, duration: dur}); - }, - - /** @id MochiKit.DragAndDrop.endeffect */ - endeffect: function (innerelement) { - new v.Opacity(innerelement, {duration:0.2, from:0.7, to:this._savedOpacity}); - }, - - /** @id MochiKit.DragAndDrop.onchange */ - onchange: b.noop, - - /** @id MochiKit.DragAndDrop.zindex */ - zindex: 1000, - - /** @id MochiKit.DragAndDrop.revert */ - revert: false, - - /** @id MochiKit.DragAndDrop.scroll */ - scroll: false, - - /** @id MochiKit.DragAndDrop.scrollSensitivity */ - scrollSensitivity: 20, - - /** @id MochiKit.DragAndDrop.scrollSpeed */ - scrollSpeed: 15, - // false, or xy or [x, y] or function (x, y){return [x, y];} - - /** @id MochiKit.DragAndDrop.snap */ - snap: false - }, options || {}); - - var d = MochiKit.DOM; - this.element = d.getElement(element); - - if (options.handle && (typeof(options.handle) == 'string')) { - this.handle = d.getFirstElementByTagAndClassName(null, - options.handle, this.element); - } - if (!this.handle) { - this.handle = d.getElement(options.handle); - } - if (!this.handle) { - this.handle = this.element; - } - - if (options.scroll && !options.scroll.scrollTo && !options.scroll.outerHTML) { - options.scroll = d.getElement(options.scroll); - this._isScrollChild = MochiKit.DOM.isChildNode(this.element, options.scroll); - } - - d.makePositioned(this.element); // fix IE - - this.delta = this.currentDelta(); - this.options = options; - this.dragging = false; - - this.eventMouseDown = MochiKit.Signal.connect(this.handle, - 'onmousedown', this, this.initDrag); - MochiKit.DragAndDrop.Draggables.register(this); - }, - - /** @id MochiKit.DragAndDrop.destroy */ - destroy: function () { - MochiKit.Signal.disconnect(this.eventMouseDown); - MochiKit.DragAndDrop.Draggables.unregister(this); - }, - - /** @id MochiKit.DragAndDrop.currentDelta */ - currentDelta: function () { - var s = MochiKit.Style.getStyle; - return [ - parseInt(s(this.element, 'left') || '0'), - parseInt(s(this.element, 'top') || '0')]; - }, - - /** @id MochiKit.DragAndDrop.initDrag */ - initDrag: function (event) { - if (!event.mouse().button.left) { - return; - } - // abort on form elements, fixes a Firefox issue - var src = event.target(); - var tagName = (src.tagName || '').toUpperCase(); - if (tagName === 'INPUT' || tagName === 'SELECT' || - tagName === 'OPTION' || tagName === 'BUTTON' || - tagName === 'TEXTAREA') { - return; - } - - if (this._revert) { - this._revert.cancel(); - this._revert = null; - } - - var pointer = event.mouse(); - var pos = MochiKit.Position.cumulativeOffset(this.element); - this.offset = [pointer.page.x - pos.x, pointer.page.y - pos.y] - - MochiKit.DragAndDrop.Draggables.activate(this); - event.stop(); - }, - - /** @id MochiKit.DragAndDrop.startDrag */ - startDrag: function (event) { - this.dragging = true; - if (this.options.selectclass) { - MochiKit.DOM.addElementClass(this.element, - this.options.selectclass); - } - if (this.options.zindex) { - this.originalZ = parseInt(MochiKit.Style.getStyle(this.element, - 'z-index') || '0'); - this.element.style.zIndex = this.options.zindex; - } - - if (this.options.ghosting) { - this._clone = this.element.cloneNode(true); - this.ghostPosition = MochiKit.Position.absolutize(this.element); - this.element.parentNode.insertBefore(this._clone, this.element); - } - - if (this.options.scroll) { - if (this.options.scroll == window) { - var where = this._getWindowScroll(this.options.scroll); - this.originalScrollLeft = where.left; - this.originalScrollTop = where.top; - } else { - this.originalScrollLeft = this.options.scroll.scrollLeft; - this.originalScrollTop = this.options.scroll.scrollTop; - } - } - - MochiKit.DragAndDrop.Droppables.prepare(this.element); - MochiKit.DragAndDrop.Draggables.notify('start', this, event); - if (this.options.starteffect) { - this.options.starteffect(this.element); - } - }, - - /** @id MochiKit.DragAndDrop.updateDrag */ - updateDrag: function (event, pointer) { - if (!this.dragging) { - this.startDrag(event); - } - MochiKit.Position.prepare(); - MochiKit.DragAndDrop.Droppables.show(pointer, this.element); - MochiKit.DragAndDrop.Draggables.notify('drag', this, event); - this.draw(pointer); - this.options.onchange(this); - - if (this.options.scroll) { - this.stopScrolling(); - var p, q; - if (this.options.scroll == window) { - var s = this._getWindowScroll(this.options.scroll); - p = new MochiKit.Style.Coordinates(s.left, s.top); - q = new MochiKit.Style.Coordinates(s.left + s.width, - s.top + s.height); - } else { - p = MochiKit.Position.page(this.options.scroll); - p.x += this.options.scroll.scrollLeft; - p.y += this.options.scroll.scrollTop; - p.x += (window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0); - p.y += (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0); - q = new MochiKit.Style.Coordinates(p.x + this.options.scroll.offsetWidth, - p.y + this.options.scroll.offsetHeight); - } - var speed = [0, 0]; - if (pointer.page.x > (q.x - this.options.scrollSensitivity)) { - speed[0] = pointer.page.x - (q.x - this.options.scrollSensitivity); - } else if (pointer.page.x < (p.x + this.options.scrollSensitivity)) { - speed[0] = pointer.page.x - (p.x + this.options.scrollSensitivity); - } - if (pointer.page.y > (q.y - this.options.scrollSensitivity)) { - speed[1] = pointer.page.y - (q.y - this.options.scrollSensitivity); - } else if (pointer.page.y < (p.y + this.options.scrollSensitivity)) { - speed[1] = pointer.page.y - (p.y + this.options.scrollSensitivity); - } - this.startScrolling(speed); - } - - // fix AppleWebKit rendering - if (/AppleWebKit'/.test(navigator.appVersion)) { - window.scrollBy(0, 0); - } - event.stop(); - }, - - /** @id MochiKit.DragAndDrop.finishDrag */ - finishDrag: function (event, success) { - var dr = MochiKit.DragAndDrop; - this.dragging = false; - if (this.options.selectclass) { - MochiKit.DOM.removeElementClass(this.element, - this.options.selectclass); - } - - if (this.options.ghosting) { - // XXX: from a user point of view, it would be better to remove - // the node only *after* the MochiKit.Visual.Move end when used - // with revert. - MochiKit.Position.relativize(this.element, this.ghostPosition); - MochiKit.DOM.removeElement(this._clone); - this._clone = null; - } - - if (success) { - dr.Droppables.fire(event, this.element); - } - dr.Draggables.notify('end', this, event); - - var revert = this.options.revert; - if (revert && typeof(revert) == 'function') { - revert = revert(this.element); - } - - var d = this.currentDelta(); - if (revert && this.options.reverteffect) { - this._revert = this.options.reverteffect(this.element, - d[1] - this.delta[1], d[0] - this.delta[0]); - } else { - this.delta = d; - } - - if (this.options.zindex) { - this.element.style.zIndex = this.originalZ; - } - - if (this.options.endeffect) { - this.options.endeffect(this.element); - } - - dr.Draggables.deactivate(); - dr.Droppables.reset(this.element); - }, - - /** @id MochiKit.DragAndDrop.keyPress */ - keyPress: function (event) { - if (event.key().string != "KEY_ESCAPE") { - return; - } - this.finishDrag(event, false); - event.stop(); - }, - - /** @id MochiKit.DragAndDrop.endDrag */ - endDrag: function (event) { - if (!this.dragging) { - return; - } - this.stopScrolling(); - this.finishDrag(event, true); - event.stop(); - }, - - /** @id MochiKit.DragAndDrop.draw */ - draw: function (point) { - var pos = MochiKit.Position.cumulativeOffset(this.element); - if (this.options.ghosting) { - var r = MochiKit.Position.realOffset(this.element); - pos.x += r.x - MochiKit.Position.windowOffset.x; - pos.y += r.y - MochiKit.Position.windowOffset.y; - } - var d = this.currentDelta(); - pos.x -= d[0]; - pos.y -= d[1]; - - if (this.options.scroll && (this.options.scroll != window && this._isScrollChild)) { - pos.x -= this.options.scroll.scrollLeft - this.originalScrollLeft; - pos.y -= this.options.scroll.scrollTop - this.originalScrollTop; - } - - var p = [point.page.x - pos.x - this.offset[0], - point.page.y - pos.y - this.offset[1]] - - if (this.options.snap) { - if (typeof(this.options.snap) == 'function') { - p = this.options.snap(p[0], p[1]); - } else { - if (this.options.snap instanceof Array) { - var i = -1; - p = MochiKit.Base.map(MochiKit.Base.bind(function (v) { - i += 1; - return Math.round(v/this.options.snap[i]) * - this.options.snap[i] - }, this), p) - } else { - p = MochiKit.Base.map(MochiKit.Base.bind(function (v) { - return Math.round(v/this.options.snap) * - this.options.snap - }, this), p) - } - } - } - var style = this.element.style; - if ((!this.options.constraint) || - (this.options.constraint == 'horizontal')) { - style.left = p[0] + 'px'; - } - if ((!this.options.constraint) || - (this.options.constraint == 'vertical')) { - style.top = p[1] + 'px'; - } - if (style.visibility == 'hidden') { - style.visibility = ''; // fix gecko rendering - } - }, - - /** @id MochiKit.DragAndDrop.stopScrolling */ - stopScrolling: function () { - if (this.scrollInterval) { - clearInterval(this.scrollInterval); - this.scrollInterval = null; - MochiKit.DragAndDrop.Draggables._lastScrollPointer = null; - } - }, - - /** @id MochiKit.DragAndDrop.startScrolling */ - startScrolling: function (speed) { - if (!speed[0] && !speed[1]) { - return; - } - this.scrollSpeed = [speed[0] * this.options.scrollSpeed, - speed[1] * this.options.scrollSpeed]; - this.lastScrolled = new Date(); - this.scrollInterval = setInterval(MochiKit.Base.bind(this.scroll, this), 10); - }, - - /** @id MochiKit.DragAndDrop.scroll */ - scroll: function () { - var current = new Date(); - var delta = current - this.lastScrolled; - this.lastScrolled = current; - - if (this.options.scroll == window) { - var s = this._getWindowScroll(this.options.scroll); - if (this.scrollSpeed[0] || this.scrollSpeed[1]) { - var d = delta / 1000; - this.options.scroll.scrollTo(s.left + d * this.scrollSpeed[0], - s.top + d * this.scrollSpeed[1]); - } - } else { - this.options.scroll.scrollLeft += this.scrollSpeed[0] * delta / 1000; - this.options.scroll.scrollTop += this.scrollSpeed[1] * delta / 1000; - } - - var d = MochiKit.DragAndDrop; - - MochiKit.Position.prepare(); - d.Droppables.show(d.Draggables._lastPointer, this.element); - d.Draggables.notify('drag', this); - if (this._isScrollChild) { - d.Draggables._lastScrollPointer = d.Draggables._lastScrollPointer || d.Draggables._lastPointer; - d.Draggables._lastScrollPointer.x += this.scrollSpeed[0] * delta / 1000; - d.Draggables._lastScrollPointer.y += this.scrollSpeed[1] * delta / 1000; - if (d.Draggables._lastScrollPointer.x < 0) { - d.Draggables._lastScrollPointer.x = 0; - } - if (d.Draggables._lastScrollPointer.y < 0) { - d.Draggables._lastScrollPointer.y = 0; - } - this.draw(d.Draggables._lastScrollPointer); - } - - this.options.onchange(this); - }, - - _getWindowScroll: function (w) { - var vp, w, h; - MochiKit.DOM.withWindow(w, function () { - vp = MochiKit.Style.getViewportPosition(w.document); - }); - if (w.innerWidth) { - w = w.innerWidth; - h = w.innerHeight; - } else if (w.document.documentElement && w.document.documentElement.clientWidth) { - w = w.document.documentElement.clientWidth; - h = w.document.documentElement.clientHeight; - } else { - w = w.document.body.offsetWidth; - h = w.document.body.offsetHeight - } - return {top: vp.x, left: vp.y, width: w, height: h}; - }, - - /** @id MochiKit.DragAndDrop.repr */ - repr: function () { - return '[' + this.__class__.NAME + ", options:" + MochiKit.Base.repr(this.options) + "]"; - } -}; - -MochiKit.DragAndDrop.__new__ = function () { - MochiKit.Base.nameFunctions(this); - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": MochiKit.Base.concat(this.EXPORT, this.EXPORT_OK) - }; -}; - -MochiKit.DragAndDrop.__new__(); - -MochiKit.Base._exportSymbols(this, MochiKit.DragAndDrop); - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Format.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Format.js deleted file mode 100755 index 8890bd573..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Format.js +++ /dev/null @@ -1,304 +0,0 @@ -/*** - -MochiKit.Format 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Format'); -} - -if (typeof(MochiKit) == 'undefined') { - MochiKit = {}; -} - -if (typeof(MochiKit.Format) == 'undefined') { - MochiKit.Format = {}; -} - -MochiKit.Format.NAME = "MochiKit.Format"; -MochiKit.Format.VERSION = "1.4"; -MochiKit.Format.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; -MochiKit.Format.toString = function () { - return this.__repr__(); -}; - -MochiKit.Format._numberFormatter = function (placeholder, header, footer, locale, isPercent, precision, leadingZeros, separatorAt, trailingZeros) { - return function (num) { - num = parseFloat(num); - if (typeof(num) == "undefined" || num === null || isNaN(num)) { - return placeholder; - } - var curheader = header; - var curfooter = footer; - if (num < 0) { - num = -num; - } else { - curheader = curheader.replace(/-/, ""); - } - var me = arguments.callee; - var fmt = MochiKit.Format.formatLocale(locale); - if (isPercent) { - num = num * 100.0; - curfooter = fmt.percent + curfooter; - } - num = MochiKit.Format.roundToFixed(num, precision); - var parts = num.split(/\./); - var whole = parts[0]; - var frac = (parts.length == 1) ? "" : parts[1]; - var res = ""; - while (whole.length < leadingZeros) { - whole = "0" + whole; - } - if (separatorAt) { - while (whole.length > separatorAt) { - var i = whole.length - separatorAt; - //res = res + fmt.separator + whole.substring(i, whole.length); - res = fmt.separator + whole.substring(i, whole.length) + res; - whole = whole.substring(0, i); - } - } - res = whole + res; - if (precision > 0) { - while (frac.length < trailingZeros) { - frac = frac + "0"; - } - res = res + fmt.decimal + frac; - } - return curheader + res + curfooter; - }; -}; - -/** @id MochiKit.Format.numberFormatter */ -MochiKit.Format.numberFormatter = function (pattern, placeholder/* = "" */, locale/* = "default" */) { - // http://java.sun.com/docs/books/tutorial/i18n/format/numberpattern.html - // | 0 | leading or trailing zeros - // | # | just the number - // | , | separator - // | . | decimal separator - // | % | Multiply by 100 and format as percent - if (typeof(placeholder) == "undefined") { - placeholder = ""; - } - var match = pattern.match(/((?:[0#]+,)?[0#]+)(?:\.([0#]+))?(%)?/); - if (!match) { - throw TypeError("Invalid pattern"); - } - var header = pattern.substr(0, match.index); - var footer = pattern.substr(match.index + match[0].length); - if (header.search(/-/) == -1) { - header = header + "-"; - } - var whole = match[1]; - var frac = (typeof(match[2]) == "string" && match[2] != "") ? match[2] : ""; - var isPercent = (typeof(match[3]) == "string" && match[3] != ""); - var tmp = whole.split(/,/); - var separatorAt; - if (typeof(locale) == "undefined") { - locale = "default"; - } - if (tmp.length == 1) { - separatorAt = null; - } else { - separatorAt = tmp[1].length; - } - var leadingZeros = whole.length - whole.replace(/0/g, "").length; - var trailingZeros = frac.length - frac.replace(/0/g, "").length; - var precision = frac.length; - var rval = MochiKit.Format._numberFormatter( - placeholder, header, footer, locale, isPercent, precision, - leadingZeros, separatorAt, trailingZeros - ); - var m = MochiKit.Base; - if (m) { - var fn = arguments.callee; - var args = m.concat(arguments); - rval.repr = function () { - return [ - self.NAME, - "(", - map(m.repr, args).join(", "), - ")" - ].join(""); - }; - } - return rval; -}; - -/** @id MochiKit.Format.formatLocale */ -MochiKit.Format.formatLocale = function (locale) { - if (typeof(locale) == "undefined" || locale === null) { - locale = "default"; - } - if (typeof(locale) == "string") { - var rval = MochiKit.Format.LOCALE[locale]; - if (typeof(rval) == "string") { - rval = arguments.callee(rval); - MochiKit.Format.LOCALE[locale] = rval; - } - return rval; - } else { - return locale; - } -}; - -/** @id MochiKit.Format.twoDigitAverage */ -MochiKit.Format.twoDigitAverage = function (numerator, denominator) { - if (denominator) { - var res = numerator / denominator; - if (!isNaN(res)) { - return MochiKit.Format.twoDigitFloat(numerator / denominator); - } - } - return "0"; -}; - -/** @id MochiKit.Format.twoDigitFloat */ -MochiKit.Format.twoDigitFloat = function (someFloat) { - var sign = (someFloat < 0 ? '-' : ''); - var s = Math.floor(Math.abs(someFloat) * 100).toString(); - if (s == '0') { - return s; - } - if (s.length < 3) { - while (s.charAt(s.length - 1) == '0') { - s = s.substring(0, s.length - 1); - } - return sign + '0.' + s; - } - var head = sign + s.substring(0, s.length - 2); - var tail = s.substring(s.length - 2, s.length); - if (tail == '00') { - return head; - } else if (tail.charAt(1) == '0') { - return head + '.' + tail.charAt(0); - } else { - return head + '.' + tail; - } -}; - -/** @id MochiKit.Format.lstrip */ -MochiKit.Format.lstrip = function (str, /* optional */chars) { - str = str + ""; - if (typeof(str) != "string") { - return null; - } - if (!chars) { - return str.replace(/^\s+/, ""); - } else { - return str.replace(new RegExp("^[" + chars + "]+"), ""); - } -}; - -/** @id MochiKit.Format.rstrip */ -MochiKit.Format.rstrip = function (str, /* optional */chars) { - str = str + ""; - if (typeof(str) != "string") { - return null; - } - if (!chars) { - return str.replace(/\s+$/, ""); - } else { - return str.replace(new RegExp("[" + chars + "]+$"), ""); - } -}; - -/** @id MochiKit.Format.strip */ -MochiKit.Format.strip = function (str, /* optional */chars) { - var self = MochiKit.Format; - return self.rstrip(self.lstrip(str, chars), chars); -}; - -/** @id MochiKit.Format.truncToFixed */ -MochiKit.Format.truncToFixed = function (aNumber, precision) { - aNumber = Math.floor(aNumber * Math.pow(10, precision)); - var res = (aNumber * Math.pow(10, -precision)).toFixed(precision); - if (res.charAt(0) == ".") { - res = "0" + res; - } - return res; -}; - -/** @id MochiKit.Format.roundToFixed */ -MochiKit.Format.roundToFixed = function (aNumber, precision) { - return MochiKit.Format.truncToFixed( - aNumber + 0.5 * Math.pow(10, -precision), - precision - ); -}; - -/** @id MochiKit.Format.percentFormat */ -MochiKit.Format.percentFormat = function (someFloat) { - return MochiKit.Format.twoDigitFloat(100 * someFloat) + '%'; -}; - -MochiKit.Format.EXPORT = [ - "truncToFixed", - "roundToFixed", - "numberFormatter", - "formatLocale", - "twoDigitAverage", - "twoDigitFloat", - "percentFormat", - "lstrip", - "rstrip", - "strip" -]; - -MochiKit.Format.LOCALE = { - en_US: {separator: ",", decimal: ".", percent: "%"}, - de_DE: {separator: ".", decimal: ",", percent: "%"}, - fr_FR: {separator: " ", decimal: ",", percent: "%"}, - "default": "en_US" -}; - -MochiKit.Format.EXPORT_OK = []; -MochiKit.Format.EXPORT_TAGS = { - ':all': MochiKit.Format.EXPORT, - ':common': MochiKit.Format.EXPORT -}; - -MochiKit.Format.__new__ = function () { - // MochiKit.Base.nameFunctions(this); - var base = this.NAME + "."; - var k, v, o; - for (k in this.LOCALE) { - o = this.LOCALE[k]; - if (typeof(o) == "object") { - o.repr = function () { return this.NAME; }; - o.NAME = base + "LOCALE." + k; - } - } - for (k in this) { - o = this[k]; - if (typeof(o) == 'function' && typeof(o.NAME) == 'undefined') { - try { - o.NAME = base + k; - } catch (e) { - // pass - } - } - } -}; - -MochiKit.Format.__new__(); - -if (typeof(MochiKit.Base) != "undefined") { - MochiKit.Base._exportSymbols(this, MochiKit.Format); -} else { - (function (globals, module) { - if ((typeof(JSAN) == 'undefined' && typeof(dojo) == 'undefined') - || (MochiKit.__export__ === false)) { - var all = module.EXPORT_TAGS[":all"]; - for (var i = 0; i < all.length; i++) { - globals[all[i]] = module[all[i]]; - } - } - })(this, MochiKit.Format); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Iter.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Iter.js deleted file mode 100755 index bb3767de9..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Iter.js +++ /dev/null @@ -1,843 +0,0 @@ -/*** - -MochiKit.Iter 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Iter'); - dojo.require('MochiKit.Base'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Iter depends on MochiKit.Base!"; -} - -if (typeof(MochiKit.Iter) == 'undefined') { - MochiKit.Iter = {}; -} - -MochiKit.Iter.NAME = "MochiKit.Iter"; -MochiKit.Iter.VERSION = "1.4"; -MochiKit.Base.update(MochiKit.Iter, { - __repr__: function () { - return "[" + this.NAME + " " + this.VERSION + "]"; - }, - toString: function () { - return this.__repr__(); - }, - - /** @id MochiKit.Iter.registerIteratorFactory */ - registerIteratorFactory: function (name, check, iterfactory, /* optional */ override) { - MochiKit.Iter.iteratorRegistry.register(name, check, iterfactory, override); - }, - - /** @id MochiKit.Iter.iter */ - iter: function (iterable, /* optional */ sentinel) { - var self = MochiKit.Iter; - if (arguments.length == 2) { - return self.takewhile( - function (a) { return a != sentinel; }, - iterable - ); - } - if (typeof(iterable.next) == 'function') { - return iterable; - } else if (typeof(iterable.iter) == 'function') { - return iterable.iter(); - /* - } else if (typeof(iterable.__iterator__) == 'function') { - // - // XXX: We can't support JavaScript 1.7 __iterator__ directly - // because of Object.prototype.__iterator__ - // - return iterable.__iterator__(); - */ - } - - try { - return self.iteratorRegistry.match(iterable); - } catch (e) { - var m = MochiKit.Base; - if (e == m.NotFound) { - e = new TypeError(typeof(iterable) + ": " + m.repr(iterable) + " is not iterable"); - } - throw e; - } - }, - - /** @id MochiKit.Iter.count */ - count: function (n) { - if (!n) { - n = 0; - } - var m = MochiKit.Base; - return { - repr: function () { return "count(" + n + ")"; }, - toString: m.forwardCall("repr"), - next: m.counter(n) - }; - }, - - /** @id MochiKit.Iter.cycle */ - cycle: function (p) { - var self = MochiKit.Iter; - var m = MochiKit.Base; - var lst = []; - var iterator = self.iter(p); - return { - repr: function () { return "cycle(...)"; }, - toString: m.forwardCall("repr"), - next: function () { - try { - var rval = iterator.next(); - lst.push(rval); - return rval; - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - if (lst.length === 0) { - this.next = function () { - throw self.StopIteration; - }; - } else { - var i = -1; - this.next = function () { - i = (i + 1) % lst.length; - return lst[i]; - }; - } - return this.next(); - } - } - }; - }, - - /** @id MochiKit.Iter.repeat */ - repeat: function (elem, /* optional */n) { - var m = MochiKit.Base; - if (typeof(n) == 'undefined') { - return { - repr: function () { - return "repeat(" + m.repr(elem) + ")"; - }, - toString: m.forwardCall("repr"), - next: function () { - return elem; - } - }; - } - return { - repr: function () { - return "repeat(" + m.repr(elem) + ", " + n + ")"; - }, - toString: m.forwardCall("repr"), - next: function () { - if (n <= 0) { - throw MochiKit.Iter.StopIteration; - } - n -= 1; - return elem; - } - }; - }, - - /** @id MochiKit.Iter.next */ - next: function (iterator) { - return iterator.next(); - }, - - /** @id MochiKit.Iter.izip */ - izip: function (p, q/*, ...*/) { - var m = MochiKit.Base; - var self = MochiKit.Iter; - var next = self.next; - var iterables = m.map(self.iter, arguments); - return { - repr: function () { return "izip(...)"; }, - toString: m.forwardCall("repr"), - next: function () { return m.map(next, iterables); } - }; - }, - - /** @id MochiKit.Iter.ifilter */ - ifilter: function (pred, seq) { - var m = MochiKit.Base; - seq = MochiKit.Iter.iter(seq); - if (pred === null) { - pred = m.operator.truth; - } - return { - repr: function () { return "ifilter(...)"; }, - toString: m.forwardCall("repr"), - next: function () { - while (true) { - var rval = seq.next(); - if (pred(rval)) { - return rval; - } - } - // mozilla warnings aren't too bright - return undefined; - } - }; - }, - - /** @id MochiKit.Iter.ifilterfalse */ - ifilterfalse: function (pred, seq) { - var m = MochiKit.Base; - seq = MochiKit.Iter.iter(seq); - if (pred === null) { - pred = m.operator.truth; - } - return { - repr: function () { return "ifilterfalse(...)"; }, - toString: m.forwardCall("repr"), - next: function () { - while (true) { - var rval = seq.next(); - if (!pred(rval)) { - return rval; - } - } - // mozilla warnings aren't too bright - return undefined; - } - }; - }, - - /** @id MochiKit.Iter.islice */ - islice: function (seq/*, [start,] stop[, step] */) { - var self = MochiKit.Iter; - var m = MochiKit.Base; - seq = self.iter(seq); - var start = 0; - var stop = 0; - var step = 1; - var i = -1; - if (arguments.length == 2) { - stop = arguments[1]; - } else if (arguments.length == 3) { - start = arguments[1]; - stop = arguments[2]; - } else { - start = arguments[1]; - stop = arguments[2]; - step = arguments[3]; - } - return { - repr: function () { - return "islice(" + ["...", start, stop, step].join(", ") + ")"; - }, - toString: m.forwardCall("repr"), - next: function () { - var rval; - while (i < start) { - rval = seq.next(); - i++; - } - if (start >= stop) { - throw self.StopIteration; - } - start += step; - return rval; - } - }; - }, - - /** @id MochiKit.Iter.imap */ - imap: function (fun, p, q/*, ...*/) { - var m = MochiKit.Base; - var self = MochiKit.Iter; - var iterables = m.map(self.iter, m.extend(null, arguments, 1)); - var map = m.map; - var next = self.next; - return { - repr: function () { return "imap(...)"; }, - toString: m.forwardCall("repr"), - next: function () { - return fun.apply(this, map(next, iterables)); - } - }; - }, - - /** @id MochiKit.Iter.applymap */ - applymap: function (fun, seq, self) { - seq = MochiKit.Iter.iter(seq); - var m = MochiKit.Base; - return { - repr: function () { return "applymap(...)"; }, - toString: m.forwardCall("repr"), - next: function () { - return fun.apply(self, seq.next()); - } - }; - }, - - /** @id MochiKit.Iter.chain */ - chain: function (p, q/*, ...*/) { - // dumb fast path - var self = MochiKit.Iter; - var m = MochiKit.Base; - if (arguments.length == 1) { - return self.iter(arguments[0]); - } - var argiter = m.map(self.iter, arguments); - return { - repr: function () { return "chain(...)"; }, - toString: m.forwardCall("repr"), - next: function () { - while (argiter.length > 1) { - try { - return argiter[0].next(); - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - argiter.shift(); - } - } - if (argiter.length == 1) { - // optimize last element - var arg = argiter.shift(); - this.next = m.bind("next", arg); - return this.next(); - } - throw self.StopIteration; - } - }; - }, - - /** @id MochiKit.Iter.takewhile */ - takewhile: function (pred, seq) { - var self = MochiKit.Iter; - seq = self.iter(seq); - return { - repr: function () { return "takewhile(...)"; }, - toString: MochiKit.Base.forwardCall("repr"), - next: function () { - var rval = seq.next(); - if (!pred(rval)) { - this.next = function () { - throw self.StopIteration; - }; - this.next(); - } - return rval; - } - }; - }, - - /** @id MochiKit.Iter.dropwhile */ - dropwhile: function (pred, seq) { - seq = MochiKit.Iter.iter(seq); - var m = MochiKit.Base; - var bind = m.bind; - return { - "repr": function () { return "dropwhile(...)"; }, - "toString": m.forwardCall("repr"), - "next": function () { - while (true) { - var rval = seq.next(); - if (!pred(rval)) { - break; - } - } - this.next = bind("next", seq); - return rval; - } - }; - }, - - _tee: function (ident, sync, iterable) { - sync.pos[ident] = -1; - var m = MochiKit.Base; - var listMin = m.listMin; - return { - repr: function () { return "tee(" + ident + ", ...)"; }, - toString: m.forwardCall("repr"), - next: function () { - var rval; - var i = sync.pos[ident]; - - if (i == sync.max) { - rval = iterable.next(); - sync.deque.push(rval); - sync.max += 1; - sync.pos[ident] += 1; - } else { - rval = sync.deque[i - sync.min]; - sync.pos[ident] += 1; - if (i == sync.min && listMin(sync.pos) != sync.min) { - sync.min += 1; - sync.deque.shift(); - } - } - return rval; - } - }; - }, - - /** @id MochiKit.Iter.tee */ - tee: function (iterable, n/* = 2 */) { - var rval = []; - var sync = { - "pos": [], - "deque": [], - "max": -1, - "min": -1 - }; - if (arguments.length == 1 || typeof(n) == "undefined" || n === null) { - n = 2; - } - var self = MochiKit.Iter; - iterable = self.iter(iterable); - var _tee = self._tee; - for (var i = 0; i < n; i++) { - rval.push(_tee(i, sync, iterable)); - } - return rval; - }, - - /** @id MochiKit.Iter.list */ - list: function (iterable) { - // Fast-path for Array and Array-like - var m = MochiKit.Base; - if (typeof(iterable.slice) == 'function') { - return iterable.slice(); - } else if (m.isArrayLike(iterable)) { - return m.concat(iterable); - } - - var self = MochiKit.Iter; - iterable = self.iter(iterable); - var rval = []; - try { - while (true) { - rval.push(iterable.next()); - } - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - return rval; - } - // mozilla warnings aren't too bright - return undefined; - }, - - - /** @id MochiKit.Iter.reduce */ - reduce: function (fn, iterable, /* optional */initial) { - var i = 0; - var x = initial; - var self = MochiKit.Iter; - iterable = self.iter(iterable); - if (arguments.length < 3) { - try { - x = iterable.next(); - } catch (e) { - if (e == self.StopIteration) { - e = new TypeError("reduce() of empty sequence with no initial value"); - } - throw e; - } - i++; - } - try { - while (true) { - x = fn(x, iterable.next()); - } - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - } - return x; - }, - - /** @id MochiKit.Iter.range */ - range: function (/* [start,] stop[, step] */) { - var start = 0; - var stop = 0; - var step = 1; - if (arguments.length == 1) { - stop = arguments[0]; - } else if (arguments.length == 2) { - start = arguments[0]; - stop = arguments[1]; - } else if (arguments.length == 3) { - start = arguments[0]; - stop = arguments[1]; - step = arguments[2]; - } else { - throw new TypeError("range() takes 1, 2, or 3 arguments!"); - } - if (step === 0) { - throw new TypeError("range() step must not be 0"); - } - return { - next: function () { - if ((step > 0 && start >= stop) || (step < 0 && start <= stop)) { - throw MochiKit.Iter.StopIteration; - } - var rval = start; - start += step; - return rval; - }, - repr: function () { - return "range(" + [start, stop, step].join(", ") + ")"; - }, - toString: MochiKit.Base.forwardCall("repr") - }; - }, - - /** @id MochiKit.Iter.sum */ - sum: function (iterable, start/* = 0 */) { - if (typeof(start) == "undefined" || start === null) { - start = 0; - } - var x = start; - var self = MochiKit.Iter; - iterable = self.iter(iterable); - try { - while (true) { - x += iterable.next(); - } - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - } - return x; - }, - - /** @id MochiKit.Iter.exhaust */ - exhaust: function (iterable) { - var self = MochiKit.Iter; - iterable = self.iter(iterable); - try { - while (true) { - iterable.next(); - } - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - } - }, - - /** @id MochiKit.Iter.forEach */ - forEach: function (iterable, func, /* optional */self) { - var m = MochiKit.Base; - if (arguments.length > 2) { - func = m.bind(func, self); - } - // fast path for array - if (m.isArrayLike(iterable)) { - try { - for (var i = 0; i < iterable.length; i++) { - func(iterable[i]); - } - } catch (e) { - if (e != MochiKit.Iter.StopIteration) { - throw e; - } - } - } else { - self = MochiKit.Iter; - self.exhaust(self.imap(func, iterable)); - } - }, - - /** @id MochiKit.Iter.every */ - every: function (iterable, func) { - var self = MochiKit.Iter; - try { - self.ifilterfalse(func, iterable).next(); - return false; - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - return true; - } - }, - - /** @id MochiKit.Iter.sorted */ - sorted: function (iterable, /* optional */cmp) { - var rval = MochiKit.Iter.list(iterable); - if (arguments.length == 1) { - cmp = MochiKit.Base.compare; - } - rval.sort(cmp); - return rval; - }, - - /** @id MochiKit.Iter.reversed */ - reversed: function (iterable) { - var rval = MochiKit.Iter.list(iterable); - rval.reverse(); - return rval; - }, - - /** @id MochiKit.Iter.some */ - some: function (iterable, func) { - var self = MochiKit.Iter; - try { - self.ifilter(func, iterable).next(); - return true; - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - return false; - } - }, - - /** @id MochiKit.Iter.iextend */ - iextend: function (lst, iterable) { - if (MochiKit.Base.isArrayLike(iterable)) { - // fast-path for array-like - for (var i = 0; i < iterable.length; i++) { - lst.push(iterable[i]); - } - } else { - var self = MochiKit.Iter; - iterable = self.iter(iterable); - try { - while (true) { - lst.push(iterable.next()); - } - } catch (e) { - if (e != self.StopIteration) { - throw e; - } - } - } - return lst; - }, - - /** @id MochiKit.Iter.groupby */ - groupby: function(iterable, /* optional */ keyfunc) { - var m = MochiKit.Base; - var self = MochiKit.Iter; - if (arguments.length < 2) { - keyfunc = m.operator.identity; - } - iterable = self.iter(iterable); - - // shared - var pk = undefined; - var k = undefined; - var v; - - function fetch() { - v = iterable.next(); - k = keyfunc(v); - }; - - function eat() { - var ret = v; - v = undefined; - return ret; - }; - - var first = true; - var compare = m.compare; - return { - repr: function () { return "groupby(...)"; }, - next: function() { - // iterator-next - - // iterate until meet next group - while (compare(k, pk) === 0) { - fetch(); - if (first) { - first = false; - break; - } - } - pk = k; - return [k, { - next: function() { - // subiterator-next - if (v == undefined) { // Is there something to eat? - fetch(); - } - if (compare(k, pk) !== 0) { - throw self.StopIteration; - } - return eat(); - } - }]; - } - }; - }, - - /** @id MochiKit.Iter.groupby_as_array */ - groupby_as_array: function (iterable, /* optional */ keyfunc) { - var m = MochiKit.Base; - var self = MochiKit.Iter; - if (arguments.length < 2) { - keyfunc = m.operator.identity; - } - - iterable = self.iter(iterable); - var result = []; - var first = true; - var prev_key; - var compare = m.compare; - while (true) { - try { - var value = iterable.next(); - var key = keyfunc(value); - } catch (e) { - if (e == self.StopIteration) { - break; - } - throw e; - } - if (first || compare(key, prev_key) !== 0) { - var values = []; - result.push([key, values]); - } - values.push(value); - first = false; - prev_key = key; - } - return result; - }, - - /** @id MochiKit.Iter.arrayLikeIter */ - arrayLikeIter: function (iterable) { - var i = 0; - return { - repr: function () { return "arrayLikeIter(...)"; }, - toString: MochiKit.Base.forwardCall("repr"), - next: function () { - if (i >= iterable.length) { - throw MochiKit.Iter.StopIteration; - } - return iterable[i++]; - } - }; - }, - - /** @id MochiKit.Iter.hasIterateNext */ - hasIterateNext: function (iterable) { - return (iterable && typeof(iterable.iterateNext) == "function"); - }, - - /** @id MochiKit.Iter.iterateNextIter */ - iterateNextIter: function (iterable) { - return { - repr: function () { return "iterateNextIter(...)"; }, - toString: MochiKit.Base.forwardCall("repr"), - next: function () { - var rval = iterable.iterateNext(); - if (rval === null || rval === undefined) { - throw MochiKit.Iter.StopIteration; - } - return rval; - } - }; - } -}); - - -MochiKit.Iter.EXPORT_OK = [ - "iteratorRegistry", - "arrayLikeIter", - "hasIterateNext", - "iterateNextIter", -]; - -MochiKit.Iter.EXPORT = [ - "StopIteration", - "registerIteratorFactory", - "iter", - "count", - "cycle", - "repeat", - "next", - "izip", - "ifilter", - "ifilterfalse", - "islice", - "imap", - "applymap", - "chain", - "takewhile", - "dropwhile", - "tee", - "list", - "reduce", - "range", - "sum", - "exhaust", - "forEach", - "every", - "sorted", - "reversed", - "some", - "iextend", - "groupby", - "groupby_as_array" -]; - -MochiKit.Iter.__new__ = function () { - var m = MochiKit.Base; - // Re-use StopIteration if exists (e.g. SpiderMonkey) - if (typeof(StopIteration) != "undefined") { - this.StopIteration = StopIteration; - } else { - /** @id MochiKit.Iter.StopIteration */ - this.StopIteration = new m.NamedError("StopIteration"); - } - this.iteratorRegistry = new m.AdapterRegistry(); - // Register the iterator factory for arrays - this.registerIteratorFactory( - "arrayLike", - m.isArrayLike, - this.arrayLikeIter - ); - - this.registerIteratorFactory( - "iterateNext", - this.hasIterateNext, - this.iterateNextIter - ); - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": m.concat(this.EXPORT, this.EXPORT_OK) - }; - - m.nameFunctions(this); - -}; - -MochiKit.Iter.__new__(); - -// -// XXX: Internet Explorer blows -// -if (MochiKit.__export__) { - reduce = MochiKit.Iter.reduce; -} - -MochiKit.Base._exportSymbols(this, MochiKit.Iter); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LICENSE.txt b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LICENSE.txt deleted file mode 100755 index 4d0065bef..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LICENSE.txt +++ /dev/null @@ -1,69 +0,0 @@ -MochiKit is dual-licensed software. It is available under the terms of the -MIT License, or the Academic Free License version 2.1. The full text of -each license is included below. - -MIT License -=========== - -Copyright (c) 2005 Bob Ippolito. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -Academic Free License v. 2.1 -============================ - -Copyright (c) 2005 Bob Ippolito. All rights reserved. - -This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: - -Licensed under the Academic Free License version 2.1 - -1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: - -a) to reproduce the Original Work in copies; - -b) to prepare derivative works ("Derivative Works") based upon the Original Work; - -c) to distribute copies of the Original Work and Derivative Works to the public; - -d) to perform the Original Work publicly; and - -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. - -5) This section intentionally omitted. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. - -10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. - -13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Logging.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Logging.js deleted file mode 100755 index b3aed964c..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Logging.js +++ /dev/null @@ -1,321 +0,0 @@ -/*** - -MochiKit.Logging 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Logging'); - dojo.require('MochiKit.Base'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Logging depends on MochiKit.Base!"; -} - -if (typeof(MochiKit.Logging) == 'undefined') { - MochiKit.Logging = {}; -} - -MochiKit.Logging.NAME = "MochiKit.Logging"; -MochiKit.Logging.VERSION = "1.4"; -MochiKit.Logging.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; - -MochiKit.Logging.toString = function () { - return this.__repr__(); -}; - - -MochiKit.Logging.EXPORT = [ - "LogLevel", - "LogMessage", - "Logger", - "alertListener", - "logger", - "log", - "logError", - "logDebug", - "logFatal", - "logWarning" -]; - - -MochiKit.Logging.EXPORT_OK = [ - "logLevelAtLeast", - "isLogMessage", - "compareLogMessage" -]; - - -/** @id MochiKit.Logging.LogMessage */ -MochiKit.Logging.LogMessage = function (num, level, info) { - this.num = num; - this.level = level; - this.info = info; - this.timestamp = new Date(); -}; - -MochiKit.Logging.LogMessage.prototype = { - /** @id MochiKit.Logging.LogMessage.prototype.repr */ - repr: function () { - var m = MochiKit.Base; - return 'LogMessage(' + - m.map( - m.repr, - [this.num, this.level, this.info] - ).join(', ') + ')'; - }, - /** @id MochiKit.Logging.LogMessage.prototype.toString */ - toString: MochiKit.Base.forwardCall("repr") -}; - -MochiKit.Base.update(MochiKit.Logging, { - /** @id MochiKit.Logging.logLevelAtLeast */ - logLevelAtLeast: function (minLevel) { - var self = MochiKit.Logging; - if (typeof(minLevel) == 'string') { - minLevel = self.LogLevel[minLevel]; - } - return function (msg) { - var msgLevel = msg.level; - if (typeof(msgLevel) == 'string') { - msgLevel = self.LogLevel[msgLevel]; - } - return msgLevel >= minLevel; - }; - }, - - /** @id MochiKit.Logging.isLogMessage */ - isLogMessage: function (/* ... */) { - var LogMessage = MochiKit.Logging.LogMessage; - for (var i = 0; i < arguments.length; i++) { - if (!(arguments[i] instanceof LogMessage)) { - return false; - } - } - return true; - }, - - /** @id MochiKit.Logging.compareLogMessage */ - compareLogMessage: function (a, b) { - return MochiKit.Base.compare([a.level, a.info], [b.level, b.info]); - }, - - /** @id MochiKit.Logging.alertListener */ - alertListener: function (msg) { - alert( - "num: " + msg.num + - "\nlevel: " + msg.level + - "\ninfo: " + msg.info.join(" ") - ); - } - -}); - -/** @id MochiKit.Logging.Logger */ -MochiKit.Logging.Logger = function (/* optional */maxSize) { - this.counter = 0; - if (typeof(maxSize) == 'undefined' || maxSize === null) { - maxSize = -1; - } - this.maxSize = maxSize; - this._messages = []; - this.listeners = {}; - this.useNativeConsole = false; -}; - -MochiKit.Logging.Logger.prototype = { - /** @id MochiKit.Logging.Logger.prototype.clear */ - clear: function () { - this._messages.splice(0, this._messages.length); - }, - - /** @id MochiKit.Logging.Logger.prototype.logToConsole */ - logToConsole: function (msg) { - if (typeof(window) != "undefined" && window.console - && window.console.log) { - // Safari and FireBug 0.4 - // Percent replacement is a workaround for cute Safari crashing bug - window.console.log(msg.replace(/%/g, '\uFF05')); - } else if (typeof(opera) != "undefined" && opera.postError) { - // Opera - opera.postError(msg); - } else if (typeof(printfire) == "function") { - // FireBug 0.3 and earlier - printfire(msg); - } else if (typeof(Debug) != "undefined" && Debug.writeln) { - // IE Web Development Helper (?) - // http://www.nikhilk.net/Entry.aspx?id=93 - Debug.writeln(msg); - } else if (typeof(debug) != "undefined" && debug.trace) { - // Atlas framework (?) - // http://www.nikhilk.net/Entry.aspx?id=93 - debug.trace(msg); - } - }, - - /** @id MochiKit.Logging.Logger.prototype.dispatchListeners */ - dispatchListeners: function (msg) { - for (var k in this.listeners) { - var pair = this.listeners[k]; - if (pair.ident != k || (pair[0] && !pair[0](msg))) { - continue; - } - pair[1](msg); - } - }, - - /** @id MochiKit.Logging.Logger.prototype.addListener */ - addListener: function (ident, filter, listener) { - if (typeof(filter) == 'string') { - filter = MochiKit.Logging.logLevelAtLeast(filter); - } - var entry = [filter, listener]; - entry.ident = ident; - this.listeners[ident] = entry; - }, - - /** @id MochiKit.Logging.Logger.prototype.removeListener */ - removeListener: function (ident) { - delete this.listeners[ident]; - }, - - /** @id MochiKit.Logging.Logger.prototype.baseLog */ - baseLog: function (level, message/*, ...*/) { - var msg = new MochiKit.Logging.LogMessage( - this.counter, - level, - MochiKit.Base.extend(null, arguments, 1) - ); - this._messages.push(msg); - this.dispatchListeners(msg); - if (this.useNativeConsole) { - this.logToConsole(msg.level + ": " + msg.info.join(" ")); - } - this.counter += 1; - while (this.maxSize >= 0 && this._messages.length > this.maxSize) { - this._messages.shift(); - } - }, - - /** @id MochiKit.Logging.Logger.prototype.getMessages */ - getMessages: function (howMany) { - var firstMsg = 0; - if (!(typeof(howMany) == 'undefined' || howMany === null)) { - firstMsg = Math.max(0, this._messages.length - howMany); - } - return this._messages.slice(firstMsg); - }, - - /** @id MochiKit.Logging.Logger.prototype.getMessageText */ - getMessageText: function (howMany) { - if (typeof(howMany) == 'undefined' || howMany === null) { - howMany = 30; - } - var messages = this.getMessages(howMany); - if (messages.length) { - var lst = map(function (m) { - return '\n [' + m.num + '] ' + m.level + ': ' + m.info.join(' '); - }, messages); - lst.unshift('LAST ' + messages.length + ' MESSAGES:'); - return lst.join(''); - } - return ''; - }, - - /** @id MochiKit.Logging.Logger.prototype.debuggingBookmarklet */ - debuggingBookmarklet: function (inline) { - if (typeof(MochiKit.LoggingPane) == "undefined") { - alert(this.getMessageText()); - } else { - MochiKit.LoggingPane.createLoggingPane(inline || false); - } - } -}; - -MochiKit.Logging.__new__ = function () { - this.LogLevel = { - ERROR: 40, - FATAL: 50, - WARNING: 30, - INFO: 20, - DEBUG: 10 - }; - - var m = MochiKit.Base; - m.registerComparator("LogMessage", - this.isLogMessage, - this.compareLogMessage - ); - - var partial = m.partial; - - var Logger = this.Logger; - var baseLog = Logger.prototype.baseLog; - m.update(this.Logger.prototype, { - debug: partial(baseLog, 'DEBUG'), - log: partial(baseLog, 'INFO'), - error: partial(baseLog, 'ERROR'), - fatal: partial(baseLog, 'FATAL'), - warning: partial(baseLog, 'WARNING') - }); - - // indirectly find logger so it can be replaced - var self = this; - var connectLog = function (name) { - return function () { - self.logger[name].apply(self.logger, arguments); - }; - }; - - /** @id MochiKit.Logging.log */ - this.log = connectLog('log'); - /** @id MochiKit.Logging.logError */ - this.logError = connectLog('error'); - /** @id MochiKit.Logging.logDebug */ - this.logDebug = connectLog('debug'); - /** @id MochiKit.Logging.logFatal */ - this.logFatal = connectLog('fatal'); - /** @id MochiKit.Logging.logWarning */ - this.logWarning = connectLog('warning'); - this.logger = new Logger(); - this.logger.useNativeConsole = true; - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": m.concat(this.EXPORT, this.EXPORT_OK) - }; - - m.nameFunctions(this); - -}; - -if (typeof(printfire) == "undefined" && - typeof(document) != "undefined" && document.createEvent && - typeof(dispatchEvent) != "undefined") { - // FireBug really should be less lame about this global function - printfire = function () { - printfire.args = arguments; - var ev = document.createEvent("Events"); - ev.initEvent("printfire", false, true); - dispatchEvent(ev); - }; -} - -MochiKit.Logging.__new__(); - -MochiKit.Base._exportSymbols(this, MochiKit.Logging); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LoggingPane.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LoggingPane.js deleted file mode 100755 index 8ecf410a7..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/LoggingPane.js +++ /dev/null @@ -1,371 +0,0 @@ -/*** - -MochiKit.LoggingPane 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.LoggingPane'); - dojo.require('MochiKit.Logging'); - dojo.require('MochiKit.Base'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Logging", []); - JSAN.use("MochiKit.Base", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined' || typeof(MochiKit.Logging) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.LoggingPane depends on MochiKit.Base and MochiKit.Logging!"; -} - -if (typeof(MochiKit.LoggingPane) == 'undefined') { - MochiKit.LoggingPane = {}; -} - -MochiKit.LoggingPane.NAME = "MochiKit.LoggingPane"; -MochiKit.LoggingPane.VERSION = "1.4"; -MochiKit.LoggingPane.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; - -MochiKit.LoggingPane.toString = function () { - return this.__repr__(); -}; - -/** @id MochiKit.LoggingPane.createLoggingPane */ -MochiKit.LoggingPane.createLoggingPane = function (inline/* = false */) { - var m = MochiKit.LoggingPane; - inline = !(!inline); - if (m._loggingPane && m._loggingPane.inline != inline) { - m._loggingPane.closePane(); - m._loggingPane = null; - } - if (!m._loggingPane || m._loggingPane.closed) { - m._loggingPane = new m.LoggingPane(inline, MochiKit.Logging.logger); - } - return m._loggingPane; -}; - -/** @id MochiKit.LoggingPane.LoggingPane */ -MochiKit.LoggingPane.LoggingPane = function (inline/* = false */, logger/* = MochiKit.Logging.logger */) { - - /* Use a div if inline, pop up a window if not */ - /* Create the elements */ - if (typeof(logger) == "undefined" || logger === null) { - logger = MochiKit.Logging.logger; - } - this.logger = logger; - var update = MochiKit.Base.update; - var updatetree = MochiKit.Base.updatetree; - var bind = MochiKit.Base.bind; - var clone = MochiKit.Base.clone; - var win = window; - var uid = "_MochiKit_LoggingPane"; - if (typeof(MochiKit.DOM) != "undefined") { - win = MochiKit.DOM.currentWindow(); - } - if (!inline) { - // name the popup with the base URL for uniqueness - var url = win.location.href.split("?")[0].replace(/[#:\/.><&-]/g, "_"); - var name = uid + "_" + url; - var nwin = win.open("", name, "dependent,resizable,height=200"); - if (!nwin) { - alert("Not able to open debugging window due to pop-up blocking."); - return undefined; - } - nwin.document.write( - '' - + '[MochiKit.LoggingPane]' - + '' - ); - nwin.document.close(); - nwin.document.title += ' ' + win.document.title; - win = nwin; - } - var doc = win.document; - this.doc = doc; - - // Connect to the debug pane if it already exists (i.e. in a window orphaned by the page being refreshed) - var debugPane = doc.getElementById(uid); - var existing_pane = !!debugPane; - if (debugPane && typeof(debugPane.loggingPane) != "undefined") { - debugPane.loggingPane.logger = this.logger; - debugPane.loggingPane.buildAndApplyFilter(); - return debugPane.loggingPane; - } - - if (existing_pane) { - // clear any existing contents - var child; - while ((child = debugPane.firstChild)) { - debugPane.removeChild(child); - } - } else { - debugPane = doc.createElement("div"); - debugPane.id = uid; - } - debugPane.loggingPane = this; - var levelFilterField = doc.createElement("input"); - var infoFilterField = doc.createElement("input"); - var filterButton = doc.createElement("button"); - var loadButton = doc.createElement("button"); - var clearButton = doc.createElement("button"); - var closeButton = doc.createElement("button"); - var logPaneArea = doc.createElement("div"); - var logPane = doc.createElement("div"); - - /* Set up the functions */ - var listenerId = uid + "_Listener"; - this.colorTable = clone(this.colorTable); - var messages = []; - var messageFilter = null; - - /** @id MochiKit.LoggingPane.messageLevel */ - var messageLevel = function (msg) { - var level = msg.level; - if (typeof(level) == "number") { - level = MochiKit.Logging.LogLevel[level]; - } - return level; - }; - - /** @id MochiKit.LoggingPane.messageText */ - var messageText = function (msg) { - return msg.info.join(" "); - }; - - /** @id MochiKit.LoggingPane.addMessageText */ - var addMessageText = bind(function (msg) { - var level = messageLevel(msg); - var text = messageText(msg); - var c = this.colorTable[level]; - var p = doc.createElement("span"); - p.className = "MochiKit-LogMessage MochiKit-LogLevel-" + level; - p.style.cssText = "margin: 0px; white-space: -moz-pre-wrap; white-space: -o-pre-wrap; white-space: pre-wrap; white-space: pre-line; word-wrap: break-word; wrap-option: emergency; color: " + c; - p.appendChild(doc.createTextNode(level + ": " + text)); - logPane.appendChild(p); - logPane.appendChild(doc.createElement("br")); - if (logPaneArea.offsetHeight > logPaneArea.scrollHeight) { - logPaneArea.scrollTop = 0; - } else { - logPaneArea.scrollTop = logPaneArea.scrollHeight; - } - }, this); - - /** @id MochiKit.LoggingPane.addMessage */ - var addMessage = function (msg) { - messages[messages.length] = msg; - addMessageText(msg); - }; - - /** @id MochiKit.LoggingPane.buildMessageFilter */ - var buildMessageFilter = function () { - var levelre, infore; - try { - /* Catch any exceptions that might arise due to invalid regexes */ - levelre = new RegExp(levelFilterField.value); - infore = new RegExp(infoFilterField.value); - } catch(e) { - /* If there was an error with the regexes, do no filtering */ - logDebug("Error in filter regex: " + e.message); - return null; - } - - return function (msg) { - return ( - levelre.test(messageLevel(msg)) && - infore.test(messageText(msg)) - ); - }; - }; - - /** @id MochiKit.LoggingPane.clearMessagePane */ - var clearMessagePane = function () { - while (logPane.firstChild) { - logPane.removeChild(logPane.firstChild); - } - }; - - /** @id MochiKit.LoggingPane.clearMessages */ - var clearMessages = function () { - messages = []; - clearMessagePane(); - }; - - /** @id MochiKit.LoggingPane.closePane */ - var closePane = bind(function () { - if (this.closed) { - return; - } - this.closed = true; - if (MochiKit.LoggingPane._loggingPane == this) { - MochiKit.LoggingPane._loggingPane = null; - } - this.logger.removeListener(listenerId); - - debugPane.loggingPane = null; - - if (inline) { - debugPane.parentNode.removeChild(debugPane); - } else { - this.win.close(); - } - }, this); - - /** @id MochiKit.LoggingPane.filterMessages */ - var filterMessages = function () { - clearMessagePane(); - - for (var i = 0; i < messages.length; i++) { - var msg = messages[i]; - if (messageFilter === null || messageFilter(msg)) { - addMessageText(msg); - } - } - }; - - this.buildAndApplyFilter = function () { - messageFilter = buildMessageFilter(); - - filterMessages(); - - this.logger.removeListener(listenerId); - this.logger.addListener(listenerId, messageFilter, addMessage); - }; - - - /** @id MochiKit.LoggingPane.loadMessages */ - var loadMessages = bind(function () { - messages = this.logger.getMessages(); - filterMessages(); - }, this); - - /** @id MochiKit.LoggingPane.filterOnEnter */ - var filterOnEnter = bind(function (event) { - event = event || window.event; - key = event.which || event.keyCode; - if (key == 13) { - this.buildAndApplyFilter(); - } - }, this); - - /* Create the debug pane */ - var style = "display: block; z-index: 1000; left: 0px; bottom: 0px; position: fixed; width: 100%; background-color: white; font: " + this.logFont; - if (inline) { - style += "; height: 10em; border-top: 2px solid black"; - } else { - style += "; height: 100%;"; - } - debugPane.style.cssText = style; - - if (!existing_pane) { - doc.body.appendChild(debugPane); - } - - /* Create the filter fields */ - style = {"cssText": "width: 33%; display: inline; font: " + this.logFont}; - - updatetree(levelFilterField, { - "value": "FATAL|ERROR|WARNING|INFO|DEBUG", - "onkeypress": filterOnEnter, - "style": style - }); - debugPane.appendChild(levelFilterField); - - updatetree(infoFilterField, { - "value": ".*", - "onkeypress": filterOnEnter, - "style": style - }); - debugPane.appendChild(infoFilterField); - - /* Create the buttons */ - style = "width: 8%; display:inline; font: " + this.logFont; - - filterButton.appendChild(doc.createTextNode("Filter")); - filterButton.onclick = bind("buildAndApplyFilter", this); - filterButton.style.cssText = style; - debugPane.appendChild(filterButton); - - loadButton.appendChild(doc.createTextNode("Load")); - loadButton.onclick = loadMessages; - loadButton.style.cssText = style; - debugPane.appendChild(loadButton); - - clearButton.appendChild(doc.createTextNode("Clear")); - clearButton.onclick = clearMessages; - clearButton.style.cssText = style; - debugPane.appendChild(clearButton); - - closeButton.appendChild(doc.createTextNode("Close")); - closeButton.onclick = closePane; - closeButton.style.cssText = style; - debugPane.appendChild(closeButton); - - /* Create the logging pane */ - logPaneArea.style.cssText = "overflow: auto; width: 100%"; - logPane.style.cssText = "width: 100%; height: " + (inline ? "8em" : "100%"); - - logPaneArea.appendChild(logPane); - debugPane.appendChild(logPaneArea); - - this.buildAndApplyFilter(); - loadMessages(); - - if (inline) { - this.win = undefined; - } else { - this.win = win; - } - this.inline = inline; - this.closePane = closePane; - this.closed = false; - - return this; -}; - -MochiKit.LoggingPane.LoggingPane.prototype = { - "logFont": "8pt Verdana,sans-serif", - "colorTable": { - "ERROR": "red", - "FATAL": "darkred", - "WARNING": "blue", - "INFO": "black", - "DEBUG": "green" - } -}; - - -MochiKit.LoggingPane.EXPORT_OK = [ - "LoggingPane" -]; - -MochiKit.LoggingPane.EXPORT = [ - "createLoggingPane" -]; - -MochiKit.LoggingPane.__new__ = function () { - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": MochiKit.Base.concat(this.EXPORT, this.EXPORT_OK) - }; - - MochiKit.Base.nameFunctions(this); - - MochiKit.LoggingPane._loggingPane = null; - -}; - -MochiKit.LoggingPane.__new__(); - -MochiKit.Base._exportSymbols(this, MochiKit.LoggingPane); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Makefile.in b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Makefile.in deleted file mode 100755 index 5059e5071..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Makefile.in +++ /dev/null @@ -1,71 +0,0 @@ -# -# ***** BEGIN LICENSE BLOCK ***** -# Version: MPL 1.1/GPL 2.0/LGPL 2.1 -# -# The contents of this file are subject to the Mozilla Public License Version -# 1.1 (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# http://www.mozilla.org/MPL/ -# -# Software distributed under the License is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -# for the specific language governing rights and limitations under the -# License. -# -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# -# Alternatively, the contents of this file may be used under the terms of -# either the GNU General Public License Version 2 or later (the "GPL"), or -# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -# in which case the provisions of the GPL or the LGPL are applicable instead -# of those above. If you wish to allow use of your version of this file only -# under the terms of either the GPL or the LGPL, and not to allow others to -# use your version of this file under the terms of the MPL, indicate your -# decision by deleting the provisions above and replace them with the notice -# and other provisions required by the GPL or the LGPL. If you do not delete -# the provisions above, a recipient may use your version of this file under -# the terms of any one of the MPL, the GPL or the LGPL. -# -# ***** END LICENSE BLOCK ***** - -DEPTH = ../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ -relativesrcdir = testing/mochitest/MochiKit - -include $(DEPTH)/config/autoconf.mk -include $(topsrcdir)/config/rules.mk - -_JS_FILES = Async.js \ - Base.js \ - Color.js \ - Controls.js \ - DateTime.js \ - DOM.js \ - DragAndDrop.js \ - Format.js \ - Iter.js \ - Logging.js \ - LoggingPane.js \ - MochiKit.js \ - MockDOM.js \ - New.js \ - __package__.js \ - packed.js \ - Signal.js \ - Sortable.js \ - Style.js \ - Test.js \ - Visual.js \ - $(NULL) - -libs:: $(_JS_FILES) - $(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/$(relativesrcdir) diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MochiKit.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MochiKit.js deleted file mode 100755 index d0935e365..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MochiKit.js +++ /dev/null @@ -1,152 +0,0 @@ -/*** - -MochiKit.MochiKit 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(MochiKit) == 'undefined') { - MochiKit = {}; -} - -if (typeof(MochiKit.MochiKit) == 'undefined') { - /** @id MochiKit.MochiKit */ - MochiKit.MochiKit = {}; -} - -MochiKit.MochiKit.NAME = "MochiKit.MochiKit"; -MochiKit.MochiKit.VERSION = "1.4"; -MochiKit.MochiKit.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; - -/** @id MochiKit.MochiKit.toString */ -MochiKit.MochiKit.toString = function () { - return this.__repr__(); -}; - -/** @id MochiKit.MochiKit.SUBMODULES */ -MochiKit.MochiKit.SUBMODULES = [ - "Base", - "Iter", - "Logging", - "DateTime", - "Format", - "Async", - "DOM", - "Style", - "LoggingPane", - "Color", - "Signal", - "Visual" -]; - -if (typeof(JSAN) != 'undefined' || typeof(dojo) != 'undefined') { - if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.MochiKit'); - dojo.require("MochiKit.*"); - } - if (typeof(JSAN) != 'undefined') { - (function (lst) { - for (var i = 0; i < lst.length; i++) { - JSAN.use("MochiKit." + lst[i], []); - } - })(MochiKit.MochiKit.SUBMODULES); - } - (function () { - var extend = MochiKit.Base.extend; - var self = MochiKit.MochiKit; - var modules = self.SUBMODULES; - var EXPORT = []; - var EXPORT_OK = []; - var EXPORT_TAGS = {}; - var i, k, m, all; - for (i = 0; i < modules.length; i++) { - m = MochiKit[modules[i]]; - extend(EXPORT, m.EXPORT); - extend(EXPORT_OK, m.EXPORT_OK); - for (k in m.EXPORT_TAGS) { - EXPORT_TAGS[k] = extend(EXPORT_TAGS[k], m.EXPORT_TAGS[k]); - } - all = m.EXPORT_TAGS[":all"]; - if (!all) { - all = extend(null, m.EXPORT, m.EXPORT_OK); - } - var j; - for (j = 0; j < all.length; j++) { - k = all[j]; - self[k] = m[k]; - } - } - self.EXPORT = EXPORT; - self.EXPORT_OK = EXPORT_OK; - self.EXPORT_TAGS = EXPORT_TAGS; - }()); - -} else { - if (typeof(MochiKit.__compat__) == 'undefined') { - MochiKit.__compat__ = true; - } - (function () { - if (typeof(document) == "undefined") { - return; - } - var scripts = document.getElementsByTagName("script"); - var kXULNSURI = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; - var base = null; - var baseElem = null; - var allScripts = {}; - var i; - for (i = 0; i < scripts.length; i++) { - var src = scripts[i].getAttribute("src"); - if (!src) { - continue; - } - allScripts[src] = true; - if (src.match(/MochiKit.js$/)) { - base = src.substring(0, src.lastIndexOf('MochiKit.js')); - baseElem = scripts[i]; - } - } - if (base === null) { - return; - } - var modules = MochiKit.MochiKit.SUBMODULES; - for (var i = 0; i < modules.length; i++) { - if (MochiKit[modules[i]]) { - continue; - } - var uri = base + modules[i] + '.js'; - if (uri in allScripts) { - continue; - } - if (document.documentElement && - document.documentElement.namespaceURI == kXULNSURI) { - // XUL - var s = document.createElementNS(kXULNSURI, 'script'); - s.setAttribute("id", "MochiKit_" + base + modules[i]); - s.setAttribute("src", uri); - s.setAttribute("type", "application/x-javascript"); - baseElem.parentNode.appendChild(s); - } else { - // HTML - /* - DOM can not be used here because Safari does - deferred loading of scripts unless they are - in the document or inserted with document.write - - This is not XHTML compliant. If you want XHTML - compliance then you must use the packed version of MochiKit - or include each script individually (basically unroll - these document.write calls into your XHTML source) - - */ - document.write(''); - } - }; - })(); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MockDOM.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MockDOM.js deleted file mode 100755 index 3f8654a98..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/MockDOM.js +++ /dev/null @@ -1,100 +0,0 @@ -/*** - -MochiKit.MockDOM 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(MochiKit) == "undefined") { - MochiKit = {}; -} - -if (typeof(MochiKit.MockDOM) == "undefined") { - MochiKit.MockDOM = {}; -} - -MochiKit.MockDOM.NAME = "MochiKit.MockDOM"; -MochiKit.MockDOM.VERSION = "1.4"; - -MochiKit.MockDOM.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; - -/** @id MochiKit.MockDOM.toString */ -MochiKit.MockDOM.toString = function () { - return this.__repr__(); -}; - -/** @id MochiKit.MockDOM.createDocument */ -MochiKit.MockDOM.createDocument = function () { - var doc = new MochiKit.MockDOM.MockElement("DOCUMENT"); - doc.body = doc.createElement("BODY"); - doc.appendChild(doc.body); - return doc; -}; - -/** @id MochiKit.MockDOM.MockElement */ -MochiKit.MockDOM.MockElement = function (name, data) { - this.tagName = this.nodeName = name.toUpperCase(); - if (typeof(data) == "string") { - this.nodeValue = data; - this.nodeType = 3; - } else { - this.nodeType = 1; - this.childNodes = []; - } - if (name.substring(0, 1) == "<") { - var nameattr = name.substring( - name.indexOf('"') + 1, name.lastIndexOf('"')); - name = name.substring(1, name.indexOf(" ")); - this.tagName = this.nodeName = name.toUpperCase(); - this.setAttribute("name", nameattr); - } -}; - -MochiKit.MockDOM.MockElement.prototype = { - /** @id MochiKit.MockDOM.MockElement.prototype.createElement */ - createElement: function (tagName) { - return new MochiKit.MockDOM.MockElement(tagName); - }, - /** @id MochiKit.MockDOM.MockElement.prototype.createTextNode */ - createTextNode: function (text) { - return new MochiKit.MockDOM.MockElement("text", text); - }, - /** @id MochiKit.MockDOM.MockElement.prototype.setAttribute */ - setAttribute: function (name, value) { - this[name] = value; - }, - /** @id MochiKit.MockDOM.MockElement.prototype.getAttribute */ - getAttribute: function (name) { - return this[name]; - }, - /** @id MochiKit.MockDOM.MockElement.prototype.appendChild */ - appendChild: function (child) { - this.childNodes.push(child); - }, - /** @id MochiKit.MockDOM.MockElement.prototype.toString */ - toString: function () { - return "MockElement(" + this.tagName + ")"; - } -}; - - /** @id MochiKit.MockDOM.EXPORT_OK */ -MochiKit.MockDOM.EXPORT_OK = [ - "mockElement", - "createDocument" -]; - - /** @id MochiKit.MockDOM.EXPORT */ -MochiKit.MockDOM.EXPORT = [ - "document" -]; - -MochiKit.MockDOM.__new__ = function () { - this.document = this.createDocument(); -}; - -MochiKit.MockDOM.__new__(); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/New.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/New.js deleted file mode 100755 index 529f1e722..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/New.js +++ /dev/null @@ -1,283 +0,0 @@ - -MochiKit.Base.update(MochiKit.DOM, { - /** @id MochiKit.DOM.makeClipping */ - makeClipping: function (element) { - element = MochiKit.DOM.getElement(element); - var oldOverflow = element.style.overflow; - if ((MochiKit.Style.getStyle(element, 'overflow') || 'visible') != 'hidden') { - element.style.overflow = 'hidden'; - } - return oldOverflow; - }, - - /** @id MochiKit.DOM.undoClipping */ - undoClipping: function (element, overflow) { - element = MochiKit.DOM.getElement(element); - if (!overflow) { - return; - } - element.style.overflow = overflow; - }, - - /** @id MochiKit.DOM.makePositioned */ - makePositioned: function (element) { - element = MochiKit.DOM.getElement(element); - var pos = MochiKit.Style.getStyle(element, 'position'); - if (pos == 'static' || !pos) { - element.style.position = 'relative'; - // Opera returns the offset relative to the positioning context, - // when an element is position relative but top and left have - // not been defined - if (/Opera/.test(navigator.userAgent)) { - element.style.top = 0; - element.style.left = 0; - } - } - }, - - /** @id MochiKit.DOM.undoPositioned */ - undoPositioned: function (element) { - element = MochiKit.DOM.getElement(element); - if (element.style.position == 'relative') { - element.style.position = element.style.top = element.style.left = element.style.bottom = element.style.right = ''; - } - }, - - /** @id MochiKit.DOM.getFirstElementByTagAndClassName */ - getFirstElementByTagAndClassName: function (tagName, className, - /* optional */parent) { - var self = MochiKit.DOM; - if (typeof(tagName) == 'undefined' || tagName === null) { - tagName = '*'; - } - if (typeof(parent) == 'undefined' || parent === null) { - parent = self._document; - } - parent = self.getElement(parent); - var children = (parent.getElementsByTagName(tagName) - || self._document.all); - if (typeof(className) == 'undefined' || className === null) { - return children[0]; - } - - for (var i = 0; i < children.length; i++) { - var child = children[i]; - var classNames = child.className.split(' '); - for (var j = 0; j < classNames.length; j++) { - if (classNames[j] == className) { - return child; - } - } - } - }, - - /** @id MochiKit.DOM.isParent */ - isParent: function (child, element) { - if (!child.parentNode || child == element) { - return false; - } - - if (child.parentNode == element) { - return true; - } - - return MochiKit.DOM.isParent(child.parentNode, element); - } -}); - -MochiKit.Position = { - // set to true if needed, warning: firefox performance problems - // NOT neeeded for page scrolling, only if draggable contained in - // scrollable elements - includeScrollOffsets: false, - - /** @id MochiKit.Position.prepare */ - prepare: function () { - var deltaX = window.pageXOffset - || document.documentElement.scrollLeft - || document.body.scrollLeft - || 0; - var deltaY = window.pageYOffset - || document.documentElement.scrollTop - || document.body.scrollTop - || 0; - this.windowOffset = new MochiKit.Style.Coordinates(deltaX, deltaY); - }, - - /** @id MochiKit.Position.cumulativeOffset */ - cumulativeOffset: function (element) { - var valueT = 0; - var valueL = 0; - do { - valueT += element.offsetTop || 0; - valueL += element.offsetLeft || 0; - element = element.offsetParent; - } while (element); - return new MochiKit.Style.Coordinates(valueL, valueT); - }, - - /** @id MochiKit.Position.realOffset */ - realOffset: function (element) { - var valueT = 0; - var valueL = 0; - do { - valueT += element.scrollTop || 0; - valueL += element.scrollLeft || 0; - element = element.parentNode; - } while (element); - return new MochiKit.Style.Coordinates(valueL, valueT); - }, - - /** @id MochiKit.Position.within */ - within: function (element, x, y) { - if (this.includeScrollOffsets) { - return this.withinIncludingScrolloffsets(element, x, y); - } - this.xcomp = x; - this.ycomp = y; - this.offset = this.cumulativeOffset(element); - if (element.style.position == "fixed") { - this.offset.x += this.windowOffset.x; - this.offset.y += this.windowOffset.y; - } - - return (y >= this.offset.y && - y < this.offset.y + element.offsetHeight && - x >= this.offset.x && - x < this.offset.x + element.offsetWidth); - }, - - /** @id MochiKit.Position.withinIncludingScrolloffsets */ - withinIncludingScrolloffsets: function (element, x, y) { - var offsetcache = this.realOffset(element); - - this.xcomp = x + offsetcache.x - this.windowOffset.x; - this.ycomp = y + offsetcache.y - this.windowOffset.y; - this.offset = this.cumulativeOffset(element); - - return (this.ycomp >= this.offset.y && - this.ycomp < this.offset.y + element.offsetHeight && - this.xcomp >= this.offset.x && - this.xcomp < this.offset.x + element.offsetWidth); - }, - - // within must be called directly before - /** @id MochiKit.Position.overlap */ - overlap: function (mode, element) { - if (!mode) { - return 0; - } - if (mode == 'vertical') { - return ((this.offset.y + element.offsetHeight) - this.ycomp) / - element.offsetHeight; - } - if (mode == 'horizontal') { - return ((this.offset.x + element.offsetWidth) - this.xcomp) / - element.offsetWidth; - } - }, - - /** @id MochiKit.Position.absolutize */ - absolutize: function (element) { - element = MochiKit.DOM.getElement(element); - if (element.style.position == 'absolute') { - return; - } - MochiKit.Position.prepare(); - - var offsets = MochiKit.Position.positionedOffset(element); - var width = element.clientWidth; - var height = element.clientHeight; - - var oldStyle = { - 'position': element.style.position, - 'left': offsets.x - parseFloat(element.style.left || 0), - 'top': offsets.y - parseFloat(element.style.top || 0), - 'width': element.style.width, - 'height': element.style.height - }; - - element.style.position = 'absolute'; - element.style.top = offsets.y + 'px'; - element.style.left = offsets.x + 'px'; - element.style.width = width + 'px'; - element.style.height = height + 'px'; - - return oldStyle; - }, - - /** @id MochiKit.Position.positionedOffset */ - positionedOffset: function (element) { - var valueT = 0, valueL = 0; - do { - valueT += element.offsetTop || 0; - valueL += element.offsetLeft || 0; - element = element.offsetParent; - if (element) { - p = MochiKit.Style.getStyle(element, 'position'); - if (p == 'relative' || p == 'absolute') { - break; - } - } - } while (element); - return new MochiKit.Style.Coordinates(valueL, valueT); - }, - - /** @id MochiKit.Position.relativize */ - relativize: function (element, oldPos) { - element = MochiKit.DOM.getElement(element); - if (element.style.position == 'relative') { - return; - } - MochiKit.Position.prepare(); - - var top = parseFloat(element.style.top || 0) - - (oldPos['top'] || 0); - var left = parseFloat(element.style.left || 0) - - (oldPos['left'] || 0); - - element.style.position = oldPos['position']; - element.style.top = top + 'px'; - element.style.left = left + 'px'; - element.style.width = oldPos['width']; - element.style.height = oldPos['height']; - }, - - /** @id MochiKit.Position.clone */ - clone: function (source, target) { - source = MochiKit.DOM.getElement(source); - target = MochiKit.DOM.getElement(target); - target.style.position = 'absolute'; - var offsets = this.cumulativeOffset(source); - target.style.top = offsets.y + 'px'; - target.style.left = offsets.x + 'px'; - target.style.width = source.offsetWidth + 'px'; - target.style.height = source.offsetHeight + 'px'; - }, - - /** @id MochiKit.Position.page */ - page: function (forElement) { - var valueT = 0; - var valueL = 0; - - var element = forElement; - do { - valueT += element.offsetTop || 0; - valueL += element.offsetLeft || 0; - - // Safari fix - if (element.offsetParent == document.body && MochiKit.Style.getStyle(element, 'position') == 'absolute') { - break; - } - } while (element = element.offsetParent); - - element = forElement; - do { - valueT -= element.scrollTop || 0; - valueL -= element.scrollLeft || 0; - } while (element = element.parentNode); - - return new MochiKit.Style.Coordinates(valueL, valueT); - } -}; - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Signal.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Signal.js deleted file mode 100755 index 74199c170..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Signal.js +++ /dev/null @@ -1,857 +0,0 @@ -/*** - -MochiKit.Signal 1.4 - -See for documentation, downloads, license, etc. - -(c) 2006 Jonathan Gardner, Beau Hartshorne, Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Signal'); - dojo.require('MochiKit.Base'); - dojo.require('MochiKit.DOM'); - dojo.require('MochiKit.Style'); -} -if (typeof(JSAN) != 'undefined') { - JSAN.use('MochiKit.Base', []); - JSAN.use('MochiKit.DOM', []); - JSAN.use('MochiKit.Style', []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ''; - } -} catch (e) { - throw 'MochiKit.Signal depends on MochiKit.Base!'; -} - -try { - if (typeof(MochiKit.DOM) == 'undefined') { - throw ''; - } -} catch (e) { - throw 'MochiKit.Signal depends on MochiKit.DOM!'; -} - -try { - if (typeof(MochiKit.Style) == 'undefined') { - throw ''; - } -} catch (e) { - throw 'MochiKit.Signal depends on MochiKit.Style!'; -} - -if (typeof(MochiKit.Signal) == 'undefined') { - MochiKit.Signal = {}; -} - -MochiKit.Signal.NAME = 'MochiKit.Signal'; -MochiKit.Signal.VERSION = '1.4'; - -MochiKit.Signal._observers = []; - -/** @id MochiKit.Signal.Event */ -MochiKit.Signal.Event = function (src, e) { - this._event = e || window.event; - this._src = src; -}; - -MochiKit.Base.update(MochiKit.Signal.Event.prototype, { - - __repr__: function () { - var repr = MochiKit.Base.repr; - var str = '{event(): ' + repr(this.event()) + - ', src(): ' + repr(this.src()) + - ', type(): ' + repr(this.type()) + - ', target(): ' + repr(this.target()) + - ', modifier(): ' + '{alt: ' + repr(this.modifier().alt) + - ', ctrl: ' + repr(this.modifier().ctrl) + - ', meta: ' + repr(this.modifier().meta) + - ', shift: ' + repr(this.modifier().shift) + - ', any: ' + repr(this.modifier().any) + '}'; - - if (this.type() && this.type().indexOf('key') === 0) { - str += ', key(): {code: ' + repr(this.key().code) + - ', string: ' + repr(this.key().string) + '}'; - } - - if (this.type() && ( - this.type().indexOf('mouse') === 0 || - this.type().indexOf('click') != -1 || - this.type() == 'contextmenu')) { - - str += ', mouse(): {page: ' + repr(this.mouse().page) + - ', client: ' + repr(this.mouse().client); - - if (this.type() != 'mousemove') { - str += ', button: {left: ' + repr(this.mouse().button.left) + - ', middle: ' + repr(this.mouse().button.middle) + - ', right: ' + repr(this.mouse().button.right) + '}}'; - } else { - str += '}'; - } - } - if (this.type() == 'mouseover' || this.type() == 'mouseout') { - str += ', relatedTarget(): ' + repr(this.relatedTarget()); - } - str += '}'; - return str; - }, - - /** @id MochiKit.Signal.Event.prototype.toString */ - toString: function () { - return this.__repr__(); - }, - - /** @id MochiKit.Signal.Event.prototype.src */ - src: function () { - return this._src; - }, - - /** @id MochiKit.Signal.Event.prototype.event */ - event: function () { - return this._event; - }, - - /** @id MochiKit.Signal.Event.prototype.type */ - type: function () { - return this._event.type || undefined; - }, - - /** @id MochiKit.Signal.Event.prototype.target */ - target: function () { - return this._event.target || this._event.srcElement; - }, - - _relatedTarget: null, - /** @id MochiKit.Signal.Event.prototype.relatedTarget */ - relatedTarget: function () { - if (this._relatedTarget !== null) { - return this._relatedTarget; - } - - var elem = null; - if (this.type() == 'mouseover') { - elem = (this._event.relatedTarget || - this._event.fromElement); - } else if (this.type() == 'mouseout') { - elem = (this._event.relatedTarget || - this._event.toElement); - } - if (elem !== null) { - this._relatedTarget = elem; - return elem; - } - - return undefined; - }, - - _modifier: null, - /** @id MochiKit.Signal.Event.prototype.modifier */ - modifier: function () { - if (this._modifier !== null) { - return this._modifier; - } - var m = {}; - m.alt = this._event.altKey; - m.ctrl = this._event.ctrlKey; - m.meta = this._event.metaKey || false; // IE and Opera punt here - m.shift = this._event.shiftKey; - m.any = m.alt || m.ctrl || m.shift || m.meta; - this._modifier = m; - return m; - }, - - _key: null, - /** @id MochiKit.Signal.Event.prototype.key */ - key: function () { - if (this._key !== null) { - return this._key; - } - var k = {}; - if (this.type() && this.type().indexOf('key') === 0) { - - /* - - If you're looking for a special key, look for it in keydown or - keyup, but never keypress. If you're looking for a Unicode - chracter, look for it with keypress, but never keyup or - keydown. - - Notes: - - FF key event behavior: - key event charCode keyCode - DOWN ku,kd 0 40 - DOWN kp 0 40 - ESC ku,kd 0 27 - ESC kp 0 27 - a ku,kd 0 65 - a kp 97 0 - shift+a ku,kd 0 65 - shift+a kp 65 0 - 1 ku,kd 0 49 - 1 kp 49 0 - shift+1 ku,kd 0 0 - shift+1 kp 33 0 - - IE key event behavior: - (IE doesn't fire keypress events for special keys.) - key event keyCode - DOWN ku,kd 40 - DOWN kp undefined - ESC ku,kd 27 - ESC kp 27 - a ku,kd 65 - a kp 97 - shift+a ku,kd 65 - shift+a kp 65 - 1 ku,kd 49 - 1 kp 49 - shift+1 ku,kd 49 - shift+1 kp 33 - - Safari key event behavior: - (Safari sets charCode and keyCode to something crazy for - special keys.) - key event charCode keyCode - DOWN ku,kd 63233 40 - DOWN kp 63233 63233 - ESC ku,kd 27 27 - ESC kp 27 27 - a ku,kd 97 65 - a kp 97 97 - shift+a ku,kd 65 65 - shift+a kp 65 65 - 1 ku,kd 49 49 - 1 kp 49 49 - shift+1 ku,kd 33 49 - shift+1 kp 33 33 - - */ - - /* look for special keys here */ - if (this.type() == 'keydown' || this.type() == 'keyup') { - k.code = this._event.keyCode; - k.string = (MochiKit.Signal._specialKeys[k.code] || - 'KEY_UNKNOWN'); - this._key = k; - return k; - - /* look for characters here */ - } else if (this.type() == 'keypress') { - - /* - - Special key behavior: - - IE: does not fire keypress events for special keys - FF: sets charCode to 0, and sets the correct keyCode - Safari: sets keyCode and charCode to something stupid - - */ - - k.code = 0; - k.string = ''; - - if (typeof(this._event.charCode) != 'undefined' && - this._event.charCode !== 0 && - !MochiKit.Signal._specialMacKeys[this._event.charCode]) { - k.code = this._event.charCode; - k.string = String.fromCharCode(k.code); - } else if (this._event.keyCode && - typeof(this._event.charCode) == 'undefined') { // IE - k.code = this._event.keyCode; - k.string = String.fromCharCode(k.code); - } - - this._key = k; - return k; - } - } - return undefined; - }, - - _mouse: null, - /** @id MochiKit.Signal.Event.prototype.mouse */ - mouse: function () { - if (this._mouse !== null) { - return this._mouse; - } - - var m = {}; - var e = this._event; - - if (this.type() && ( - this.type().indexOf('mouse') === 0 || - this.type().indexOf('click') != -1 || - this.type() == 'contextmenu')) { - - m.client = new MochiKit.Style.Coordinates(0, 0); - if (e.clientX || e.clientY) { - m.client.x = (!e.clientX || e.clientX < 0) ? 0 : e.clientX; - m.client.y = (!e.clientY || e.clientY < 0) ? 0 : e.clientY; - } - - m.page = new MochiKit.Style.Coordinates(0, 0); - if (e.pageX || e.pageY) { - m.page.x = (!e.pageX || e.pageX < 0) ? 0 : e.pageX; - m.page.y = (!e.pageY || e.pageY < 0) ? 0 : e.pageY; - } else { - /* - - The IE shortcut can be off by two. We fix it. See: - http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/getboundingclientrect.asp - - This is similar to the method used in - MochiKit.Style.getElementPosition(). - - */ - var de = MochiKit.DOM._document.documentElement; - var b = MochiKit.DOM._document.body; - - m.page.x = e.clientX + - (de.scrollLeft || b.scrollLeft) - - (de.clientLeft || 0); - - m.page.y = e.clientY + - (de.scrollTop || b.scrollTop) - - (de.clientTop || 0); - - } - if (this.type() != 'mousemove') { - m.button = {}; - m.button.left = false; - m.button.right = false; - m.button.middle = false; - - /* we could check e.button, but which is more consistent */ - if (e.which) { - m.button.left = (e.which == 1); - m.button.middle = (e.which == 2); - m.button.right = (e.which == 3); - - /* - - Mac browsers and right click: - - - Safari doesn't fire any click events on a right - click: - http://bugzilla.opendarwin.org/show_bug.cgi?id=6595 - - - Firefox fires the event, and sets ctrlKey = true - - - Opera fires the event, and sets metaKey = true - - oncontextmenu is fired on right clicks between - browsers and across platforms. - - */ - - } else { - m.button.left = !!(e.button & 1); - m.button.right = !!(e.button & 2); - m.button.middle = !!(e.button & 4); - } - } - this._mouse = m; - return m; - } - return undefined; - }, - - /** @id MochiKit.Signal.Event.prototype.stop */ - stop: function () { - this.stopPropagation(); - this.preventDefault(); - }, - - /** @id MochiKit.Signal.Event.prototype.stopPropagation */ - stopPropagation: function () { - if (this._event.stopPropagation) { - this._event.stopPropagation(); - } else { - this._event.cancelBubble = true; - } - }, - - /** @id MochiKit.Signal.Event.prototype.preventDefault */ - preventDefault: function () { - if (this._event.preventDefault) { - this._event.preventDefault(); - } else if (this._confirmUnload === null) { - this._event.returnValue = false; - } - }, - - _confirmUnload: null, - - /** @id MochiKit.Signal.Event.prototype.confirmUnload */ - confirmUnload: function (msg) { - if (this.type() == 'beforeunload') { - this._confirmUnload = msg; - this._event.returnValue = msg; - } - } -}); - -/* Safari sets keyCode to these special values onkeypress. */ -MochiKit.Signal._specialMacKeys = { - 3: 'KEY_ENTER', - 63289: 'KEY_NUM_PAD_CLEAR', - 63276: 'KEY_PAGE_UP', - 63277: 'KEY_PAGE_DOWN', - 63275: 'KEY_END', - 63273: 'KEY_HOME', - 63234: 'KEY_ARROW_LEFT', - 63232: 'KEY_ARROW_UP', - 63235: 'KEY_ARROW_RIGHT', - 63233: 'KEY_ARROW_DOWN', - 63302: 'KEY_INSERT', - 63272: 'KEY_DELETE' -}; - -/* for KEY_F1 - KEY_F12 */ -(function () { - var _specialMacKeys = MochiKit.Signal._specialMacKeys; - for (i = 63236; i <= 63242; i++) { - // no F0 - _specialMacKeys[i] = 'KEY_F' + (i - 63236 + 1); - } -})(); - -/* Standard keyboard key codes. */ -MochiKit.Signal._specialKeys = { - 8: 'KEY_BACKSPACE', - 9: 'KEY_TAB', - 12: 'KEY_NUM_PAD_CLEAR', // weird, for Safari and Mac FF only - 13: 'KEY_ENTER', - 16: 'KEY_SHIFT', - 17: 'KEY_CTRL', - 18: 'KEY_ALT', - 19: 'KEY_PAUSE', - 20: 'KEY_CAPS_LOCK', - 27: 'KEY_ESCAPE', - 32: 'KEY_SPACEBAR', - 33: 'KEY_PAGE_UP', - 34: 'KEY_PAGE_DOWN', - 35: 'KEY_END', - 36: 'KEY_HOME', - 37: 'KEY_ARROW_LEFT', - 38: 'KEY_ARROW_UP', - 39: 'KEY_ARROW_RIGHT', - 40: 'KEY_ARROW_DOWN', - 44: 'KEY_PRINT_SCREEN', - 45: 'KEY_INSERT', - 46: 'KEY_DELETE', - 59: 'KEY_SEMICOLON', // weird, for Safari and IE only - 91: 'KEY_WINDOWS_LEFT', - 92: 'KEY_WINDOWS_RIGHT', - 93: 'KEY_SELECT', - 106: 'KEY_NUM_PAD_ASTERISK', - 107: 'KEY_NUM_PAD_PLUS_SIGN', - 109: 'KEY_NUM_PAD_HYPHEN-MINUS', - 110: 'KEY_NUM_PAD_FULL_STOP', - 111: 'KEY_NUM_PAD_SOLIDUS', - 144: 'KEY_NUM_LOCK', - 145: 'KEY_SCROLL_LOCK', - 186: 'KEY_SEMICOLON', - 187: 'KEY_EQUALS_SIGN', - 188: 'KEY_COMMA', - 189: 'KEY_HYPHEN-MINUS', - 190: 'KEY_FULL_STOP', - 191: 'KEY_SOLIDUS', - 192: 'KEY_GRAVE_ACCENT', - 219: 'KEY_LEFT_SQUARE_BRACKET', - 220: 'KEY_REVERSE_SOLIDUS', - 221: 'KEY_RIGHT_SQUARE_BRACKET', - 222: 'KEY_APOSTROPHE' - // undefined: 'KEY_UNKNOWN' -}; - -(function () { - /* for KEY_0 - KEY_9 */ - var _specialKeys = MochiKit.Signal._specialKeys; - for (var i = 48; i <= 57; i++) { - _specialKeys[i] = 'KEY_' + (i - 48); - } - - /* for KEY_A - KEY_Z */ - for (i = 65; i <= 90; i++) { - _specialKeys[i] = 'KEY_' + String.fromCharCode(i); - } - - /* for KEY_NUM_PAD_0 - KEY_NUM_PAD_9 */ - for (i = 96; i <= 105; i++) { - _specialKeys[i] = 'KEY_NUM_PAD_' + (i - 96); - } - - /* for KEY_F1 - KEY_F12 */ - for (i = 112; i <= 123; i++) { - // no F0 - _specialKeys[i] = 'KEY_F' + (i - 112 + 1); - } -})(); - -MochiKit.Base.update(MochiKit.Signal, { - - __repr__: function () { - return '[' + this.NAME + ' ' + this.VERSION + ']'; - }, - - toString: function () { - return this.__repr__(); - }, - - _unloadCache: function () { - var self = MochiKit.Signal; - var observers = self._observers; - - for (var i = 0; i < observers.length; i++) { - self._disconnect(observers[i]); - } - - delete self._observers; - - try { - window.onload = undefined; - } catch(e) { - // pass - } - - try { - window.onunload = undefined; - } catch(e) { - // pass - } - }, - - _listener: function (src, func, obj, isDOM) { - var self = MochiKit.Signal; - var E = self.Event; - if (!isDOM) { - return MochiKit.Base.bind(func, obj); - } - obj = obj || src; - if (typeof(func) == "string") { - return function (nativeEvent) { - obj[func].apply(obj, [new E(src, nativeEvent)]); - }; - } else { - return function (nativeEvent) { - func.apply(obj, [new E(src, nativeEvent)]); - }; - } - }, - - _browserAlreadyHasMouseEnterAndLeave: function () { - return /MSIE/.test(navigator.userAgent); - }, - - _mouseEnterListener: function (src, sig, func, obj) { - var E = MochiKit.Signal.Event; - return function (nativeEvent) { - var e = new E(src, nativeEvent); - try { - e.relatedTarget().nodeName; - } catch (err) { - /* probably hit a permission denied error; possibly one of - * firefox's screwy anonymous DIVs inside an input element. - * Allow this event to propogate up. - */ - return; - } - e.stop(); - if (MochiKit.DOM.isChildNode(e.relatedTarget(), src)) { - /* We've moved between our node and a child. Ignore. */ - return; - } - e.type = function () { return sig; }; - if (typeof(func) == "string") { - return obj[func].apply(obj, [e]); - } else { - return func.apply(obj, [e]); - } - }; - }, - - _getDestPair: function (objOrFunc, funcOrStr) { - var obj = null; - var func = null; - if (typeof(funcOrStr) != 'undefined') { - obj = objOrFunc; - func = funcOrStr; - if (typeof(funcOrStr) == 'string') { - if (typeof(objOrFunc[funcOrStr]) != "function") { - throw new Error("'funcOrStr' must be a function on 'objOrFunc'"); - } - } else if (typeof(funcOrStr) != 'function') { - throw new Error("'funcOrStr' must be a function or string"); - } - } else if (typeof(objOrFunc) != "function") { - throw new Error("'objOrFunc' must be a function if 'funcOrStr' is not given"); - } else { - func = objOrFunc; - } - return [obj, func]; - - }, - - /** @id MochiKit.Signal.connect */ - connect: function (src, sig, objOrFunc/* optional */, funcOrStr) { - src = MochiKit.DOM.getElement(src); - var self = MochiKit.Signal; - - if (typeof(sig) != 'string') { - throw new Error("'sig' must be a string"); - } - - var destPair = self._getDestPair(objOrFunc, funcOrStr); - var obj = destPair[0]; - var func = destPair[1]; - if (typeof(obj) == 'undefined' || obj === null) { - obj = src; - } - - var isDOM = !!(src.addEventListener || src.attachEvent); - if (isDOM && (sig === "onmouseenter" || sig === "onmouseleave") - && !self._browserAlreadyHasMouseEnterAndLeave()) { - var listener = self._mouseEnterListener(src, sig.substr(2), func, obj); - if (sig === "onmouseenter") { - sig = "onmouseover"; - } else { - sig = "onmouseout"; - } - } else { - var listener = self._listener(src, func, obj, isDOM); - } - - if (src.addEventListener) { - src.addEventListener(sig.substr(2), listener, false); - } else if (src.attachEvent) { - src.attachEvent(sig, listener); // useCapture unsupported - } - - var ident = [src, sig, listener, isDOM, objOrFunc, funcOrStr, true]; - self._observers.push(ident); - - - if (!isDOM && typeof(src.__connect__) == 'function') { - var args = MochiKit.Base.extend([ident], arguments, 1); - src.__connect__.apply(src, args); - } - - - return ident; - }, - - _disconnect: function (ident) { - // already disconnected - if (!ident[6]) { return; } - ident[6] = false; - // check isDOM - if (!ident[3]) { return; } - var src = ident[0]; - var sig = ident[1]; - var listener = ident[2]; - if (src.removeEventListener) { - src.removeEventListener(sig.substr(2), listener, false); - } else if (src.detachEvent) { - src.detachEvent(sig, listener); // useCapture unsupported - } else { - throw new Error("'src' must be a DOM element"); - } - }, - - /** @id MochiKit.Signal.disconnect */ - disconnect: function (ident) { - var self = MochiKit.Signal; - var observers = self._observers; - var m = MochiKit.Base; - if (arguments.length > 1) { - // compatibility API - var src = MochiKit.DOM.getElement(arguments[0]); - var sig = arguments[1]; - var obj = arguments[2]; - var func = arguments[3]; - for (var i = observers.length - 1; i >= 0; i--) { - var o = observers[i]; - if (o[0] === src && o[1] === sig && o[4] === obj && o[5] === func) { - self._disconnect(o); - if (!self._lock) { - observers.splice(i, 1); - } else { - self._dirty = true; - } - return true; - } - } - } else { - var idx = m.findIdentical(observers, ident); - if (idx >= 0) { - self._disconnect(ident); - if (!self._lock) { - observers.splice(idx, 1); - } else { - self._dirty = true; - } - return true; - } - } - return false; - }, - - /** @id MochiKit.Signal.disconnectAllTo */ - disconnectAllTo: function (objOrFunc, /* optional */funcOrStr) { - var self = MochiKit.Signal; - var observers = self._observers; - var disconnect = self._disconnect; - var locked = self._lock; - var dirty = self._dirty; - if (typeof(funcOrStr) === 'undefined') { - funcOrStr = null; - } - for (var i = observers.length - 1; i >= 0; i--) { - var ident = observers[i]; - if (ident[4] === objOrFunc && - (funcOrStr === null || ident[5] === funcOrStr)) { - disconnect(ident); - if (locked) { - dirty = true; - } else { - observers.splice(i, 1); - } - } - } - self._dirty = dirty; - }, - - /** @id MochiKit.Signal.disconnectAll */ - disconnectAll: function (src/* optional */, sig) { - src = MochiKit.DOM.getElement(src); - var m = MochiKit.Base; - var signals = m.flattenArguments(m.extend(null, arguments, 1)); - var self = MochiKit.Signal; - var disconnect = self._disconnect; - var observers = self._observers; - var i, ident; - var locked = self._lock; - var dirty = self._dirty; - if (signals.length === 0) { - // disconnect all - for (i = observers.length - 1; i >= 0; i--) { - ident = observers[i]; - if (ident[0] === src) { - disconnect(ident); - if (!locked) { - observers.splice(i, 1); - } else { - dirty = true; - } - } - } - } else { - var sigs = {}; - for (i = 0; i < signals.length; i++) { - sigs[signals[i]] = true; - } - for (i = observers.length - 1; i >= 0; i--) { - ident = observers[i]; - if (ident[0] === src && ident[1] in sigs) { - disconnect(ident); - if (!locked) { - observers.splice(i, 1); - } else { - dirty = true; - } - } - } - } - self._dirty = dirty; - }, - - /** @id MochiKit.Signal.signal */ - signal: function (src, sig) { - var self = MochiKit.Signal; - var observers = self._observers; - src = MochiKit.DOM.getElement(src); - var args = MochiKit.Base.extend(null, arguments, 2); - var errors = []; - self._lock = true; - for (var i = 0; i < observers.length; i++) { - var ident = observers[i]; - if (ident[0] === src && ident[1] === sig) { - try { - ident[2].apply(src, args); - } catch (e) { - errors.push(e); - } - } - } - self._lock = false; - if (self._dirty) { - self._dirty = false; - for (var i = observers.length - 1; i >= 0; i--) { - if (!observers[i][6]) { - observers.splice(i, 1); - } - } - } - if (errors.length == 1) { - throw errors[0]; - } else if (errors.length > 1) { - var e = new Error("Multiple errors thrown in handling 'sig', see errors property"); - e.errors = errors; - throw e; - } - } - -}); - -MochiKit.Signal.EXPORT_OK = []; - -MochiKit.Signal.EXPORT = [ - 'connect', - 'disconnect', - 'signal', - 'disconnectAll', - 'disconnectAllTo' -]; - -MochiKit.Signal.__new__ = function (win) { - var m = MochiKit.Base; - this._document = document; - this._window = win; - this._lock = false; - this._dirty = false; - - try { - this.connect(window, 'onunload', this._unloadCache); - } catch (e) { - // pass: might not be a browser - } - - this.EXPORT_TAGS = { - ':common': this.EXPORT, - ':all': m.concat(this.EXPORT, this.EXPORT_OK) - }; - - m.nameFunctions(this); -}; - -MochiKit.Signal.__new__(this); - -// -// XXX: Internet Explorer blows -// -if (MochiKit.__export__) { - connect = MochiKit.Signal.connect; - disconnect = MochiKit.Signal.disconnect; - disconnectAll = MochiKit.Signal.disconnectAll; - signal = MochiKit.Signal.signal; -} - -MochiKit.Base._exportSymbols(this, MochiKit.Signal); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Sortable.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Sortable.js deleted file mode 100755 index 2bee90b5d..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Sortable.js +++ /dev/null @@ -1,588 +0,0 @@ -/*** -Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) - Mochi-ized By Thomas Herve (_firstname_@nimail.org) - -See scriptaculous.js for full license. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.DragAndDrop'); - dojo.require('MochiKit.Base'); - dojo.require('MochiKit.DOM'); - dojo.require('MochiKit.Iter'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); - JSAN.use("MochiKit.DOM", []); - JSAN.use("MochiKit.Iter", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined' || - typeof(MochiKit.DOM) == 'undefined' || - typeof(MochiKit.Iter) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.DragAndDrop depends on MochiKit.Base, MochiKit.DOM and MochiKit.Iter!"; -} - -if (typeof(MochiKit.Sortable) == 'undefined') { - MochiKit.Sortable = {}; -} - -MochiKit.Sortable.NAME = 'MochiKit.Sortable'; -MochiKit.Sortable.VERSION = '1.4'; - -MochiKit.Sortable.__repr__ = function () { - return '[' + this.NAME + ' ' + this.VERSION + ']'; -}; - -MochiKit.Sortable.toString = function () { - return this.__repr__(); -}; - -MochiKit.Sortable.EXPORT = [ -]; - -MochiKit.DragAndDrop.EXPORT_OK = [ - "Sortable" -]; - -MochiKit.Sortable.Sortable = { - /*** - - Manage sortables. Mainly use the create function to add a sortable. - - ***/ - sortables: {}, - - _findRootElement: function (element) { - while (element.tagName.toUpperCase() != "BODY") { - if (element.id && MochiKit.Sortable.Sortable.sortables[element.id]) { - return element; - } - element = element.parentNode; - } - }, - - /** @id MochiKit.Sortable.Sortable.options */ - options: function (element) { - element = MochiKit.Sortable.Sortable._findRootElement(MochiKit.DOM.getElement(element)); - if (!element) { - return; - } - return MochiKit.Sortable.Sortable.sortables[element.id]; - }, - - /** @id MochiKit.Sortable.Sortable.destroy */ - destroy: function (element){ - var s = MochiKit.Sortable.Sortable.options(element); - var b = MochiKit.Base; - var d = MochiKit.DragAndDrop; - - if (s) { - MochiKit.Signal.disconnect(s.startHandle); - MochiKit.Signal.disconnect(s.endHandle); - b.map(function (dr) { - d.Droppables.remove(dr); - }, s.droppables); - b.map(function (dr) { - dr.destroy(); - }, s.draggables); - - delete MochiKit.Sortable.Sortable.sortables[s.element.id]; - } - }, - - /** @id MochiKit.Sortable.Sortable.create */ - create: function (element, options) { - element = MochiKit.DOM.getElement(element); - var self = MochiKit.Sortable.Sortable; - - /** @id MochiKit.Sortable.Sortable.options */ - options = MochiKit.Base.update({ - - /** @id MochiKit.Sortable.Sortable.element */ - element: element, - - /** @id MochiKit.Sortable.Sortable.tag */ - tag: 'li', // assumes li children, override with tag: 'tagname' - - /** @id MochiKit.Sortable.Sortable.dropOnEmpty */ - dropOnEmpty: false, - - /** @id MochiKit.Sortable.Sortable.tree */ - tree: false, - - /** @id MochiKit.Sortable.Sortable.treeTag */ - treeTag: 'ul', - - /** @id MochiKit.Sortable.Sortable.overlap */ - overlap: 'vertical', // one of 'vertical', 'horizontal' - - /** @id MochiKit.Sortable.Sortable.constraint */ - constraint: 'vertical', // one of 'vertical', 'horizontal', false - // also takes array of elements (or ids); or false - - /** @id MochiKit.Sortable.Sortable.containment */ - containment: [element], - - /** @id MochiKit.Sortable.Sortable.handle */ - handle: false, // or a CSS class - - /** @id MochiKit.Sortable.Sortable.only */ - only: false, - - /** @id MochiKit.Sortable.Sortable.hoverclass */ - hoverclass: null, - - /** @id MochiKit.Sortable.Sortable.ghosting */ - ghosting: false, - - /** @id MochiKit.Sortable.Sortable.scroll */ - scroll: false, - - /** @id MochiKit.Sortable.Sortable.scrollSensitivity */ - scrollSensitivity: 20, - - /** @id MochiKit.Sortable.Sortable.scrollSpeed */ - scrollSpeed: 15, - - /** @id MochiKit.Sortable.Sortable.format */ - format: /^[^_]*_(.*)$/, - - /** @id MochiKit.Sortable.Sortable.onChange */ - onChange: MochiKit.Base.noop, - - /** @id MochiKit.Sortable.Sortable.onUpdate */ - onUpdate: MochiKit.Base.noop, - - /** @id MochiKit.Sortable.Sortable.accept */ - accept: null - }, options); - - // clear any old sortable with same element - self.destroy(element); - - // build options for the draggables - var options_for_draggable = { - revert: true, - ghosting: options.ghosting, - scroll: options.scroll, - scrollSensitivity: options.scrollSensitivity, - scrollSpeed: options.scrollSpeed, - constraint: options.constraint, - handle: options.handle - }; - - if (options.starteffect) { - options_for_draggable.starteffect = options.starteffect; - } - - if (options.reverteffect) { - options_for_draggable.reverteffect = options.reverteffect; - } else if (options.ghosting) { - options_for_draggable.reverteffect = function (innerelement) { - innerelement.style.top = 0; - innerelement.style.left = 0; - }; - } - - if (options.endeffect) { - options_for_draggable.endeffect = options.endeffect; - } - - if (options.zindex) { - options_for_draggable.zindex = options.zindex; - } - - // build options for the droppables - var options_for_droppable = { - overlap: options.overlap, - containment: options.containment, - hoverclass: options.hoverclass, - onhover: self.onHover, - tree: options.tree, - accept: options.accept - } - - var options_for_tree = { - onhover: self.onEmptyHover, - overlap: options.overlap, - containment: options.containment, - hoverclass: options.hoverclass, - accept: options.accept - } - - // fix for gecko engine - MochiKit.DOM.removeEmptyTextNodes(element); - - options.draggables = []; - options.droppables = []; - - // drop on empty handling - if (options.dropOnEmpty || options.tree) { - new MochiKit.DragAndDrop.Droppable(element, options_for_tree); - options.droppables.push(element); - } - MochiKit.Base.map(function (e) { - // handles are per-draggable - var handle = options.handle ? - MochiKit.DOM.getFirstElementByTagAndClassName(null, - options.handle, e) : e; - options.draggables.push( - new MochiKit.DragAndDrop.Draggable(e, - MochiKit.Base.update(options_for_draggable, - {handle: handle}))); - new MochiKit.DragAndDrop.Droppable(e, options_for_droppable); - if (options.tree) { - e.treeNode = element; - } - options.droppables.push(e); - }, (self.findElements(element, options) || [])); - - if (options.tree) { - MochiKit.Base.map(function (e) { - new MochiKit.DragAndDrop.Droppable(e, options_for_tree); - e.treeNode = element; - options.droppables.push(e); - }, (self.findTreeElements(element, options) || [])); - } - - // keep reference - self.sortables[element.id] = options; - - options.lastValue = self.serialize(element); - options.startHandle = MochiKit.Signal.connect(MochiKit.DragAndDrop.Draggables, 'start', - MochiKit.Base.partial(self.onStart, element)); - options.endHandle = MochiKit.Signal.connect(MochiKit.DragAndDrop.Draggables, 'end', - MochiKit.Base.partial(self.onEnd, element)); - }, - - /** @id MochiKit.Sortable.Sortable.onStart */ - onStart: function (element, draggable) { - var self = MochiKit.Sortable.Sortable; - var options = self.options(element); - options.lastValue = self.serialize(options.element); - }, - - /** @id MochiKit.Sortable.Sortable.onEnd */ - onEnd: function (element, draggable) { - var self = MochiKit.Sortable.Sortable; - self.unmark(); - var options = self.options(element); - if (options.lastValue != self.serialize(options.element)) { - options.onUpdate(options.element); - } - }, - - // return all suitable-for-sortable elements in a guaranteed order - - /** @id MochiKit.Sortable.Sortable.findElements */ - findElements: function (element, options) { - return MochiKit.Sortable.Sortable.findChildren( - element, options.only, options.tree ? true : false, options.tag); - }, - - /** @id MochiKit.Sortable.Sortable.findTreeElements */ - findTreeElements: function (element, options) { - return MochiKit.Sortable.Sortable.findChildren( - element, options.only, options.tree ? true : false, options.treeTag); - }, - - /** @id MochiKit.Sortable.Sortable.findChildren */ - findChildren: function (element, only, recursive, tagName) { - if (!element.hasChildNodes()) { - return null; - } - tagName = tagName.toUpperCase(); - if (only) { - only = MochiKit.Base.flattenArray([only]); - } - var elements = []; - MochiKit.Base.map(function (e) { - if (e.tagName && - e.tagName.toUpperCase() == tagName && - (!only || - MochiKit.Iter.some(only, function (c) { - return MochiKit.DOM.hasElementClass(e, c); - }))) { - elements.push(e); - } - if (recursive) { - var grandchildren = MochiKit.Sortable.Sortable.findChildren(e, only, recursive, tagName); - if (grandchildren && grandchildren.length > 0) { - elements = elements.concat(grandchildren); - } - } - }, element.childNodes); - return elements; - }, - - /** @id MochiKit.Sortable.Sortable.onHover */ - onHover: function (element, dropon, overlap) { - if (MochiKit.DOM.isParent(dropon, element)) { - return; - } - var self = MochiKit.Sortable.Sortable; - - if (overlap > .33 && overlap < .66 && self.options(dropon).tree) { - return; - } else if (overlap > 0.5) { - self.mark(dropon, 'before'); - if (dropon.previousSibling != element) { - var oldParentNode = element.parentNode; - element.style.visibility = 'hidden'; // fix gecko rendering - dropon.parentNode.insertBefore(element, dropon); - if (dropon.parentNode != oldParentNode) { - self.options(oldParentNode).onChange(element); - } - self.options(dropon.parentNode).onChange(element); - } - } else { - self.mark(dropon, 'after'); - var nextElement = dropon.nextSibling || null; - if (nextElement != element) { - var oldParentNode = element.parentNode; - element.style.visibility = 'hidden'; // fix gecko rendering - dropon.parentNode.insertBefore(element, nextElement); - if (dropon.parentNode != oldParentNode) { - self.options(oldParentNode).onChange(element); - } - self.options(dropon.parentNode).onChange(element); - } - } - }, - - _offsetSize: function (element, type) { - if (type == 'vertical' || type == 'height') { - return element.offsetHeight; - } else { - return element.offsetWidth; - } - }, - - /** @id MochiKit.Sortable.Sortable.onEmptyHover */ - onEmptyHover: function (element, dropon, overlap) { - var oldParentNode = element.parentNode; - var self = MochiKit.Sortable.Sortable; - var droponOptions = self.options(dropon); - - if (!MochiKit.DOM.isParent(dropon, element)) { - var index; - - var children = self.findElements(dropon, {tag: droponOptions.tag, - only: droponOptions.only}); - var child = null; - - if (children) { - var offset = self._offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap); - - for (index = 0; index < children.length; index += 1) { - if (offset - self._offsetSize(children[index], droponOptions.overlap) >= 0) { - offset -= self._offsetSize(children[index], droponOptions.overlap); - } else if (offset - (self._offsetSize (children[index], droponOptions.overlap) / 2) >= 0) { - child = index + 1 < children.length ? children[index + 1] : null; - break; - } else { - child = children[index]; - break; - } - } - } - - dropon.insertBefore(element, child); - - self.options(oldParentNode).onChange(element); - droponOptions.onChange(element); - } - }, - - /** @id MochiKit.Sortable.Sortable.unmark */ - unmark: function () { - var m = MochiKit.Sortable.Sortable._marker; - if (m) { - MochiKit.Style.hideElement(m); - } - }, - - /** @id MochiKit.Sortable.Sortable.mark */ - mark: function (dropon, position) { - // mark on ghosting only - var d = MochiKit.DOM; - var self = MochiKit.Sortable.Sortable; - var sortable = self.options(dropon.parentNode); - if (sortable && !sortable.ghosting) { - return; - } - - if (!self._marker) { - self._marker = d.getElement('dropmarker') || - document.createElement('DIV'); - MochiKit.Style.hideElement(self._marker); - d.addElementClass(self._marker, 'dropmarker'); - self._marker.style.position = 'absolute'; - document.getElementsByTagName('body').item(0).appendChild(self._marker); - } - var offsets = MochiKit.Position.cumulativeOffset(dropon); - self._marker.style.left = offsets.x + 'px'; - self._marker.style.top = offsets.y + 'px'; - - if (position == 'after') { - if (sortable.overlap == 'horizontal') { - self._marker.style.left = (offsets.x + dropon.clientWidth) + 'px'; - } else { - self._marker.style.top = (offsets.y + dropon.clientHeight) + 'px'; - } - } - MochiKit.Style.showElement(self._marker); - }, - - _tree: function (element, options, parent) { - var self = MochiKit.Sortable.Sortable; - var children = self.findElements(element, options) || []; - - for (var i = 0; i < children.length; ++i) { - var match = children[i].id.match(options.format); - - if (!match) { - continue; - } - - var child = { - id: encodeURIComponent(match ? match[1] : null), - element: element, - parent: parent, - children: [], - position: parent.children.length, - container: self._findChildrenElement(children[i], options.treeTag.toUpperCase()) - } - - /* Get the element containing the children and recurse over it */ - if (child.container) { - self._tree(child.container, options, child) - } - - parent.children.push (child); - } - - return parent; - }, - - /* Finds the first element of the given tag type within a parent element. - Used for finding the first LI[ST] within a L[IST]I[TEM].*/ - _findChildrenElement: function (element, containerTag) { - if (element && element.hasChildNodes) { - containerTag = containerTag.toUpperCase(); - for (var i = 0; i < element.childNodes.length; ++i) { - if (element.childNodes[i].tagName.toUpperCase() == containerTag) { - return element.childNodes[i]; - } - } - } - return null; - }, - - /** @id MochiKit.Sortable.Sortable.tree */ - tree: function (element, options) { - element = MochiKit.DOM.getElement(element); - var sortableOptions = MochiKit.Sortable.Sortable.options(element); - options = MochiKit.Base.update({ - tag: sortableOptions.tag, - treeTag: sortableOptions.treeTag, - only: sortableOptions.only, - name: element.id, - format: sortableOptions.format - }, options || {}); - - var root = { - id: null, - parent: null, - children: new Array, - container: element, - position: 0 - } - - return MochiKit.Sortable.Sortable._tree(element, options, root); - }, - - /** - * Specifies the sequence for the Sortable. - * @param {Node} element Element to use as the Sortable. - * @param {Object} newSequence New sequence to use. - * @param {Object} options Options to use fro the Sortable. - */ - setSequence: function (element, newSequence, options) { - var self = MochiKit.Sortable.Sortable; - var b = MochiKit.Base; - element = MochiKit.DOM.getElement(element); - options = b.update(self.options(element), options || {}); - - var nodeMap = {}; - b.map(function (n) { - var m = n.id.match(options.format); - if (m) { - nodeMap[m[1]] = [n, n.parentNode]; - } - n.parentNode.removeChild(n); - }, self.findElements(element, options)); - - b.map(function (ident) { - var n = nodeMap[ident]; - if (n) { - n[1].appendChild(n[0]); - delete nodeMap[ident]; - } - }, newSequence); - }, - - /* Construct a [i] index for a particular node */ - _constructIndex: function (node) { - var index = ''; - do { - if (node.id) { - index = '[' + node.position + ']' + index; - } - } while ((node = node.parent) != null); - return index; - }, - - /** @id MochiKit.Sortable.Sortable.sequence */ - sequence: function (element, options) { - element = MochiKit.DOM.getElement(element); - var self = MochiKit.Sortable.Sortable; - var options = MochiKit.Base.update(self.options(element), options || {}); - - return MochiKit.Base.map(function (item) { - return item.id.match(options.format) ? item.id.match(options.format)[1] : ''; - }, MochiKit.DOM.getElement(self.findElements(element, options) || [])); - }, - - /** - * Serializes the content of a Sortable. Useful to send this content through a XMLHTTPRequest. - * These options override the Sortable options for the serialization only. - * @param {Node} element Element to serialize. - * @param {Object} options Serialization options. - */ - serialize: function (element, options) { - element = MochiKit.DOM.getElement(element); - var self = MochiKit.Sortable.Sortable; - options = MochiKit.Base.update(self.options(element), options || {}); - var name = encodeURIComponent(options.name || element.id); - - if (options.tree) { - return MochiKit.Base.flattenArray(MochiKit.Base.map(function (item) { - return [name + self._constructIndex(item) + "[id]=" + - encodeURIComponent(item.id)].concat(item.children.map(arguments.callee)); - }, self.tree(element, options).children)).join('&'); - } else { - return MochiKit.Base.map(function (item) { - return name + "[]=" + encodeURIComponent(item); - }, self.sequence(element, options)).join('&'); - } - } -}; - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Style.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Style.js deleted file mode 100755 index 6abf6d717..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Style.js +++ /dev/null @@ -1,475 +0,0 @@ -/*** - -MochiKit.Style 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005-2006 Bob Ippolito, Beau Hartshorne. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Style'); - dojo.require('MochiKit.Base'); - dojo.require('MochiKit.DOM'); -} -if (typeof(JSAN) != 'undefined') { - JSAN.use('MochiKit.Base', []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ''; - } -} catch (e) { - throw 'MochiKit.Style depends on MochiKit.Base!'; -} - -try { - if (typeof(MochiKit.DOM) == 'undefined') { - throw ''; - } -} catch (e) { - throw 'MochiKit.Style depends on MochiKit.DOM!'; -} - - -if (typeof(MochiKit.Style) == 'undefined') { - MochiKit.Style = {}; -} - -MochiKit.Style.NAME = 'MochiKit.Style'; -MochiKit.Style.VERSION = '1.4'; -MochiKit.Style.__repr__ = function () { - return '[' + this.NAME + ' ' + this.VERSION + ']'; -}; -MochiKit.Style.toString = function () { - return this.__repr__(); -}; - -MochiKit.Style.EXPORT_OK = []; - -MochiKit.Style.EXPORT = [ - 'setOpacity', - 'getOpacity', - 'setStyle', - 'getStyle', // temporary - 'computedStyle', - 'getElementDimensions', - 'elementDimensions', // deprecated - 'setElementDimensions', - 'getElementPosition', - 'elementPosition', // deprecated - 'setElementPosition', - 'setDisplayForElement', - 'hideElement', - 'showElement', - 'getViewportDimensions', - 'getViewportPosition', - 'Dimensions', - 'Coordinates' -]; - - -/* - - Dimensions - -*/ -/** @id MochiKit.Style.Dimensions */ -MochiKit.Style.Dimensions = function (w, h) { - this.w = w; - this.h = h; -}; - -MochiKit.Style.Dimensions.prototype.__repr__ = function () { - var repr = MochiKit.Base.repr; - return '{w: ' + repr(this.w) + ', h: ' + repr(this.h) + '}'; -}; - -MochiKit.Style.Dimensions.prototype.toString = function () { - return this.__repr__(); -}; - - -/* - - Coordinates - -*/ -/** @id MochiKit.Style.Coordinates */ -MochiKit.Style.Coordinates = function (x, y) { - this.x = x; - this.y = y; -}; - -MochiKit.Style.Coordinates.prototype.__repr__ = function () { - var repr = MochiKit.Base.repr; - return '{x: ' + repr(this.x) + ', y: ' + repr(this.y) + '}'; -}; - -MochiKit.Style.Coordinates.prototype.toString = function () { - return this.__repr__(); -}; - - -MochiKit.Base.update(MochiKit.Style, { - - /** @id MochiKit.Style.computedStyle */ - computedStyle: function (elem, cssProperty) { - var dom = MochiKit.DOM; - var d = dom._document; - - elem = dom.getElement(elem); - cssProperty = MochiKit.Base.camelize(cssProperty); - - if (!elem || elem == d) { - return undefined; - } - - /* from YUI 0.10.0 */ - if (cssProperty == 'opacity' && elem.filters) { // IE opacity - try { - return elem.filters.item('DXImageTransform.Microsoft.Alpha' - ).opacity / 100; - } catch(e) { - try { - return elem.filters.item('alpha').opacity / 100; - } catch(e) {} - } - } - - if (elem.currentStyle) { - return elem.currentStyle[cssProperty]; - } - if (typeof(d.defaultView) == 'undefined') { - return undefined; - } - if (d.defaultView === null) { - return undefined; - } - var style = d.defaultView.getComputedStyle(elem, null); - if (typeof(style) == 'undefined' || style === null) { - return undefined; - } - - var selectorCase = cssProperty.replace(/([A-Z])/g, '-$1' - ).toLowerCase(); // from dojo.style.toSelectorCase - - return style.getPropertyValue(selectorCase); - }, - - /** @id MochiKit.Style.getStyle */ - getStyle: function (elem, style) { - elem = MochiKit.DOM.getElement(elem); - var value = elem.style[MochiKit.Base.camelize(style)]; - if (!value) { - if (document.defaultView && document.defaultView.getComputedStyle) { - var css = document.defaultView.getComputedStyle(elem, null); - value = css ? css.getPropertyValue(style) : null; - } else if (elem.currentStyle) { - value = elem.currentStyle[MochiKit.Base.camelize(style)]; - } - } - - if (/Opera/.test(navigator.userAgent) && (MochiKit.Base.find(['left', 'top', 'right', 'bottom'], style) != -1)) { - if (MochiKit.Style.getStyle(elem, 'position') == 'static') { - value = 'auto'; - } - } - - return value == 'auto' ? null : value; - }, - - /** @id MochiKit.Style.setStyle */ - setStyle: function (elem, style) { - elem = MochiKit.DOM.getElement(elem); - for (name in style) { - elem.style[MochiKit.Base.camelize(name)] = style[name]; - } - }, - - /** @id MochiKit.Style.getOpacity */ - getOpacity: function (elem) { - var opacity; - if (opacity = MochiKit.Style.getStyle(elem, 'opacity')) { - return parseFloat(opacity); - } - if (opacity = (MochiKit.Style.getStyle(elem, 'filter') || '').match(/alpha\(opacity=(.*)\)/)) { - if (opacity[1]) { - return parseFloat(opacity[1]) / 100; - } - } - return 1.0; - }, - /** @id MochiKit.Style.setOpacity */ - setOpacity: function(elem, o) { - elem = MochiKit.DOM.getElement(elem); - var self = MochiKit.Style; - if (o == 1) { - var toSet = /Gecko/.test(navigator.userAgent) && !(/Konqueror|Safari|KHTML/.test(navigator.userAgent)); - self.setStyle(elem, {opacity: toSet ? 0.999999 : 1.0}); - if (/MSIE/.test(navigator.userAgent)) { - self.setStyle(elem, {filter: - self.getStyle(elem, 'filter').replace(/alpha\([^\)]*\)/gi, '')}); - } - } else { - if (o < 0.00001) { - o = 0; - } - self.setStyle(elem, {opacity: o}); - if (/MSIE/.test(navigator.userAgent)) { - self.setStyle(elem, - {filter: self.getStyle(elem, 'filter').replace(/alpha\([^\)]*\)/gi, '') + 'alpha(opacity=' + o * 100 + ')' }); - } - } - }, - - /* - - getElementPosition is adapted from YAHOO.util.Dom.getXY v0.9.0. - Copyright: Copyright (c) 2006, Yahoo! Inc. All rights reserved. - License: BSD, http://developer.yahoo.net/yui/license.txt - - */ - - /** @id MochiKit.Style.getElementPosition */ - getElementPosition: function (elem, /* optional */relativeTo) { - var self = MochiKit.Style; - var dom = MochiKit.DOM; - elem = dom.getElement(elem); - - if (!elem || - (!(elem.x && elem.y) && - (!elem.parentNode == null || - self.computedStyle(elem, 'display') == 'none'))) { - return undefined; - } - - var c = new self.Coordinates(0, 0); - var box = null; - var parent = null; - - var d = MochiKit.DOM._document; - var de = d.documentElement; - var b = d.body; - - if (!elem.parentNode && elem.x && elem.y) { - /* it's just a MochiKit.Style.Coordinates object */ - c.x += elem.x || 0; - c.y += elem.y || 0; - } else if (elem.getBoundingClientRect) { // IE shortcut - /* - - The IE shortcut can be off by two. We fix it. See: - http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/getboundingclientrect.asp - - This is similar to the method used in - MochiKit.Signal.Event.mouse(). - - */ - box = elem.getBoundingClientRect(); - - c.x += box.left + - (de.scrollLeft || b.scrollLeft) - - (de.clientLeft || 0); - - c.y += box.top + - (de.scrollTop || b.scrollTop) - - (de.clientTop || 0); - - } else if (elem.offsetParent) { - c.x += elem.offsetLeft; - c.y += elem.offsetTop; - parent = elem.offsetParent; - - if (parent != elem) { - while (parent) { - c.x += parent.offsetLeft; - c.y += parent.offsetTop; - parent = parent.offsetParent; - } - } - - /* - - Opera < 9 and old Safari (absolute) incorrectly account for - body offsetTop and offsetLeft. - - */ - var ua = navigator.userAgent.toLowerCase(); - if ((typeof(opera) != 'undefined' && - parseFloat(opera.version()) < 9) || - (ua.indexOf('safari') != -1 && - self.computedStyle(elem, 'position') == 'absolute')) { - - c.x -= b.offsetLeft; - c.y -= b.offsetTop; - - } - } - - if (typeof(relativeTo) != 'undefined') { - relativeTo = arguments.callee(relativeTo); - if (relativeTo) { - c.x -= (relativeTo.x || 0); - c.y -= (relativeTo.y || 0); - } - } - - if (elem.parentNode) { - parent = elem.parentNode; - } else { - parent = null; - } - - while (parent) { - var tagName = parent.tagName.toUpperCase(); - if (tagName === 'BODY' || tagName === 'HTML') { - break; - } - c.x -= parent.scrollLeft; - c.y -= parent.scrollTop; - if (parent.parentNode) { - parent = parent.parentNode; - } else { - parent = null; - } - } - - return c; - }, - - /** @id MochiKit.Style.setElementPosition */ - setElementPosition: function (elem, newPos/* optional */, units) { - elem = MochiKit.DOM.getElement(elem); - if (typeof(units) == 'undefined') { - units = 'px'; - } - var newStyle = {}; - var isUndefNull = MochiKit.Base.isUndefinedOrNull; - if (!isUndefNull(newPos.x)) { - newStyle['left'] = newPos.x + units; - } - if (!isUndefNull(newPos.y)) { - newStyle['top'] = newPos.y + units; - } - MochiKit.DOM.updateNodeAttributes(elem, {'style': newStyle}); - }, - - /** @id MochiKit.Style.getElementDimensions */ - getElementDimensions: function (elem) { - var self = MochiKit.Style; - var dom = MochiKit.DOM; - if (typeof(elem.w) == 'number' || typeof(elem.h) == 'number') { - return new self.Dimensions(elem.w || 0, elem.h || 0); - } - elem = dom.getElement(elem); - if (!elem) { - return undefined; - } - var disp = self.computedStyle(elem, 'display'); - // display can be empty/undefined on WebKit/KHTML - if (disp != 'none' && disp != '' && typeof(disp) != 'undefined') { - return new self.Dimensions(elem.offsetWidth || 0, - elem.offsetHeight || 0); - } - var s = elem.style; - var originalVisibility = s.visibility; - var originalPosition = s.position; - s.visibility = 'hidden'; - s.position = 'absolute'; - s.display = ''; - var originalWidth = elem.offsetWidth; - var originalHeight = elem.offsetHeight; - s.display = 'none'; - s.position = originalPosition; - s.visibility = originalVisibility; - return new self.Dimensions(originalWidth, originalHeight); - }, - - /** @id MochiKit.Style.setElementDimensions */ - setElementDimensions: function (elem, newSize/* optional */, units) { - elem = MochiKit.DOM.getElement(elem); - if (typeof(units) == 'undefined') { - units = 'px'; - } - var newStyle = {}; - var isUndefNull = MochiKit.Base.isUndefinedOrNull; - if (!isUndefNull(newSize.w)) { - newStyle['width'] = newSize.w + units; - } - if (!isUndefNull(newSize.h)) { - newStyle['height'] = newSize.h + units; - } - MochiKit.DOM.updateNodeAttributes(elem, {'style': newStyle}); - }, - - /** @id MochiKit.Style.setDisplayForElement */ - setDisplayForElement: function (display, element/*, ...*/) { - var elements = MochiKit.Base.extend(null, arguments, 1); - var getElement = MochiKit.DOM.getElement; - for (var i = 0; i < elements.length; i++) { - var element = getElement(elements[i]); - if (element) { - element.style.display = display; - } - } - }, - - /** @id MochiKit.Style.getViewportDimensions */ - getViewportDimensions: function () { - var d = new MochiKit.Style.Dimensions(); - - var w = MochiKit.DOM._window; - var b = MochiKit.DOM._document.body; - - if (w.innerWidth) { - d.w = w.innerWidth; - d.h = w.innerHeight; - } else if (b.parentElement.clientWidth) { - d.w = b.parentElement.clientWidth; - d.h = b.parentElement.clientHeight; - } else if (b && b.clientWidth) { - d.w = b.clientWidth; - d.h = b.clientHeight; - } - return d; - }, - - /** @id MochiKit.Style.getViewportPosition */ - getViewportPosition: function () { - var c = new MochiKit.Style.Coordinates(0, 0); - var d = MochiKit.DOM._document; - var de = d.documentElement; - var db = d.body; - if (de && (de.scrollTop || de.scrollLeft)) { - c.x = de.scrollLeft; - c.y = de.scrollTop; - } else if (db) { - c.x = db.scrollLeft; - c.y = db.scrollTop; - } - return c; - }, - - __new__: function () { - var m = MochiKit.Base; - - this.elementPosition = this.getElementPosition; - this.elementDimensions = this.getElementDimensions; - - this.hideElement = m.partial(this.setDisplayForElement, 'none'); - this.showElement = m.partial(this.setDisplayForElement, 'block'); - - this.EXPORT_TAGS = { - ':common': this.EXPORT, - ':all': m.concat(this.EXPORT, this.EXPORT_OK) - }; - - m.nameFunctions(this); - } -}); - -MochiKit.Style.__new__(); -MochiKit.Base._exportSymbols(this, MochiKit.Style); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Test.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Test.js deleted file mode 100755 index 632356a43..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Test.js +++ /dev/null @@ -1,181 +0,0 @@ -/*** - -MochiKit.Test 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Test'); - dojo.require('MochiKit.Base'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); -} - -try { - if (typeof(MochiKit.Base) == 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Test depends on MochiKit.Base!"; -} - -if (typeof(MochiKit.Test) == 'undefined') { - MochiKit.Test = {}; -} - -MochiKit.Test.NAME = "MochiKit.Test"; -MochiKit.Test.VERSION = "1.4"; -MochiKit.Test.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; - -MochiKit.Test.toString = function () { - return this.__repr__(); -}; - - -MochiKit.Test.EXPORT = ["runTests"]; -MochiKit.Test.EXPORT_OK = []; - -MochiKit.Test.runTests = function (obj) { - if (typeof(obj) == "string") { - obj = JSAN.use(obj); - } - var suite = new MochiKit.Test.Suite(); - suite.run(obj); -}; - -MochiKit.Test.Suite = function () { - this.testIndex = 0; - MochiKit.Base.bindMethods(this); -}; - -MochiKit.Test.Suite.prototype = { - run: function (obj) { - try { - obj(this); - } catch (e) { - this.traceback(e); - } - }, - traceback: function (e) { - var items = MochiKit.Iter.sorted(MochiKit.Base.items(e)); - print("not ok " + this.testIndex + " - Error thrown"); - for (var i = 0; i < items.length; i++) { - var kv = items[i]; - if (kv[0] == "stack") { - kv[1] = kv[1].split(/\n/)[0]; - } - this.print("# " + kv.join(": ")); - } - }, - print: function (s) { - print(s); - }, - is: function (got, expected, /* optional */message) { - var res = 1; - var msg = null; - try { - res = MochiKit.Base.compare(got, expected); - } catch (e) { - msg = "Can not compare " + typeof(got) + ":" + typeof(expected); - } - if (res) { - msg = "Expected value did not compare equal"; - } - if (!res) { - return this.testResult(true, message); - } - return this.testResult(false, message, - [[msg], ["got:", got], ["expected:", expected]]); - }, - - testResult: function (pass, msg, failures) { - this.testIndex += 1; - if (pass) { - this.print("ok " + this.testIndex + " - " + msg); - return; - } - this.print("not ok " + this.testIndex + " - " + msg); - if (failures) { - for (var i = 0; i < failures.length; i++) { - this.print("# " + failures[i].join(" ")); - } - } - }, - - isDeeply: function (got, expected, /* optional */message) { - var m = MochiKit.Base; - var res = 1; - try { - res = m.compare(got, expected); - } catch (e) { - // pass - } - if (res === 0) { - return this.ok(true, message); - } - var gk = m.keys(got); - var ek = m.keys(expected); - gk.sort(); - ek.sort(); - if (m.compare(gk, ek)) { - // differing keys - var cmp = {}; - var i; - for (i = 0; i < gk.length; i++) { - cmp[gk[i]] = "got"; - } - for (i = 0; i < ek.length; i++) { - if (ek[i] in cmp) { - delete cmp[ek[i]]; - } else { - cmp[ek[i]] = "expected"; - } - } - var diffkeys = m.keys(cmp); - diffkeys.sort(); - var gotkeys = []; - var expkeys = []; - while (diffkeys.length) { - var k = diffkeys.shift(); - if (k in Object.prototype) { - continue; - } - (cmp[k] == "got" ? gotkeys : expkeys).push(k); - } - - - } - - return this.testResult((!res), msg, - (msg ? [["got:", got], ["expected:", expected]] : undefined) - ); - }, - - ok: function (res, message) { - return this.testResult(res, message); - } -}; - -MochiKit.Test.__new__ = function () { - var m = MochiKit.Base; - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": m.concat(this.EXPORT, this.EXPORT_OK) - }; - - m.nameFunctions(this); - -}; - -MochiKit.Test.__new__(); - -MochiKit.Base._exportSymbols(this, MochiKit.Test); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Visual.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Visual.js deleted file mode 100755 index bf8b3dfc3..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/Visual.js +++ /dev/null @@ -1,1823 +0,0 @@ -/*** - -MochiKit.Visual 1.4 - -See for documentation, downloads, license, etc. - -(c) 2005 Bob Ippolito and others. All rights Reserved. - -***/ - -if (typeof(dojo) != 'undefined') { - dojo.provide('MochiKit.Visual'); - dojo.require('MochiKit.Base'); - dojo.require('MochiKit.DOM'); - dojo.require('MochiKit.Style'); - dojo.require('MochiKit.Color'); -} - -if (typeof(JSAN) != 'undefined') { - JSAN.use("MochiKit.Base", []); - JSAN.use("MochiKit.DOM", []); - JSAN.use("MochiKit.Style", []); - JSAN.use("MochiKit.Color", []); -} - -try { - if (typeof(MochiKit.Base) === 'undefined' || - typeof(MochiKit.DOM) === 'undefined' || - typeof(MochiKit.Style) === 'undefined' || - typeof(MochiKit.Color) === 'undefined') { - throw ""; - } -} catch (e) { - throw "MochiKit.Visual depends on MochiKit.Base, MochiKit.DOM, MochiKit.Style and MochiKit.Color!"; -} - -if (typeof(MochiKit.Visual) == "undefined") { - MochiKit.Visual = {}; -} - -MochiKit.Visual.NAME = "MochiKit.Visual"; -MochiKit.Visual.VERSION = "1.4"; - -MochiKit.Visual.__repr__ = function () { - return "[" + this.NAME + " " + this.VERSION + "]"; -}; - -MochiKit.Visual.toString = function () { - return this.__repr__(); -}; - -MochiKit.Visual._RoundCorners = function (e, options) { - e = MochiKit.DOM.getElement(e); - this._setOptions(options); - if (this.options.__unstable__wrapElement) { - e = this._doWrap(e); - } - - var color = this.options.color; - var C = MochiKit.Color.Color; - if (this.options.color === "fromElement") { - color = C.fromBackground(e); - } else if (!(color instanceof C)) { - color = C.fromString(color); - } - this.isTransparent = (color.asRGB().a <= 0); - - var bgColor = this.options.bgColor; - if (this.options.bgColor === "fromParent") { - bgColor = C.fromBackground(e.offsetParent); - } else if (!(bgColor instanceof C)) { - bgColor = C.fromString(bgColor); - } - - this._roundCornersImpl(e, color, bgColor); -}; - -MochiKit.Visual._RoundCorners.prototype = { - _doWrap: function (e) { - var parent = e.parentNode; - var doc = MochiKit.DOM.currentDocument(); - if (typeof(doc.defaultView) === "undefined" - || doc.defaultView === null) { - return e; - } - var style = doc.defaultView.getComputedStyle(e, null); - if (typeof(style) === "undefined" || style === null) { - return e; - } - var wrapper = MochiKit.DOM.DIV({"style": { - display: "block", - // convert padding to margin - marginTop: style.getPropertyValue("padding-top"), - marginRight: style.getPropertyValue("padding-right"), - marginBottom: style.getPropertyValue("padding-bottom"), - marginLeft: style.getPropertyValue("padding-left"), - // remove padding so the rounding looks right - padding: "0px" - /* - paddingRight: "0px", - paddingLeft: "0px" - */ - }}); - wrapper.innerHTML = e.innerHTML; - e.innerHTML = ""; - e.appendChild(wrapper); - return e; - }, - - _roundCornersImpl: function (e, color, bgColor) { - if (this.options.border) { - this._renderBorder(e, bgColor); - } - if (this._isTopRounded()) { - this._roundTopCorners(e, color, bgColor); - } - if (this._isBottomRounded()) { - this._roundBottomCorners(e, color, bgColor); - } - }, - - _renderBorder: function (el, bgColor) { - var borderValue = "1px solid " + this._borderColor(bgColor); - var borderL = "border-left: " + borderValue; - var borderR = "border-right: " + borderValue; - var style = "style='" + borderL + ";" + borderR + "'"; - el.innerHTML = "

    " + el.innerHTML + "
    "; - }, - - _roundTopCorners: function (el, color, bgColor) { - var corner = this._createCorner(bgColor); - for (var i = 0; i < this.options.numSlices; i++) { - corner.appendChild( - this._createCornerSlice(color, bgColor, i, "top") - ); - } - el.style.paddingTop = 0; - el.insertBefore(corner, el.firstChild); - }, - - _roundBottomCorners: function (el, color, bgColor) { - var corner = this._createCorner(bgColor); - for (var i = (this.options.numSlices - 1); i >= 0; i--) { - corner.appendChild( - this._createCornerSlice(color, bgColor, i, "bottom") - ); - } - el.style.paddingBottom = 0; - el.appendChild(corner); - }, - - _createCorner: function (bgColor) { - var dom = MochiKit.DOM; - return dom.DIV({style: {backgroundColor: bgColor.toString()}}); - }, - - _createCornerSlice: function (color, bgColor, n, position) { - var slice = MochiKit.DOM.SPAN(); - - var inStyle = slice.style; - inStyle.backgroundColor = color.toString(); - inStyle.display = "block"; - inStyle.height = "1px"; - inStyle.overflow = "hidden"; - inStyle.fontSize = "1px"; - - var borderColor = this._borderColor(color, bgColor); - if (this.options.border && n === 0) { - inStyle.borderTopStyle = "solid"; - inStyle.borderTopWidth = "1px"; - inStyle.borderLeftWidth = "0px"; - inStyle.borderRightWidth = "0px"; - inStyle.borderBottomWidth = "0px"; - // assumes css compliant box model - inStyle.height = "0px"; - inStyle.borderColor = borderColor.toString(); - } else if (borderColor) { - inStyle.borderColor = borderColor.toString(); - inStyle.borderStyle = "solid"; - inStyle.borderWidth = "0px 1px"; - } - - if (!this.options.compact && (n == (this.options.numSlices - 1))) { - inStyle.height = "2px"; - } - - this._setMargin(slice, n, position); - this._setBorder(slice, n, position); - - return slice; - }, - - _setOptions: function (options) { - this.options = { - corners: "all", - color: "fromElement", - bgColor: "fromParent", - blend: true, - border: false, - compact: false, - __unstable__wrapElement: false - }; - MochiKit.Base.update(this.options, options); - - this.options.numSlices = (this.options.compact ? 2 : 4); - }, - - _whichSideTop: function () { - var corners = this.options.corners; - if (this._hasString(corners, "all", "top")) { - return ""; - } - - var has_tl = (corners.indexOf("tl") != -1); - var has_tr = (corners.indexOf("tr") != -1); - if (has_tl && has_tr) { - return ""; - } - if (has_tl) { - return "left"; - } - if (has_tr) { - return "right"; - } - return ""; - }, - - _whichSideBottom: function () { - var corners = this.options.corners; - if (this._hasString(corners, "all", "bottom")) { - return ""; - } - - var has_bl = (corners.indexOf('bl') != -1); - var has_br = (corners.indexOf('br') != -1); - if (has_bl && has_br) { - return ""; - } - if (has_bl) { - return "left"; - } - if (has_br) { - return "right"; - } - return ""; - }, - - _borderColor: function (color, bgColor) { - if (color == "transparent") { - return bgColor; - } else if (this.options.border) { - return this.options.border; - } else if (this.options.blend) { - return bgColor.blendedColor(color); - } - return ""; - }, - - - _setMargin: function (el, n, corners) { - var marginSize = this._marginSize(n) + "px"; - var whichSide = ( - corners == "top" ? this._whichSideTop() : this._whichSideBottom() - ); - var style = el.style; - - if (whichSide == "left") { - style.marginLeft = marginSize; - style.marginRight = "0px"; - } else if (whichSide == "right") { - style.marginRight = marginSize; - style.marginLeft = "0px"; - } else { - style.marginLeft = marginSize; - style.marginRight = marginSize; - } - }, - - _setBorder: function (el, n, corners) { - var borderSize = this._borderSize(n) + "px"; - var whichSide = ( - corners == "top" ? this._whichSideTop() : this._whichSideBottom() - ); - - var style = el.style; - if (whichSide == "left") { - style.borderLeftWidth = borderSize; - style.borderRightWidth = "0px"; - } else if (whichSide == "right") { - style.borderRightWidth = borderSize; - style.borderLeftWidth = "0px"; - } else { - style.borderLeftWidth = borderSize; - style.borderRightWidth = borderSize; - } - }, - - _marginSize: function (n) { - if (this.isTransparent) { - return 0; - } - - var o = this.options; - if (o.compact && o.blend) { - var smBlendedMarginSizes = [1, 0]; - return smBlendedMarginSizes[n]; - } else if (o.compact) { - var compactMarginSizes = [2, 1]; - return compactMarginSizes[n]; - } else if (o.blend) { - var blendedMarginSizes = [3, 2, 1, 0]; - return blendedMarginSizes[n]; - } else { - var marginSizes = [5, 3, 2, 1]; - return marginSizes[n]; - } - }, - - _borderSize: function (n) { - var o = this.options; - var borderSizes; - if (o.compact && (o.blend || this.isTransparent)) { - return 1; - } else if (o.compact) { - borderSizes = [1, 0]; - } else if (o.blend) { - borderSizes = [2, 1, 1, 1]; - } else if (o.border) { - borderSizes = [0, 2, 0, 0]; - } else if (this.isTransparent) { - borderSizes = [5, 3, 2, 1]; - } else { - return 0; - } - return borderSizes[n]; - }, - - _hasString: function (str) { - for (var i = 1; i< arguments.length; i++) { - if (str.indexOf(arguments[i]) != -1) { - return true; - } - } - return false; - }, - - _isTopRounded: function () { - return this._hasString(this.options.corners, - "all", "top", "tl", "tr" - ); - }, - - _isBottomRounded: function () { - return this._hasString(this.options.corners, - "all", "bottom", "bl", "br" - ); - }, - - _hasSingleTextChild: function (el) { - return (el.childNodes.length == 1 && el.childNodes[0].nodeType == 3); - } -}; - -/** @id MochiKit.Visual.roundElement */ -MochiKit.Visual.roundElement = function (e, options) { - new MochiKit.Visual._RoundCorners(e, options); -}; - -/** @id MochiKit.Visual.roundClass */ -MochiKit.Visual.roundClass = function (tagName, className, options) { - var elements = MochiKit.DOM.getElementsByTagAndClassName( - tagName, className - ); - for (var i = 0; i < elements.length; i++) { - MochiKit.Visual.roundElement(elements[i], options); - } -}; - -/** @id MochiKit.Visual.tagifyText */ -MochiKit.Visual.tagifyText = function (element, /* optional */tagifyStyle) { - /*** - - Change a node text to character in tags. - - @param tagifyStyle: the style to apply to character nodes, default to - 'position: relative'. - - ***/ - var tagifyStyle = tagifyStyle || 'position:relative'; - if (/MSIE/.test(navigator.userAgent)) { - tagifyStyle += ';zoom:1'; - } - element = MochiKit.DOM.getElement(element); - var ma = MochiKit.Base.map; - ma(function (child) { - if (child.nodeType == 3) { - ma(function (character) { - element.insertBefore( - MochiKit.DOM.SPAN({style: tagifyStyle}, - character == ' ' ? String.fromCharCode(160) : character), child); - }, child.nodeValue.split('')); - MochiKit.DOM.removeElement(child); - } - }, element.childNodes); -}; - -/** @id MochiKit.Visual.forceRerendering */ -MochiKit.Visual.forceRerendering = function (element) { - try { - element = MochiKit.DOM.getElement(element); - var n = document.createTextNode(' '); - element.appendChild(n); - element.removeChild(n); - } catch(e) { - } -}; - -/** @id MochiKit.Visual.multiple */ -MochiKit.Visual.multiple = function (elements, effect, /* optional */options) { - /*** - - Launch the same effect subsequently on given elements. - - ***/ - options = MochiKit.Base.update({ - speed: 0.1, delay: 0.0 - }, options || {}); - var masterDelay = options.delay; - var index = 0; - MochiKit.Base.map(function (innerelement) { - options.delay = index * options.speed + masterDelay; - new effect(innerelement, options); - index += 1; - }, elements); -}; - -MochiKit.Visual.PAIRS = { - 'slide': ['slideDown', 'slideUp'], - 'blind': ['blindDown', 'blindUp'], - 'appear': ['appear', 'fade'], - 'size': ['grow', 'shrink'] -}; - -/** @id MochiKit.Visual.toggle */ -MochiKit.Visual.toggle = function (element, /* optional */effect, /* optional */options) { - /*** - - Toggle an item between two state depending of its visibility, making - a effect between these states. Default effect is 'appear', can be - 'slide' or 'blind'. - - ***/ - element = MochiKit.DOM.getElement(element); - effect = (effect || 'appear').toLowerCase(); - options = MochiKit.Base.update({ - queue: {position: 'end', scope: (element.id || 'global'), limit: 1} - }, options || {}); - var v = MochiKit.Visual; - v[element.style.display != 'none' ? - v.PAIRS[effect][1] : v.PAIRS[effect][0]](element, options); -}; - -/*** - -Transitions: define functions calculating variations depending of a position. - -***/ - -MochiKit.Visual.Transitions = {} - -/** @id MochiKit.Visual.Transitions.linear */ -MochiKit.Visual.Transitions.linear = function (pos) { - return pos; -}; - -/** @id MochiKit.Visual.Transitions.sinoidal */ -MochiKit.Visual.Transitions.sinoidal = function (pos) { - return (-Math.cos(pos*Math.PI)/2) + 0.5; -}; - -/** @id MochiKit.Visual.Transitions.reverse */ -MochiKit.Visual.Transitions.reverse = function (pos) { - return 1 - pos; -}; - -/** @id MochiKit.Visual.Transitions.flicker */ -MochiKit.Visual.Transitions.flicker = function (pos) { - return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4; -}; - -/** @id MochiKit.Visual.Transitions.wobble */ -MochiKit.Visual.Transitions.wobble = function (pos) { - return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5; -}; - -/** @id MochiKit.Visual.Transitions.pulse */ -MochiKit.Visual.Transitions.pulse = function (pos) { - return (Math.floor(pos*10) % 2 == 0 ? - (pos*10 - Math.floor(pos*10)) : 1 - (pos*10 - Math.floor(pos*10))); -}; - -/** @id MochiKit.Visual.Transitions.none */ -MochiKit.Visual.Transitions.none = function (pos) { - return 0; -}; - -/** @id MochiKit.Visual.Transitions.full */ -MochiKit.Visual.Transitions.full = function (pos) { - return 1; -}; - -/*** - -Core effects - -***/ - -MochiKit.Visual.ScopedQueue = function () { - this.__init__(); -}; - -MochiKit.Base.update(MochiKit.Visual.ScopedQueue.prototype, { - __init__: function () { - this.effects = []; - this.interval = null; - }, - - /** @id MochiKit.Visual.ScopedQueue.prototype.add */ - add: function (effect) { - var timestamp = new Date().getTime(); - - var position = (typeof(effect.options.queue) == 'string') ? - effect.options.queue : effect.options.queue.position; - - var ma = MochiKit.Base.map; - switch (position) { - case 'front': - // move unstarted effects after this effect - ma(function (e) { - if (e.state == 'idle') { - e.startOn += effect.finishOn; - e.finishOn += effect.finishOn; - } - }, this.effects); - break; - case 'end': - var finish; - // start effect after last queued effect has finished - ma(function (e) { - var i = e.finishOn; - if (i >= (finish || i)) { - finish = i; - } - }, this.effects); - timestamp = finish || timestamp; - break; - case 'break': - ma(function (e) { - e.finalize(); - }, this.effects); - break; - } - - effect.startOn += timestamp; - effect.finishOn += timestamp; - if (!effect.options.queue.limit || - this.effects.length < effect.options.queue.limit) { - this.effects.push(effect); - } - - if (!this.interval) { - this.interval = this.startLoop(MochiKit.Base.bind(this.loop, this), - 40); - } - }, - - /** @id MochiKit.Visual.ScopedQueue.prototype.startLoop */ - startLoop: function (func, interval) { - return setInterval(func, interval) - }, - - /** @id MochiKit.Visual.ScopedQueue.prototype.remove */ - remove: function (effect) { - this.effects = MochiKit.Base.filter(function (e) { - return e != effect; - }, this.effects); - if (this.effects.length == 0) { - this.stopLoop(this.interval); - this.interval = null; - } - }, - - /** @id MochiKit.Visual.ScopedQueue.prototype.stopLoop */ - stopLoop: function (interval) { - clearInterval(interval) - }, - - /** @id MochiKit.Visual.ScopedQueue.prototype.loop */ - loop: function () { - var timePos = new Date().getTime(); - MochiKit.Base.map(function (effect) { - effect.loop(timePos); - }, this.effects); - } -}); - -MochiKit.Visual.Queues = { - instances: {}, - - get: function (queueName) { - if (typeof(queueName) != 'string') { - return queueName; - } - - if (!this.instances[queueName]) { - this.instances[queueName] = new MochiKit.Visual.ScopedQueue(); - } - return this.instances[queueName]; - } -}; - -MochiKit.Visual.Queue = MochiKit.Visual.Queues.get('global'); - -MochiKit.Visual.DefaultOptions = { - transition: MochiKit.Visual.Transitions.sinoidal, - duration: 1.0, // seconds - fps: 25.0, // max. 25fps due to MochiKit.Visual.Queue implementation - sync: false, // true for combining - from: 0.0, - to: 1.0, - delay: 0.0, - queue: 'parallel' -}; - -MochiKit.Visual.Base = function () {}; - -MochiKit.Visual.Base.prototype = { - /*** - - Basic class for all Effects. Define a looping mechanism called for each step - of an effect. Don't instantiate it, only subclass it. - - ***/ - - __class__ : MochiKit.Visual.Base, - - /** @id MochiKit.Visual.Base.prototype.start */ - start: function (options) { - var v = MochiKit.Visual; - this.options = MochiKit.Base.setdefault(options || {}, - v.DefaultOptions); - this.currentFrame = 0; - this.state = 'idle'; - this.startOn = this.options.delay*1000; - this.finishOn = this.startOn + (this.options.duration*1000); - this.event('beforeStart'); - if (!this.options.sync) { - v.Queues.get(typeof(this.options.queue) == 'string' ? - 'global' : this.options.queue.scope).add(this); - } - }, - - /** @id MochiKit.Visual.Base.prototype.loop */ - loop: function (timePos) { - if (timePos >= this.startOn) { - if (timePos >= this.finishOn) { - return this.finalize(); - } - var pos = (timePos - this.startOn) / (this.finishOn - this.startOn); - var frame = - Math.round(pos * this.options.fps * this.options.duration); - if (frame > this.currentFrame) { - this.render(pos); - this.currentFrame = frame; - } - } - }, - - /** @id MochiKit.Visual.Base.prototype.render */ - render: function (pos) { - if (this.state == 'idle') { - this.state = 'running'; - this.event('beforeSetup'); - this.setup(); - this.event('afterSetup'); - } - if (this.state == 'running') { - if (this.options.transition) { - pos = this.options.transition(pos); - } - pos *= (this.options.to - this.options.from); - pos += this.options.from; - this.event('beforeUpdate'); - this.update(pos); - this.event('afterUpdate'); - } - }, - - /** @id MochiKit.Visual.Base.prototype.cancel */ - cancel: function () { - if (!this.options.sync) { - MochiKit.Visual.Queues.get(typeof(this.options.queue) == 'string' ? - 'global' : this.options.queue.scope).remove(this); - } - this.state = 'finished'; - }, - - /** @id MochiKit.Visual.Base.prototype.finalize */ - finalize: function () { - this.render(1.0); - this.cancel(); - this.event('beforeFinish'); - this.finish(); - this.event('afterFinish'); - }, - - setup: function () { - }, - - finish: function () { - }, - - update: function (position) { - }, - - /** @id MochiKit.Visual.Base.prototype.event */ - event: function (eventName) { - if (this.options[eventName + 'Internal']) { - this.options[eventName + 'Internal'](this); - } - if (this.options[eventName]) { - this.options[eventName](this); - } - }, - - /** @id MochiKit.Visual.Base.prototype.repr */ - repr: function () { - return '[' + this.__class__.NAME + ', options:' + - MochiKit.Base.repr(this.options) + ']'; - } -} - - /** @id MochiKit.Visual.Parallel */ -MochiKit.Visual.Parallel = function (effects, options) { - this.__init__(effects, options); -}; - -MochiKit.Visual.Parallel.prototype = new MochiKit.Visual.Base(); - -MochiKit.Base.update(MochiKit.Visual.Parallel.prototype, { - /*** - - Run multiple effects at the same time. - - ***/ - __init__: function (effects, options) { - this.effects = effects || []; - this.start(options); - }, - - /** @id MochiKit.Visual.Parallel.prototype.update */ - update: function (position) { - MochiKit.Base.map(function (effect) { - effect.render(position); - }, this.effects); - }, - - /** @id MochiKit.Visual.Parallel.prototype.finish */ - finish: function () { - MochiKit.Base.map(function (effect) { - effect.finalize(); - }, this.effects); - } -}); - -/** @id MochiKit.Visual.Opacity */ -MochiKit.Visual.Opacity = function (element, options) { - this.__init__(element, options); -}; - -MochiKit.Visual.Opacity.prototype = new MochiKit.Visual.Base(); - -MochiKit.Base.update(MochiKit.Visual.Opacity.prototype, { - /*** - - Change the opacity of an element. - - @param options: 'from' and 'to' change the starting and ending opacities. - Must be between 0.0 and 1.0. Default to current opacity and 1.0. - - ***/ - __init__: function (element, /* optional */options) { - var b = MochiKit.Base; - var s = MochiKit.Style; - this.element = MochiKit.DOM.getElement(element); - // make this work on IE on elements without 'layout' - if (this.element.currentStyle && - (!this.element.currentStyle.hasLayout)) { - s.setStyle(this.element, {zoom: 1}); - } - options = b.update({ - from: s.getOpacity(this.element) || 0.0, - to: 1.0 - }, options || {}); - this.start(options); - }, - - /** @id MochiKit.Visual.Opacity.prototype.update */ - update: function (position) { - MochiKit.Style.setOpacity(this.element, position); - } -}); - -/** @id MochiKit.Visual.Opacity.prototype.Move */ -MochiKit.Visual.Move = function (element, options) { - this.__init__(element, options); -}; - -MochiKit.Visual.Move.prototype = new MochiKit.Visual.Base(); - -MochiKit.Base.update(MochiKit.Visual.Move.prototype, { - /*** - - Move an element between its current position to a defined position - - @param options: 'x' and 'y' for final positions, default to 0, 0. - - ***/ - __init__: function (element, /* optional */options) { - this.element = MochiKit.DOM.getElement(element); - options = MochiKit.Base.update({ - x: 0, - y: 0, - mode: 'relative' - }, options || {}); - this.start(options); - }, - - /** @id MochiKit.Visual.Move.prototype.setup */ - setup: function () { - // Bug in Opera: Opera returns the 'real' position of a static element - // or relative element that does not have top/left explicitly set. - // ==> Always set top and left for position relative elements in your - // stylesheets (to 0 if you do not need them) - MochiKit.DOM.makePositioned(this.element); - - var s = this.element.style; - var originalVisibility = s.visibility; - var originalDisplay = s.display; - if (originalDisplay == 'none') { - s.visibility = 'hidden'; - s.display = ''; - } - - this.originalLeft = parseFloat(MochiKit.Style.getStyle(this.element, 'left') || '0'); - this.originalTop = parseFloat(MochiKit.Style.getStyle(this.element, 'top') || '0'); - - if (this.options.mode == 'absolute') { - // absolute movement, so we need to calc deltaX and deltaY - this.options.x -= this.originalLeft; - this.options.y -= this.originalTop; - } - if (originalDisplay == 'none') { - s.visibility = originalVisibility; - s.display = originalDisplay; - } - }, - - /** @id MochiKit.Visual.Move.prototype.update */ - update: function (position) { - MochiKit.Style.setStyle(this.element, { - left: Math.round(this.options.x * position + this.originalLeft) + 'px', - top: Math.round(this.options.y * position + this.originalTop) + 'px' - }); - } -}); - -/** @id MochiKit.Visual.Scale */ -MochiKit.Visual.Scale = function (element, percent, options) { - this.__init__(element, percent, options); -}; - -MochiKit.Visual.Scale.prototype = new MochiKit.Visual.Base(); - -MochiKit.Base.update(MochiKit.Visual.Scale.prototype, { - /*** - - Change the size of an element. - - @param percent: final_size = percent*original_size - - @param options: several options changing scale behaviour - - ***/ - __init__: function (element, percent, /* optional */options) { - this.element = MochiKit.DOM.getElement(element) - options = MochiKit.Base.update({ - scaleX: true, - scaleY: true, - scaleContent: true, - scaleFromCenter: false, - scaleMode: 'box', // 'box' or 'contents' or {} with provided values - scaleFrom: 100.0, - scaleTo: percent - }, options || {}); - this.start(options); - }, - - /** @id MochiKit.Visual.Scale.prototype.setup */ - setup: function () { - this.restoreAfterFinish = this.options.restoreAfterFinish || false; - this.elementPositioning = MochiKit.Style.getStyle(this.element, - 'position'); - - var ma = MochiKit.Base.map; - var b = MochiKit.Base.bind; - this.originalStyle = {}; - ma(b(function (k) { - this.originalStyle[k] = this.element.style[k]; - }, this), ['top', 'left', 'width', 'height', 'fontSize']); - - this.originalTop = this.element.offsetTop; - this.originalLeft = this.element.offsetLeft; - - var fontSize = MochiKit.Style.getStyle(this.element, - 'font-size') || '100%'; - ma(b(function (fontSizeType) { - if (fontSize.indexOf(fontSizeType) > 0) { - this.fontSize = parseFloat(fontSize); - this.fontSizeType = fontSizeType; - } - }, this), ['em', 'px', '%']); - - this.factor = (this.options.scaleTo - this.options.scaleFrom)/100; - - if (/^content/.test(this.options.scaleMode)) { - this.dims = [this.element.scrollHeight, this.element.scrollWidth]; - } else if (this.options.scaleMode == 'box') { - this.dims = [this.element.offsetHeight, this.element.offsetWidth]; - } else { - this.dims = [this.options.scaleMode.originalHeight, - this.options.scaleMode.originalWidth]; - } - }, - - /** @id MochiKit.Visual.Scale.prototype.update */ - update: function (position) { - var currentScale = (this.options.scaleFrom/100.0) + - (this.factor * position); - if (this.options.scaleContent && this.fontSize) { - MochiKit.Style.setStyle(this.element, { - fontSize: this.fontSize * currentScale + this.fontSizeType - }); - } - this.setDimensions(this.dims[0] * currentScale, - this.dims[1] * currentScale); - }, - - /** @id MochiKit.Visual.Scale.prototype.finish */ - finish: function () { - if (this.restoreAfterFinish) { - MochiKit.Style.setStyle(this.element, this.originalStyle); - } - }, - - /** @id MochiKit.Visual.Scale.prototype.setDimensions */ - setDimensions: function (height, width) { - var d = {}; - var r = Math.round; - if (/MSIE/.test(navigator.userAgent)) { - r = Math.ceil; - } - if (this.options.scaleX) { - d.width = r(width) + 'px'; - } - if (this.options.scaleY) { - d.height = r(height) + 'px'; - } - if (this.options.scaleFromCenter) { - var topd = (height - this.dims[0])/2; - var leftd = (width - this.dims[1])/2; - if (this.elementPositioning == 'absolute') { - if (this.options.scaleY) { - d.top = this.originalTop - topd + 'px'; - } - if (this.options.scaleX) { - d.left = this.originalLeft - leftd + 'px'; - } - } else { - if (this.options.scaleY) { - d.top = -topd + 'px'; - } - if (this.options.scaleX) { - d.left = -leftd + 'px'; - } - } - } - MochiKit.Style.setStyle(this.element, d); - } -}); - -/** @id MochiKit.Visual.Highlight */ -MochiKit.Visual.Highlight = function (element, options) { - this.__init__(element, options); -}; - -MochiKit.Visual.Highlight.prototype = new MochiKit.Visual.Base(); - -MochiKit.Base.update(MochiKit.Visual.Highlight.prototype, { - /*** - - Highlight an item of the page. - - @param options: 'startcolor' for choosing highlighting color, default - to '#ffff99'. - - ***/ - __init__: function (element, /* optional */options) { - this.element = MochiKit.DOM.getElement(element); - options = MochiKit.Base.update({ - startcolor: '#ffff99' - }, options || {}); - this.start(options); - }, - - /** @id MochiKit.Visual.Highlight.prototype.setup */ - setup: function () { - var b = MochiKit.Base; - var s = MochiKit.Style; - // Prevent executing on elements not in the layout flow - if (s.getStyle(this.element, 'display') == 'none') { - this.cancel(); - return; - } - // Disable background image during the effect - this.oldStyle = { - backgroundImage: s.getStyle(this.element, 'background-image') - }; - s.setStyle(this.element, { - backgroundImage: 'none' - }); - - if (!this.options.endcolor) { - this.options.endcolor = - MochiKit.Color.Color.fromBackground(this.element).toHexString(); - } - if (b.isUndefinedOrNull(this.options.restorecolor)) { - this.options.restorecolor = s.getStyle(this.element, - 'background-color'); - } - // init color calculations - this._base = b.map(b.bind(function (i) { - return parseInt( - this.options.startcolor.slice(i*2 + 1, i*2 + 3), 16); - }, this), [0, 1, 2]); - this._delta = b.map(b.bind(function (i) { - return parseInt(this.options.endcolor.slice(i*2 + 1, i*2 + 3), 16) - - this._base[i]; - }, this), [0, 1, 2]); - }, - - /** @id MochiKit.Visual.Highlight.prototype.update */ - update: function (position) { - var m = '#'; - MochiKit.Base.map(MochiKit.Base.bind(function (i) { - m += MochiKit.Color.toColorPart(Math.round(this._base[i] + - this._delta[i]*position)); - }, this), [0, 1, 2]); - MochiKit.Style.setStyle(this.element, { - backgroundColor: m - }); - }, - - /** @id MochiKit.Visual.Highlight.prototype.finish */ - finish: function () { - MochiKit.Style.setStyle(this.element, - MochiKit.Base.update(this.oldStyle, { - backgroundColor: this.options.restorecolor - })); - } -}); - -/** @id MochiKit.Visual.ScrollTo */ -MochiKit.Visual.ScrollTo = function (element, options) { - this.__init__(element, options); -}; - -MochiKit.Visual.ScrollTo.prototype = new MochiKit.Visual.Base(); - -MochiKit.Base.update(MochiKit.Visual.ScrollTo.prototype, { - /*** - - Scroll to an element in the page. - - ***/ - __init__: function (element, /* optional */options) { - this.element = MochiKit.DOM.getElement(element); - this.start(options || {}); - }, - - /** @id MochiKit.Visual.ScrollTo.prototype.setup */ - setup: function () { - var p = MochiKit.Position; - p.prepare(); - var offsets = p.cumulativeOffset(this.element); - if (this.options.offset) { - offsets.y += this.options.offset; - } - var max; - if (window.innerHeight) { - max = window.innerHeight - window.height; - } else if (document.documentElement && - document.documentElement.clientHeight) { - max = document.documentElement.clientHeight - - document.body.scrollHeight; - } else if (document.body) { - max = document.body.clientHeight - document.body.scrollHeight; - } - this.scrollStart = p.windowOffset.y; - this.delta = (offsets.y > max ? max : offsets.y) - this.scrollStart; - }, - - /** @id MochiKit.Visual.ScrollTo.prototype.update */ - update: function (position) { - var p = MochiKit.Position; - p.prepare(); - window.scrollTo(p.windowOffset.x, this.scrollStart + (position * this.delta)); - } -}); - -/*** - -Combination effects. - -***/ - -/** @id MochiKit.Visual.fade */ -MochiKit.Visual.fade = function (element, /* optional */ options) { - /*** - - Fade a given element: change its opacity and hide it in the end. - - @param options: 'to' and 'from' to change opacity. - - ***/ - var s = MochiKit.Style; - var oldOpacity = MochiKit.DOM.getElement(element).style.opacity || ''; - options = MochiKit.Base.update({ - from: s.getOpacity(element) || 1.0, - to: 0.0, - afterFinishInternal: function (effect) { - if (effect.options.to !== 0) { - return; - } - s.hideElement(effect.element); - s.setStyle(effect.element, {opacity: oldOpacity}); - } - }, options || {}); - return new MochiKit.Visual.Opacity(element, options); -}; - -/** @id MochiKit.Visual.appear */ -MochiKit.Visual.appear = function (element, /* optional */ options) { - /*** - - Make an element appear. - - @param options: 'to' and 'from' to change opacity. - - ***/ - var s = MochiKit.Style; - var v = MochiKit.Visual; - options = MochiKit.Base.update({ - from: (s.getStyle(element, 'display') == 'none' ? 0.0 : - s.getOpacity(element) || 0.0), - to: 1.0, - // force Safari to render floated elements properly - afterFinishInternal: function (effect) { - v.forceRerendering(effect.element); - }, - beforeSetupInternal: function (effect) { - s.setOpacity(effect.element, effect.options.from); - s.showElement(effect.element); - } - }, options || {}); - return new v.Opacity(element, options); -}; - -/** @id MochiKit.Visual.puff */ -MochiKit.Visual.puff = function (element, /* optional */ options) { - /*** - - 'Puff' an element: grow it to double size, fading it and make it hidden. - - ***/ - var s = MochiKit.Style; - var v = MochiKit.Visual; - element = MochiKit.DOM.getElement(element); - var oldStyle = { - opacity: element.style.opacity || '', - position: s.getStyle(element, 'position'), - top: element.style.top, - left: element.style.left, - width: element.style.width, - height: element.style.height - }; - options = MochiKit.Base.update({ - beforeSetupInternal: function (effect) { - MochiKit.Position.absolutize(effect.effects[0].element) - }, - afterFinishInternal: function (effect) { - s.hideElement(effect.effects[0].element); - s.setStyle(effect.effects[0].element, oldStyle); - } - }, options || {}); - return new v.Parallel( - [new v.Scale(element, 200, - {sync: true, scaleFromCenter: true, - scaleContent: true, restoreAfterFinish: true}), - new v.Opacity(element, {sync: true, to: 0.0 })], - options); -}; - -/** @id MochiKit.Visual.blindUp */ -MochiKit.Visual.blindUp = function (element, /* optional */ options) { - /*** - - Blind an element up: change its vertical size to 0. - - ***/ - var d = MochiKit.DOM; - element = d.getElement(element); - var elemClip = d.makeClipping(element); - options = MochiKit.Base.update({ - scaleContent: false, - scaleX: false, - restoreAfterFinish: true, - afterFinishInternal: function (effect) { - MochiKit.Style.hideElement(effect.element); - d.undoClipping(effect.element, elemClip); - } - }, options || {}); - - return new MochiKit.Visual.Scale(element, 0, options); -}; - -/** @id MochiKit.Visual.blindDown */ -MochiKit.Visual.blindDown = function (element, /* optional */ options) { - /*** - - Blind an element down: restore its vertical size. - - ***/ - var d = MochiKit.DOM; - var s = MochiKit.Style; - element = d.getElement(element); - var elementDimensions = s.getElementDimensions(element); - var elemClip; - options = MochiKit.Base.update({ - scaleContent: false, - scaleX: false, - scaleFrom: 0, - scaleMode: {originalHeight: elementDimensions.h, - originalWidth: elementDimensions.w}, - restoreAfterFinish: true, - afterSetupInternal: function (effect) { - elemClip = d.makeClipping(effect.element); - s.setStyle(effect.element, {height: '0px'}); - s.showElement(effect.element); - }, - afterFinishInternal: function (effect) { - d.undoClipping(effect.element, elemClip); - } - }, options || {}); - return new MochiKit.Visual.Scale(element, 100, options); -}; - -/** @id MochiKit.Visual.switchOff */ -MochiKit.Visual.switchOff = function (element, /* optional */ options) { - /*** - - Apply a switch-off-like effect. - - ***/ - var d = MochiKit.DOM; - element = d.getElement(element); - var oldOpacity = element.style.opacity || ''; - var elemClip; - var options = MochiKit.Base.update({ - duration: 0.3, - scaleFromCenter: true, - scaleX: false, - scaleContent: false, - restoreAfterFinish: true, - beforeSetupInternal: function (effect) { - d.makePositioned(effect.element); - elemClip = d.makeClipping(effect.element); - }, - afterFinishInternal: function (effect) { - MochiKit.Style.hideElement(effect.element); - d.undoClipping(effect.element, elemClip); - d.undoPositioned(effect.element); - MochiKit.Style.setStyle(effect.element, {opacity: oldOpacity}); - } - }, options || {}); - var v = MochiKit.Visual; - return new v.appear(element, { - duration: 0.4, - from: 0, - transition: v.Transitions.flicker, - afterFinishInternal: function (effect) { - new v.Scale(effect.element, 1, options) - } - }); -}; - -/** @id MochiKit.Visual.dropOut */ -MochiKit.Visual.dropOut = function (element, /* optional */ options) { - /*** - - Make an element fall and disappear. - - ***/ - var d = MochiKit.DOM; - var s = MochiKit.Style; - element = d.getElement(element); - var oldStyle = { - top: s.getStyle(element, 'top'), - left: s.getStyle(element, 'left'), - opacity: element.style.opacity || '' - }; - - options = MochiKit.Base.update({ - duration: 0.5, - beforeSetupInternal: function (effect) { - d.makePositioned(effect.effects[0].element); - }, - afterFinishInternal: function (effect) { - s.hideElement(effect.effects[0].element); - d.undoPositioned(effect.effects[0].element); - s.setStyle(effect.effects[0].element, oldStyle); - } - }, options || {}); - var v = MochiKit.Visual; - return new v.Parallel( - [new v.Move(element, {x: 0, y: 100, sync: true}), - new v.Opacity(element, {sync: true, to: 0.0})], - options); -}; - -/** @id MochiKit.Visual.shake */ -MochiKit.Visual.shake = function (element, /* optional */ options) { - /*** - - Move an element from left to right several times. - - ***/ - var d = MochiKit.DOM; - var v = MochiKit.Visual; - var s = MochiKit.Style; - element = d.getElement(element); - options = MochiKit.Base.update({ - x: -20, - y: 0, - duration: 0.05, - afterFinishInternal: function (effect) { - d.undoPositioned(effect.element); - s.setStyle(effect.element, oldStyle); - } - }, options || {}); - var oldStyle = { - top: s.getStyle(element, 'top'), - left: s.getStyle(element, 'left') }; - return new v.Move(element, - {x: 20, y: 0, duration: 0.05, afterFinishInternal: function (effect) { - new v.Move(effect.element, - {x: -40, y: 0, duration: 0.1, afterFinishInternal: function (effect) { - new v.Move(effect.element, - {x: 40, y: 0, duration: 0.1, afterFinishInternal: function (effect) { - new v.Move(effect.element, - {x: -40, y: 0, duration: 0.1, afterFinishInternal: function (effect) { - new v.Move(effect.element, - {x: 40, y: 0, duration: 0.1, afterFinishInternal: function (effect) { - new v.Move(effect.element, options - ) }}) }}) }}) }}) }}); -}; - -/** @id MochiKit.Visual.slideDown */ -MochiKit.Visual.slideDown = function (element, /* optional */ options) { - /*** - - Slide an element down. - It needs to have the content of the element wrapped in a container - element with fixed height. - - ***/ - var d = MochiKit.DOM; - var b = MochiKit.Base; - var s = MochiKit.Style; - element = d.getElement(element); - if (!element.firstChild) { - throw "MochiKit.Visual.slideDown must be used on a element with a child"; - } - d.removeEmptyTextNodes(element); - var oldInnerBottom = s.getStyle(element.firstChild, 'bottom') || 0; - var elementDimensions = s.getElementDimensions(element); - var elemClip; - options = b.update({ - scaleContent: false, - scaleX: false, - scaleFrom: 0, - scaleMode: {originalHeight: elementDimensions.h, - originalWidth: elementDimensions.w}, - restoreAfterFinish: true, - afterSetupInternal: function (effect) { - d.makePositioned(effect.element); - d.makePositioned(effect.element.firstChild); - if (/Opera/.test(navigator.userAgent)) { - s.setStyle(effect.element, {top: ''}); - } - elemClip = d.makeClipping(effect.element); - s.setStyle(effect.element, {height: '0px'}); - s.showElement(effect.element); - }, - afterUpdateInternal: function (effect) { - s.setStyle(effect.element.firstChild, - {bottom: (effect.dims[0] - effect.element.clientHeight) + 'px'}) - }, - afterFinishInternal: function (effect) { - d.undoClipping(effect.element, elemClip); - // IE will crash if child is undoPositioned first - if (/MSIE/.test(navigator.userAgent)) { - d.undoPositioned(effect.element); - d.undoPositioned(effect.element.firstChild); - } else { - d.undoPositioned(effect.element.firstChild); - d.undoPositioned(effect.element); - } - s.setStyle(effect.element.firstChild, - {bottom: oldInnerBottom}); - } - }, options || {}); - - return new MochiKit.Visual.Scale(element, 100, options); -}; - -/** @id MochiKit.Visual.slideUp */ -MochiKit.Visual.slideUp = function (element, /* optional */ options) { - /*** - - Slide an element up. - It needs to have the content of the element wrapped in a container - element with fixed height. - - ***/ - var d = MochiKit.DOM; - var b = MochiKit.Base; - var s = MochiKit.Style; - element = d.getElement(element); - if (!element.firstChild) { - throw "MochiKit.Visual.slideUp must be used on a element with a child"; - } - d.removeEmptyTextNodes(element); - var oldInnerBottom = s.getStyle(element.firstChild, 'bottom'); - var elemClip; - options = b.update({ - scaleContent: false, - scaleX: false, - scaleMode: 'box', - scaleFrom: 100, - restoreAfterFinish: true, - beforeStartInternal: function (effect) { - d.makePositioned(effect.element); - d.makePositioned(effect.element.firstChild); - if (/Opera/.test(navigator.userAgent)) { - s.setStyle(effect.element, {top: ''}); - } - elemClip = d.makeClipping(effect.element); - s.showElement(effect.element); - }, - afterUpdateInternal: function (effect) { - s.setStyle(effect.element.firstChild, - {bottom: (effect.dims[0] - effect.element.clientHeight) + 'px'}); - }, - afterFinishInternal: function (effect) { - s.hideElement(effect.element); - d.undoClipping(effect.element, elemClip); - d.undoPositioned(effect.element.firstChild); - d.undoPositioned(effect.element); - s.setStyle(effect.element.firstChild, {bottom: oldInnerBottom}); - } - }, options || {}); - return new MochiKit.Visual.Scale(element, 0, options); -}; - -// Bug in opera makes the TD containing this element expand for a instance -// after finish -/** @id MochiKit.Visual.squish */ -MochiKit.Visual.squish = function (element, /* optional */ options) { - /*** - - Reduce an element and make it disappear. - - ***/ - var d = MochiKit.DOM; - var b = MochiKit.Base; - var elemClip; - options = b.update({ - restoreAfterFinish: true, - beforeSetupInternal: function (effect) { - elemClip = d.makeClipping(effect.element); - }, - afterFinishInternal: function (effect) { - MochiKit.Style.hideElement(effect.element); - d.undoClipping(effect.element, elemClip); - } - }, options || {}); - - return new MochiKit.Visual.Scale(element, /Opera/.test(navigator.userAgent) ? 1 : 0, options); -}; - -/** @id MochiKit.Visual.grow */ -MochiKit.Visual.grow = function (element, /* optional */ options) { - /*** - - Grow an element to its original size. Make it zero-sized before - if necessary. - - ***/ - var d = MochiKit.DOM; - var v = MochiKit.Visual; - var s = MochiKit.Style; - element = d.getElement(element); - options = MochiKit.Base.update({ - direction: 'center', - moveTransition: v.Transitions.sinoidal, - scaleTransition: v.Transitions.sinoidal, - opacityTransition: v.Transitions.full - }, options || {}); - var oldStyle = { - top: element.style.top, - left: element.style.left, - height: element.style.height, - width: element.style.width, - opacity: element.style.opacity || '' - }; - - var dims = s.getElementDimensions(element); - var initialMoveX, initialMoveY; - var moveX, moveY; - - switch (options.direction) { - case 'top-left': - initialMoveX = initialMoveY = moveX = moveY = 0; - break; - case 'top-right': - initialMoveX = dims.w; - initialMoveY = moveY = 0; - moveX = -dims.w; - break; - case 'bottom-left': - initialMoveX = moveX = 0; - initialMoveY = dims.h; - moveY = -dims.h; - break; - case 'bottom-right': - initialMoveX = dims.w; - initialMoveY = dims.h; - moveX = -dims.w; - moveY = -dims.h; - break; - case 'center': - initialMoveX = dims.w / 2; - initialMoveY = dims.h / 2; - moveX = -dims.w / 2; - moveY = -dims.h / 2; - break; - } - - var optionsParallel = MochiKit.Base.update({ - beforeSetupInternal: function (effect) { - s.setStyle(effect.effects[0].element, {height: '0px'}); - s.showElement(effect.effects[0].element); - }, - afterFinishInternal: function (effect) { - d.undoClipping(effect.effects[0].element); - d.undoPositioned(effect.effects[0].element); - s.setStyle(effect.effects[0].element, oldStyle); - } - }, options || {}); - - return new v.Move(element, { - x: initialMoveX, - y: initialMoveY, - duration: 0.01, - beforeSetupInternal: function (effect) { - s.hideElement(effect.element); - d.makeClipping(effect.element); - d.makePositioned(effect.element); - }, - afterFinishInternal: function (effect) { - new v.Parallel( - [new v.Opacity(effect.element, { - sync: true, to: 1.0, from: 0.0, - transition: options.opacityTransition - }), - new v.Move(effect.element, { - x: moveX, y: moveY, sync: true, - transition: options.moveTransition - }), - new v.Scale(effect.element, 100, { - scaleMode: {originalHeight: dims.h, - originalWidth: dims.w}, - sync: true, - scaleFrom: /Opera/.test(navigator.userAgent) ? 1 : 0, - transition: options.scaleTransition, - restoreAfterFinish: true - }) - ], optionsParallel - ); - } - }); -}; - -/** @id MochiKit.Visual.shrink */ -MochiKit.Visual.shrink = function (element, /* optional */ options) { - /*** - - Shrink an element and make it disappear. - - ***/ - var d = MochiKit.DOM; - var v = MochiKit.Visual; - var s = MochiKit.Style; - element = d.getElement(element); - options = MochiKit.Base.update({ - direction: 'center', - moveTransition: v.Transitions.sinoidal, - scaleTransition: v.Transitions.sinoidal, - opacityTransition: v.Transitions.none - }, options || {}); - var oldStyle = { - top: element.style.top, - left: element.style.left, - height: element.style.height, - width: element.style.width, - opacity: element.style.opacity || '' - }; - - var dims = s.getElementDimensions(element); - var moveX, moveY; - - switch (options.direction) { - case 'top-left': - moveX = moveY = 0; - break; - case 'top-right': - moveX = dims.w; - moveY = 0; - break; - case 'bottom-left': - moveX = 0; - moveY = dims.h; - break; - case 'bottom-right': - moveX = dims.w; - moveY = dims.h; - break; - case 'center': - moveX = dims.w / 2; - moveY = dims.h / 2; - break; - } - var elemClip; - - var optionsParallel = MochiKit.Base.update({ - beforeStartInternal: function (effect) { - elemClip = d.makePositioned(effect.effects[0].element); - d.makeClipping(effect.effects[0].element); - }, - afterFinishInternal: function (effect) { - s.hideElement(effect.effects[0].element); - d.undoClipping(effect.effects[0].element, elemClip); - d.undoPositioned(effect.effects[0].element); - s.setStyle(effect.effects[0].element, oldStyle); - } - }, options || {}); - - return new v.Parallel( - [new v.Opacity(element, { - sync: true, to: 0.0, from: 1.0, - transition: options.opacityTransition - }), - new v.Scale(element, /Opera/.test(navigator.userAgent) ? 1 : 0, { - sync: true, transition: options.scaleTransition, - restoreAfterFinish: true - }), - new v.Move(element, { - x: moveX, y: moveY, sync: true, transition: options.moveTransition - }) - ], optionsParallel - ); -}; - -/** @id MochiKit.Visual.pulsate */ -MochiKit.Visual.pulsate = function (element, /* optional */ options) { - /*** - - Pulse an element between appear/fade. - - ***/ - var d = MochiKit.DOM; - var v = MochiKit.Visual; - var b = MochiKit.Base; - var oldOpacity = d.getElement(element).style.opacity || ''; - options = b.update({ - duration: 3.0, - from: 0, - afterFinishInternal: function (effect) { - MochiKit.Style.setStyle(effect.element, {opacity: oldOpacity}); - } - }, options || {}); - var transition = options.transition || v.Transitions.sinoidal; - var reverser = b.bind(function (pos) { - return transition(1 - v.Transitions.pulse(pos)); - }, transition); - b.bind(reverser, transition); - return new v.Opacity(element, b.update({ - transition: reverser}, options)); -}; - -/** @id MochiKit.Visual.fold */ -MochiKit.Visual.fold = function (element, /* optional */ options) { - /*** - - Fold an element, first vertically, then horizontally. - - ***/ - var d = MochiKit.DOM; - var v = MochiKit.Visual; - var s = MochiKit.Style; - element = d.getElement(element); - var oldStyle = { - top: element.style.top, - left: element.style.left, - width: element.style.width, - height: element.style.height - }; - var elemClip = d.makeClipping(element); - options = MochiKit.Base.update({ - scaleContent: false, - scaleX: false, - afterFinishInternal: function (effect) { - new v.Scale(element, 1, { - scaleContent: false, - scaleY: false, - afterFinishInternal: function (effect) { - s.hideElement(effect.element); - d.undoClipping(effect.element, elemClip); - s.setStyle(effect.element, oldStyle); - } - }); - } - }, options || {}); - return new v.Scale(element, 5, options); -}; - - -// Compatibility with MochiKit 1.0 -MochiKit.Visual.Color = MochiKit.Color.Color; -MochiKit.Visual.getElementsComputedStyle = MochiKit.DOM.computedStyle; - -/* end of Rico adaptation */ - -MochiKit.Visual.__new__ = function () { - var m = MochiKit.Base; - - m.nameFunctions(this); - - this.EXPORT_TAGS = { - ":common": this.EXPORT, - ":all": m.concat(this.EXPORT, this.EXPORT_OK) - }; - -}; - -MochiKit.Visual.EXPORT = [ - "roundElement", - "roundClass", - "tagifyText", - "multiple", - "toggle", - "Base", - "Parallel", - "Opacity", - "Move", - "Scale", - "Highlight", - "ScrollTo", - "fade", - "appear", - "puff", - "blindUp", - "blindDown", - "switchOff", - "dropOut", - "shake", - "slideDown", - "slideUp", - "squish", - "grow", - "shrink", - "pulsate", - "fold" -]; - -MochiKit.Visual.EXPORT_OK = [ - "PAIRS" -]; - -MochiKit.Visual.__new__(); - -MochiKit.Base._exportSymbols(this, MochiKit.Visual); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/__package__.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/__package__.js deleted file mode 100755 index 4c58c3947..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/__package__.js +++ /dev/null @@ -1,19 +0,0 @@ -dojo.hostenv.conditionalLoadModule({ - "common": [ - "MochiKit.Base", - "MochiKit.Iter", - "MochiKit.Logging", - "MochiKit.DateTime", - "MochiKit.Format", - "MochiKit.Async", - "MochiKit.Color" - ], - "browser": [ - "MochiKit.DOM", - "MochiKit.Style", - "MochiKit.Signal", - "MochiKit.LoggingPane", - "MochiKit.Visual" - ] -}); -dojo.hostenv.moduleLoaded("MochiKit.*"); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/packed.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/packed.js deleted file mode 100755 index 0903b7f75..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/MochiKit/packed.js +++ /dev/null @@ -1,6112 +0,0 @@ -/*** - - MochiKit.MochiKit 1.4 : PACKED VERSION - - THIS FILE IS AUTOMATICALLY GENERATED. If creating patches, please - diff against the source tree, not this file. - - See for documentation, downloads, license, etc. - - (c) 2005 Bob Ippolito. All rights Reserved. - -***/ - -if(typeof (dojo)!="undefined"){ -dojo.provide("MochiKit.Base"); -} -if(typeof (MochiKit)=="undefined"){ -MochiKit={}; -} -if(typeof (MochiKit.Base)=="undefined"){ -MochiKit.Base={}; -} -if(typeof (MochiKit.__export__)=="undefined"){ -MochiKit.__export__=(MochiKit.__compat__||(typeof (JSAN)=="undefined"&&typeof (dojo)=="undefined")); -} -MochiKit.Base.VERSION="1.4"; -MochiKit.Base.NAME="MochiKit.Base"; -MochiKit.Base.update=function(_1,_2){ -if(_1===null){ -_1={}; -} -for(var i=1;i=0;i--){ -_15.unshift(o[i]); -} -}else{ -res.push(o); -} -} -return res; -},extend:function(_18,obj,_1a){ -if(!_1a){ -_1a=0; -} -if(obj){ -var l=obj.length; -if(typeof (l)!="number"){ -if(typeof (MochiKit.Iter)!="undefined"){ -obj=MochiKit.Iter.list(obj); -l=obj.length; -}else{ -throw new TypeError("Argument not an array-like and MochiKit.Iter not present"); -} -} -if(!_18){ -_18=[]; -} -for(var i=_1a;i>b; -},zrshift:function(a,b){ -return a>>>b; -},eq:function(a,b){ -return a==b; -},ne:function(a,b){ -return a!=b; -},gt:function(a,b){ -return a>b; -},ge:function(a,b){ -return a>=b; -},lt:function(a,b){ -return al){ -_90=l; -} -} -_8e=[]; -for(i=0;i<_90;i++){ -var _92=[]; -for(var j=1;j=0;i--){ -_af=[_ab[i].apply(this,_af)]; -} -return _af[0]; -}; -},bind:function(_b1,_b2){ -if(typeof (_b1)=="string"){ -_b1=_b2[_b1]; -} -var _b3=_b1.im_func; -var _b4=_b1.im_preargs; -var _b5=_b1.im_self; -var m=MochiKit.Base; -if(typeof (_b1)=="function"&&typeof (_b1.apply)=="undefined"){ -_b1=m._wrapDumbFunction(_b1); -} -if(typeof (_b3)!="function"){ -_b3=_b1; -} -if(typeof (_b2)!="undefined"){ -_b5=_b2; -} -if(typeof (_b4)=="undefined"){ -_b4=[]; -}else{ -_b4=_b4.slice(); -} -m.extend(_b4,arguments,2); -var _b7=function(){ -var _b8=arguments; -var me=arguments.callee; -if(me.im_preargs.length>0){ -_b8=m.concat(me.im_preargs,_b8); -} -var _ba=me.im_self; -if(!_ba){ -_ba=this; -} -return me.im_func.apply(_ba,_b8); -}; -_b7.im_self=_b5; -_b7.im_func=_b3; -_b7.im_preargs=_b4; -return _b7; -},bindMethods:function(_bb){ -var _bc=MochiKit.Base.bind; -for(var k in _bb){ -var _be=_bb[k]; -if(typeof (_be)=="function"){ -_bb[k]=_bc(_be,_bb); -} -} -},registerComparator:function(_bf,_c0,_c1,_c2){ -MochiKit.Base.comparatorRegistry.register(_bf,_c0,_c1,_c2); -},_primitives:{"boolean":true,"string":true,"number":true},compare:function(a,b){ -if(a==b){ -return 0; -} -var _c5=(typeof (a)=="undefined"||a===null); -var _c6=(typeof (b)=="undefined"||b===null); -if(_c5&&_c6){ -return 0; -}else{ -if(_c5){ -return -1; -}else{ -if(_c6){ -return 1; -} -} -} -var m=MochiKit.Base; -var _c8=m._primitives; -if(!(typeof (a) in _c8&&typeof (b) in _c8)){ -try{ -return m.comparatorRegistry.match(a,b); -} -catch(e){ -if(e!=m.NotFound){ -throw e; -} -} -} -if(ab){ -return 1; -} -} -var _c9=m.repr; -throw new TypeError(_c9(a)+" and "+_c9(b)+" can not be compared"); -},compareDateLike:function(a,b){ -return MochiKit.Base.compare(a.getTime(),b.getTime()); -},compareArrayLike:function(a,b){ -var _ce=MochiKit.Base.compare; -var _cf=a.length; -var _d0=0; -if(_cf>b.length){ -_d0=1; -_cf=b.length; -}else{ -if(_cf=0;i--){ -sum+=o[i]; -} -}else{ -sum+=o; -} -} -if(_113<=0){ -throw new TypeError("mean() requires at least one argument"); -} -return sum/_113; -},median:function(){ -var data=MochiKit.Base.flattenArguments(arguments); -if(data.length===0){ -throw new TypeError("median() requires at least one argument"); -} -data.sort(compare); -if(data.length%2==0){ -var _117=data.length/2; -return (data[_117]+data[_117-1])/2; -}else{ -return data[(data.length-1)/2]; -} -},findValue:function(lst,_119,_11a,end){ -if(typeof (end)=="undefined"||end===null){ -end=lst.length; -} -if(typeof (_11a)=="undefined"||_11a===null){ -_11a=0; -} -var cmp=MochiKit.Base.compare; -for(var i=_11a;i0))){ -var kv=MochiKit.DOM.formContents(_127); -_127=kv[0]; -_128=kv[1]; -}else{ -if(arguments.length==1){ -var o=_127; -_127=[]; -_128=[]; -for(var k in o){ -var v=o[k]; -if(typeof (v)=="function"){ -continue; -}else{ -if(typeof (v)!="string"&&typeof (v.length)=="number"){ -for(var i=0;i=stop){ -throw self.StopIteration; -} -_174+=step; -return rval; -}}; -},imap:function(fun,p,q){ -var m=MochiKit.Base; -var self=MochiKit.Iter; -var _17e=m.map(self.iter,m.extend(null,arguments,1)); -var map=m.map; -var next=self.next; -return {repr:function(){ -return "imap(...)"; -},toString:m.forwardCall("repr"),next:function(){ -return fun.apply(this,map(next,_17e)); -}}; -},applymap:function(fun,seq,self){ -seq=MochiKit.Iter.iter(seq); -var m=MochiKit.Base; -return {repr:function(){ -return "applymap(...)"; -},toString:m.forwardCall("repr"),next:function(){ -return fun.apply(self,seq.next()); -}}; -},chain:function(p,q){ -var self=MochiKit.Iter; -var m=MochiKit.Base; -if(arguments.length==1){ -return self.iter(arguments[0]); -} -var _189=m.map(self.iter,arguments); -return {repr:function(){ -return "chain(...)"; -},toString:m.forwardCall("repr"),next:function(){ -while(_189.length>1){ -try{ -return _189[0].next(); -} -catch(e){ -if(e!=self.StopIteration){ -throw e; -} -_189.shift(); -} -} -if(_189.length==1){ -var arg=_189.shift(); -this.next=m.bind("next",arg); -return this.next(); -} -throw self.StopIteration; -}}; -},takewhile:function(pred,seq){ -var self=MochiKit.Iter; -seq=self.iter(seq); -return {repr:function(){ -return "takewhile(...)"; -},toString:MochiKit.Base.forwardCall("repr"),next:function(){ -var rval=seq.next(); -if(!pred(rval)){ -this.next=function(){ -throw self.StopIteration; -}; -this.next(); -} -return rval; -}}; -},dropwhile:function(pred,seq){ -seq=MochiKit.Iter.iter(seq); -var m=MochiKit.Base; -var bind=m.bind; -return {"repr":function(){ -return "dropwhile(...)"; -},"toString":m.forwardCall("repr"),"next":function(){ -while(true){ -var rval=seq.next(); -if(!pred(rval)){ -break; -} -} -this.next=bind("next",seq); -return rval; -}}; -},_tee:function(_194,sync,_196){ -sync.pos[_194]=-1; -var m=MochiKit.Base; -var _198=m.listMin; -return {repr:function(){ -return "tee("+_194+", ...)"; -},toString:m.forwardCall("repr"),next:function(){ -var rval; -var i=sync.pos[_194]; -if(i==sync.max){ -rval=_196.next(); -sync.deque.push(rval); -sync.max+=1; -sync.pos[_194]+=1; -}else{ -rval=sync.deque[i-sync.min]; -sync.pos[_194]+=1; -if(i==sync.min&&_198(sync.pos)!=sync.min){ -sync.min+=1; -sync.deque.shift(); -} -} -return rval; -}}; -},tee:function(_19b,n){ -var rval=[]; -var sync={"pos":[],"deque":[],"max":-1,"min":-1}; -if(arguments.length==1||typeof (n)=="undefined"||n===null){ -n=2; -} -var self=MochiKit.Iter; -_19b=self.iter(_19b); -var _tee=self._tee; -for(var i=0;i0&&_1ac>=stop)||(step<0&&_1ac<=stop)){ -throw MochiKit.Iter.StopIteration; -} -var rval=_1ac; -_1ac+=step; -return rval; -},repr:function(){ -return "range("+[_1ac,stop,step].join(", ")+")"; -},toString:MochiKit.Base.forwardCall("repr")}; -},sum:function(_1b0,_1b1){ -if(typeof (_1b1)=="undefined"||_1b1===null){ -_1b1=0; -} -var x=_1b1; -var self=MochiKit.Iter; -_1b0=self.iter(_1b0); -try{ -while(true){ -x+=_1b0.next(); -} -} -catch(e){ -if(e!=self.StopIteration){ -throw e; -} -} -return x; -},exhaust:function(_1b4){ -var self=MochiKit.Iter; -_1b4=self.iter(_1b4); -try{ -while(true){ -_1b4.next(); -} -} -catch(e){ -if(e!=self.StopIteration){ -throw e; -} -} -},forEach:function(_1b6,func,self){ -var m=MochiKit.Base; -if(arguments.length>2){ -func=m.bind(func,self); -} -if(m.isArrayLike(_1b6)){ -try{ -for(var i=0;i<_1b6.length;i++){ -func(_1b6[i]); -} -} -catch(e){ -if(e!=MochiKit.Iter.StopIteration){ -throw e; -} -} -}else{ -self=MochiKit.Iter; -self.exhaust(self.imap(func,_1b6)); -} -},every:function(_1bb,func){ -var self=MochiKit.Iter; -try{ -self.ifilterfalse(func,_1bb).next(); -return false; -} -catch(e){ -if(e!=self.StopIteration){ -throw e; -} -return true; -} -},sorted:function(_1be,cmp){ -var rval=MochiKit.Iter.list(_1be); -if(arguments.length==1){ -cmp=MochiKit.Base.compare; -} -rval.sort(cmp); -return rval; -},reversed:function(_1c1){ -var rval=MochiKit.Iter.list(_1c1); -rval.reverse(); -return rval; -},some:function(_1c3,func){ -var self=MochiKit.Iter; -try{ -self.ifilter(func,_1c3).next(); -return true; -} -catch(e){ -if(e!=self.StopIteration){ -throw e; -} -return false; -} -},iextend:function(lst,_1c7){ -if(MochiKit.Base.isArrayLike(_1c7)){ -for(var i=0;i<_1c7.length;i++){ -lst.push(_1c7[i]); -} -}else{ -var self=MochiKit.Iter; -_1c7=self.iter(_1c7); -try{ -while(true){ -lst.push(_1c7.next()); -} -} -catch(e){ -if(e!=self.StopIteration){ -throw e; -} -} -} -return lst; -},groupby:function(_1ca,_1cb){ -var m=MochiKit.Base; -var self=MochiKit.Iter; -if(arguments.length<2){ -_1cb=m.operator.identity; -} -_1ca=self.iter(_1ca); -var pk=undefined; -var k=undefined; -var v; -function fetch(){ -v=_1ca.next(); -k=_1cb(v); -} -function eat(){ -var ret=v; -v=undefined; -return ret; -} -var _1d2=true; -var _1d3=m.compare; -return {repr:function(){ -return "groupby(...)"; -},next:function(){ -while(_1d3(k,pk)===0){ -fetch(); -if(_1d2){ -_1d2=false; -break; -} -} -pk=k; -return [k,{next:function(){ -if(v==undefined){ -fetch(); -} -if(_1d3(k,pk)!==0){ -throw self.StopIteration; -} -return eat(); -}}]; -}}; -},groupby_as_array:function(_1d4,_1d5){ -var m=MochiKit.Base; -var self=MochiKit.Iter; -if(arguments.length<2){ -_1d5=m.operator.identity; -} -_1d4=self.iter(_1d4); -var _1d8=[]; -var _1d9=true; -var _1da; -var _1db=m.compare; -while(true){ -try{ -var _1dc=_1d4.next(); -var key=_1d5(_1dc); -} -catch(e){ -if(e==self.StopIteration){ -break; -} -throw e; -} -if(_1d9||_1db(key,_1da)!==0){ -var _1de=[]; -_1d8.push([key,_1de]); -} -_1de.push(_1dc); -_1d9=false; -_1da=key; -} -return _1d8; -},arrayLikeIter:function(_1df){ -var i=0; -return {repr:function(){ -return "arrayLikeIter(...)"; -},toString:MochiKit.Base.forwardCall("repr"),next:function(){ -if(i>=_1df.length){ -throw MochiKit.Iter.StopIteration; -} -return _1df[i++]; -}}; -},hasIterateNext:function(_1e1){ -return (_1e1&&typeof (_1e1.iterateNext)=="function"); -},iterateNextIter:function(_1e2){ -return {repr:function(){ -return "iterateNextIter(...)"; -},toString:MochiKit.Base.forwardCall("repr"),next:function(){ -var rval=_1e2.iterateNext(); -if(rval===null||rval===undefined){ -throw MochiKit.Iter.StopIteration; -} -return rval; -}}; -}}); -MochiKit.Iter.EXPORT_OK=["iteratorRegistry","arrayLikeIter","hasIterateNext","iterateNextIter",]; -MochiKit.Iter.EXPORT=["StopIteration","registerIteratorFactory","iter","count","cycle","repeat","next","izip","ifilter","ifilterfalse","islice","imap","applymap","chain","takewhile","dropwhile","tee","list","reduce","range","sum","exhaust","forEach","every","sorted","reversed","some","iextend","groupby","groupby_as_array"]; -MochiKit.Iter.__new__=function(){ -var m=MochiKit.Base; -if(typeof (StopIteration)!="undefined"){ -this.StopIteration=StopIteration; -}else{ -this.StopIteration=new m.NamedError("StopIteration"); -} -this.iteratorRegistry=new m.AdapterRegistry(); -this.registerIteratorFactory("arrayLike",m.isArrayLike,this.arrayLikeIter); -this.registerIteratorFactory("iterateNext",this.hasIterateNext,this.iterateNextIter); -this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)}; -m.nameFunctions(this); -}; -MochiKit.Iter.__new__(); -if(MochiKit.__export__){ -reduce=MochiKit.Iter.reduce; -} -MochiKit.Base._exportSymbols(this,MochiKit.Iter); -if(typeof (dojo)!="undefined"){ -dojo.provide("MochiKit.Logging"); -dojo.require("MochiKit.Base"); -} -if(typeof (JSAN)!="undefined"){ -JSAN.use("MochiKit.Base",[]); -} -try{ -if(typeof (MochiKit.Base)=="undefined"){ -throw ""; -} -} -catch(e){ -throw "MochiKit.Logging depends on MochiKit.Base!"; -} -if(typeof (MochiKit.Logging)=="undefined"){ -MochiKit.Logging={}; -} -MochiKit.Logging.NAME="MochiKit.Logging"; -MochiKit.Logging.VERSION="1.4"; -MochiKit.Logging.__repr__=function(){ -return "["+this.NAME+" "+this.VERSION+"]"; -}; -MochiKit.Logging.toString=function(){ -return this.__repr__(); -}; -MochiKit.Logging.EXPORT=["LogLevel","LogMessage","Logger","alertListener","logger","log","logError","logDebug","logFatal","logWarning"]; -MochiKit.Logging.EXPORT_OK=["logLevelAtLeast","isLogMessage","compareLogMessage"]; -MochiKit.Logging.LogMessage=function(num,_1e6,info){ -this.num=num; -this.level=_1e6; -this.info=info; -this.timestamp=new Date(); -}; -MochiKit.Logging.LogMessage.prototype={repr:function(){ -var m=MochiKit.Base; -return "LogMessage("+m.map(m.repr,[this.num,this.level,this.info]).join(", ")+")"; -},toString:MochiKit.Base.forwardCall("repr")}; -MochiKit.Base.update(MochiKit.Logging,{logLevelAtLeast:function(_1e9){ -var self=MochiKit.Logging; -if(typeof (_1e9)=="string"){ -_1e9=self.LogLevel[_1e9]; -} -return function(msg){ -var _1ec=msg.level; -if(typeof (_1ec)=="string"){ -_1ec=self.LogLevel[_1ec]; -} -return _1ec>=_1e9; -}; -},isLogMessage:function(){ -var _1ed=MochiKit.Logging.LogMessage; -for(var i=0;i=0&&this._messages.length>this.maxSize){ -this._messages.shift(); -} -},getMessages:function(_1ff){ -var _200=0; -if(!(typeof (_1ff)=="undefined"||_1ff===null)){ -_200=Math.max(0,this._messages.length-_1ff); -} -return this._messages.slice(_200); -},getMessageText:function(_201){ -if(typeof (_201)=="undefined"||_201===null){ -_201=30; -} -var _202=this.getMessages(_201); -if(_202.length){ -var lst=map(function(m){ -return "\n ["+m.num+"] "+m.level+": "+m.info.join(" "); -},_202); -lst.unshift("LAST "+_202.length+" MESSAGES:"); -return lst.join(""); -} -return ""; -},debuggingBookmarklet:function(_205){ -if(typeof (MochiKit.LoggingPane)=="undefined"){ -alert(this.getMessageText()); -}else{ -MochiKit.LoggingPane.createLoggingPane(_205||false); -} -}}; -MochiKit.Logging.__new__=function(){ -this.LogLevel={ERROR:40,FATAL:50,WARNING:30,INFO:20,DEBUG:10}; -var m=MochiKit.Base; -m.registerComparator("LogMessage",this.isLogMessage,this.compareLogMessage); -var _207=m.partial; -var _208=this.Logger; -var _209=_208.prototype.baseLog; -m.update(this.Logger.prototype,{debug:_207(_209,"DEBUG"),log:_207(_209,"INFO"),error:_207(_209,"ERROR"),fatal:_207(_209,"FATAL"),warning:_207(_209,"WARNING")}); -var self=this; -var _20b=function(name){ -return function(){ -self.logger[name].apply(self.logger,arguments); -}; -}; -this.log=_20b("log"); -this.logError=_20b("error"); -this.logDebug=_20b("debug"); -this.logFatal=_20b("fatal"); -this.logWarning=_20b("warning"); -this.logger=new _208(); -this.logger.useNativeConsole=true; -this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)}; -m.nameFunctions(this); -}; -if(typeof (printfire)=="undefined"&&typeof (document)!="undefined"&&document.createEvent&&typeof (dispatchEvent)!="undefined"){ -printfire=function(){ -printfire.args=arguments; -var ev=document.createEvent("Events"); -ev.initEvent("printfire",false,true); -dispatchEvent(ev); -}; -} -MochiKit.Logging.__new__(); -MochiKit.Base._exportSymbols(this,MochiKit.Logging); -if(typeof (dojo)!="undefined"){ -dojo.provide("MochiKit.DateTime"); -} -if(typeof (MochiKit)=="undefined"){ -MochiKit={}; -} -if(typeof (MochiKit.DateTime)=="undefined"){ -MochiKit.DateTime={}; -} -MochiKit.DateTime.NAME="MochiKit.DateTime"; -MochiKit.DateTime.VERSION="1.4"; -MochiKit.DateTime.__repr__=function(){ -return "["+this.NAME+" "+this.VERSION+"]"; -}; -MochiKit.DateTime.toString=function(){ -return this.__repr__(); -}; -MochiKit.DateTime.isoDate=function(str){ -str=str+""; -if(typeof (str)!="string"||str.length===0){ -return null; -} -var iso=str.split("-"); -if(iso.length===0){ -return null; -} -return new Date(iso[0],iso[1]-1,iso[2]); -}; -MochiKit.DateTime._isoRegexp=/(\d{4,})(?:-(\d{1,2})(?:-(\d{1,2})(?:[T ](\d{1,2}):(\d{1,2})(?::(\d{1,2})(?:\.(\d+))?)?(?:(Z)|([+-])(\d{1,2})(?::(\d{1,2}))?)?)?)?)?/; -MochiKit.DateTime.isoTimestamp=function(str){ -str=str+""; -if(typeof (str)!="string"||str.length===0){ -return null; -} -var res=str.match(MochiKit.DateTime._isoRegexp); -if(typeof (res)=="undefined"||res===null){ -return null; -} -var year,_213,day,hour,min,sec,msec; -year=parseInt(res[1],10); -if(typeof (res[2])=="undefined"||res[2]===""){ -return new Date(year); -} -_213=parseInt(res[2],10)-1; -day=parseInt(res[3],10); -if(typeof (res[4])=="undefined"||res[4]===""){ -return new Date(year,_213,day); -} -hour=parseInt(res[4],10); -min=parseInt(res[5],10); -sec=(typeof (res[6])!="undefined"&&res[6]!=="")?parseInt(res[6],10):0; -if(typeof (res[7])!="undefined"&&res[7]!==""){ -msec=Math.round(1000*parseFloat("0."+res[7])); -}else{ -msec=0; -} -if((typeof (res[8])=="undefined"||res[8]==="")&&(typeof (res[9])=="undefined"||res[9]==="")){ -return new Date(year,_213,day,hour,min,sec,msec); -} -var ofs; -if(typeof (res[9])!="undefined"&&res[9]!==""){ -ofs=parseInt(res[10],10)*3600000; -if(typeof (res[11])!="undefined"&&res[11]!==""){ -ofs+=parseInt(res[11],10)*60000; -} -if(res[9]=="-"){ -ofs=-ofs; -} -}else{ -ofs=0; -} -return new Date(Date.UTC(year,_213,day,hour,min,sec,msec)-ofs); -}; -MochiKit.DateTime.toISOTime=function(date,_21b){ -if(typeof (date)=="undefined"||date===null){ -return null; -} -var hh=date.getHours(); -var mm=date.getMinutes(); -var ss=date.getSeconds(); -var lst=[((_21b&&(hh<10))?"0"+hh:hh),((mm<10)?"0"+mm:mm),((ss<10)?"0"+ss:ss)]; -return lst.join(":"); -}; -MochiKit.DateTime.toISOTimestamp=function(date,_221){ -if(typeof (date)=="undefined"||date===null){ -return null; -} -var sep=_221?"T":" "; -var foot=_221?"Z":""; -if(_221){ -date=new Date(date.getTime()+(date.getTimezoneOffset()*60000)); -} -return MochiKit.DateTime.toISODate(date)+sep+MochiKit.DateTime.toISOTime(date,_221)+foot; -}; -MochiKit.DateTime.toISODate=function(date){ -if(typeof (date)=="undefined"||date===null){ -return null; -} -var _225=MochiKit.DateTime._padTwo; -return [date.getFullYear(),_225(date.getMonth()+1),_225(date.getDate())].join("-"); -}; -MochiKit.DateTime.americanDate=function(d){ -d=d+""; -if(typeof (d)!="string"||d.length===0){ -return null; -} -var a=d.split("/"); -return new Date(a[2],a[0]-1,a[1]); -}; -MochiKit.DateTime._padTwo=function(n){ -return (n>9)?n:"0"+n; -}; -MochiKit.DateTime.toPaddedAmericanDate=function(d){ -if(typeof (d)=="undefined"||d===null){ -return null; -} -var _22a=MochiKit.DateTime._padTwo; -return [_22a(d.getMonth()+1),_22a(d.getDate()),d.getFullYear()].join("/"); -}; -MochiKit.DateTime.toAmericanDate=function(d){ -if(typeof (d)=="undefined"||d===null){ -return null; -} -return [d.getMonth()+1,d.getDate(),d.getFullYear()].join("/"); -}; -MochiKit.DateTime.EXPORT=["isoDate","isoTimestamp","toISOTime","toISOTimestamp","toISODate","americanDate","toPaddedAmericanDate","toAmericanDate"]; -MochiKit.DateTime.EXPORT_OK=[]; -MochiKit.DateTime.EXPORT_TAGS={":common":MochiKit.DateTime.EXPORT,":all":MochiKit.DateTime.EXPORT}; -MochiKit.DateTime.__new__=function(){ -var base=this.NAME+"."; -for(var k in this){ -var o=this[k]; -if(typeof (o)=="function"&&typeof (o.NAME)=="undefined"){ -try{ -o.NAME=base+k; -} -catch(e){ -} -} -} -}; -MochiKit.DateTime.__new__(); -if(typeof (MochiKit.Base)!="undefined"){ -MochiKit.Base._exportSymbols(this,MochiKit.DateTime); -}else{ -(function(_22f,_230){ -if((typeof (JSAN)=="undefined"&&typeof (dojo)=="undefined")||(MochiKit.__export__===false)){ -var all=_230.EXPORT_TAGS[":all"]; -for(var i=0;i_23a){ -var i=_242.length-_23a; -res=fmt.separator+_242.substring(i,_242.length)+res; -_242=_242.substring(0,i); -} -} -res=_242+res; -if(_238>0){ -while(frac.length<_23b){ -frac=frac+"0"; -} -res=res+fmt.decimal+frac; -} -return _23d+res+_23e; -}; -}; -MochiKit.Format.numberFormatter=function(_246,_247,_248){ -if(typeof (_247)=="undefined"){ -_247=""; -} -var _249=_246.match(/((?:[0#]+,)?[0#]+)(?:\.([0#]+))?(%)?/); -if(!_249){ -throw TypeError("Invalid pattern"); -} -var _24a=_246.substr(0,_249.index); -var _24b=_246.substr(_249.index+_249[0].length); -if(_24a.search(/-/)==-1){ -_24a=_24a+"-"; -} -var _24c=_249[1]; -var frac=(typeof (_249[2])=="string"&&_249[2]!="")?_249[2]:""; -var _24e=(typeof (_249[3])=="string"&&_249[3]!=""); -var tmp=_24c.split(/,/); -var _250; -if(typeof (_248)=="undefined"){ -_248="default"; -} -if(tmp.length==1){ -_250=null; -}else{ -_250=tmp[1].length; -} -var _251=_24c.length-_24c.replace(/0/g,"").length; -var _252=frac.length-frac.replace(/0/g,"").length; -var _253=frac.length; -var rval=MochiKit.Format._numberFormatter(_247,_24a,_24b,_248,_24e,_253,_251,_250,_252); -var m=MochiKit.Base; -if(m){ -var fn=arguments.callee; -var args=m.concat(arguments); -rval.repr=function(){ -return [self.NAME,"(",map(m.repr,args).join(", "),")"].join(""); -}; -} -return rval; -}; -MochiKit.Format.formatLocale=function(_258){ -if(typeof (_258)=="undefined"||_258===null){ -_258="default"; -} -if(typeof (_258)=="string"){ -var rval=MochiKit.Format.LOCALE[_258]; -if(typeof (rval)=="string"){ -rval=arguments.callee(rval); -MochiKit.Format.LOCALE[_258]=rval; -} -return rval; -}else{ -return _258; -} -}; -MochiKit.Format.twoDigitAverage=function(_25a,_25b){ -if(_25b){ -var res=_25a/_25b; -if(!isNaN(res)){ -return MochiKit.Format.twoDigitFloat(_25a/_25b); -} -} -return "0"; -}; -MochiKit.Format.twoDigitFloat=function(_25d){ -var sign=(_25d<0?"-":""); -var s=Math.floor(Math.abs(_25d)*100).toString(); -if(s=="0"){ -return s; -} -if(s.length<3){ -while(s.charAt(s.length-1)=="0"){ -s=s.substring(0,s.length-1); -} -return sign+"0."+s; -} -var head=sign+s.substring(0,s.length-2); -var tail=s.substring(s.length-2,s.length); -if(tail=="00"){ -return head; -}else{ -if(tail.charAt(1)=="0"){ -return head+"."+tail.charAt(0); -}else{ -return head+"."+tail; -} -} -}; -MochiKit.Format.lstrip=function(str,_263){ -str=str+""; -if(typeof (str)!="string"){ -return null; -} -if(!_263){ -return str.replace(/^\s+/,""); -}else{ -return str.replace(new RegExp("^["+_263+"]+"),""); -} -}; -MochiKit.Format.rstrip=function(str,_265){ -str=str+""; -if(typeof (str)!="string"){ -return null; -} -if(!_265){ -return str.replace(/\s+$/,""); -}else{ -return str.replace(new RegExp("["+_265+"]+$"),""); -} -}; -MochiKit.Format.strip=function(str,_267){ -var self=MochiKit.Format; -return self.rstrip(self.lstrip(str,_267),_267); -}; -MochiKit.Format.truncToFixed=function(_269,_26a){ -_269=Math.floor(_269*Math.pow(10,_26a)); -var res=(_269*Math.pow(10,-_26a)).toFixed(_26a); -if(res.charAt(0)=="."){ -res="0"+res; -} -return res; -}; -MochiKit.Format.roundToFixed=function(_26c,_26d){ -return MochiKit.Format.truncToFixed(_26c+0.5*Math.pow(10,-_26d),_26d); -}; -MochiKit.Format.percentFormat=function(_26e){ -return MochiKit.Format.twoDigitFloat(100*_26e)+"%"; -}; -MochiKit.Format.EXPORT=["truncToFixed","roundToFixed","numberFormatter","formatLocale","twoDigitAverage","twoDigitFloat","percentFormat","lstrip","rstrip","strip"]; -MochiKit.Format.LOCALE={en_US:{separator:",",decimal:".",percent:"%"},de_DE:{separator:".",decimal:",",percent:"%"},fr_FR:{separator:" ",decimal:",",percent:"%"},"default":"en_US"}; -MochiKit.Format.EXPORT_OK=[]; -MochiKit.Format.EXPORT_TAGS={":all":MochiKit.Format.EXPORT,":common":MochiKit.Format.EXPORT}; -MochiKit.Format.__new__=function(){ -var base=this.NAME+"."; -var k,v,o; -for(k in this.LOCALE){ -o=this.LOCALE[k]; -if(typeof (o)=="object"){ -o.repr=function(){ -return this.NAME; -}; -o.NAME=base+"LOCALE."+k; -} -} -for(k in this){ -o=this[k]; -if(typeof (o)=="function"&&typeof (o.NAME)=="undefined"){ -try{ -o.NAME=base+k; -} -catch(e){ -} -} -} -}; -MochiKit.Format.__new__(); -if(typeof (MochiKit.Base)!="undefined"){ -MochiKit.Base._exportSymbols(this,MochiKit.Format); -}else{ -(function(_273,_274){ -if((typeof (JSAN)=="undefined"&&typeof (dojo)=="undefined")||(MochiKit.__export__===false)){ -var all=_274.EXPORT_TAGS[":all"]; -for(var i=0;i1){ -fn=MochiKit.Base.partial.apply(null,arguments); -} -return this.addCallbacks(fn,fn); -},addCallback:function(fn){ -if(arguments.length>1){ -fn=MochiKit.Base.partial.apply(null,arguments); -} -return this.addCallbacks(fn,null); -},addErrback:function(fn){ -if(arguments.length>1){ -fn=MochiKit.Base.partial.apply(null,arguments); -} -return this.addCallbacks(null,fn); -},addCallbacks:function(cb,eb){ -if(this.chained){ -throw new Error("Chained Deferreds can not be re-used"); -} -this.chain.push([cb,eb]); -if(this.fired>=0){ -this._fire(); -} -return this; -},_fire:function(){ -var _283=this.chain; -var _284=this.fired; -var res=this.results[_284]; -var self=this; -var cb=null; -while(_283.length>0&&this.paused===0){ -var pair=_283.shift(); -var f=pair[_284]; -if(f===null){ -continue; -} -try{ -res=f(res); -_284=((res instanceof Error)?1:0); -if(res instanceof MochiKit.Async.Deferred){ -cb=function(res){ -self._resback(res); -self.paused--; -if((self.paused===0)&&(self.fired>=0)){ -self._fire(); -} -}; -this.paused++; -} -} -catch(err){ -_284=1; -if(!(err instanceof Error)){ -err=new MochiKit.Async.GenericError(err); -} -res=err; -} -} -this.fired=_284; -this.results[_284]=res; -if(cb&&this.paused){ -res.addBoth(cb); -res.chained=true; -} -}}; -MochiKit.Base.update(MochiKit.Async,{evalJSONRequest:function(){ -return eval("("+arguments[0].responseText+")"); -},succeed:function(_28b){ -var d=new MochiKit.Async.Deferred(); -d.callback.apply(d,arguments); -return d; -},fail:function(_28d){ -var d=new MochiKit.Async.Deferred(); -d.errback.apply(d,arguments); -return d; -},getXMLHttpRequest:function(){ -var self=arguments.callee; -if(!self.XMLHttpRequest){ -var _290=[function(){ -return new XMLHttpRequest(); -},function(){ -return new ActiveXObject("Msxml2.XMLHTTP"); -},function(){ -return new ActiveXObject("Microsoft.XMLHTTP"); -},function(){ -return new ActiveXObject("Msxml2.XMLHTTP.4.0"); -},function(){ -throw new MochiKit.Async.BrowserComplianceError("Browser does not support XMLHttpRequest"); -}]; -for(var i=0;i<_290.length;i++){ -var func=_290[i]; -try{ -self.XMLHttpRequest=func; -return func(); -} -catch(e){ -} -} -} -return self.XMLHttpRequest(); -},_xhr_onreadystatechange:function(d){ -var m=MochiKit.Base; -if(this.readyState==4){ -try{ -this.onreadystatechange=null; -} -catch(e){ -try{ -this.onreadystatechange=m.noop; -} -catch(e){ -} -} -var _295=null; -try{ -_295=this.status; -if(!_295&&m.isNotEmpty(this.responseText)){ -_295=304; -} -} -catch(e){ -} -if(_295==200||_295==304){ -d.callback(this); -}else{ -var err=new MochiKit.Async.XMLHttpRequestError(this,"Request failed"); -if(err.number){ -d.errback(err); -}else{ -d.errback(err); -} -} -} -},_xhr_canceller:function(req){ -try{ -req.onreadystatechange=null; -} -catch(e){ -try{ -req.onreadystatechange=MochiKit.Base.noop; -} -catch(e){ -} -} -req.abort(); -},sendXMLHttpRequest:function(req,_299){ -if(typeof (_299)=="undefined"||_299===null){ -_299=""; -} -var m=MochiKit.Base; -var self=MochiKit.Async; -var d=new self.Deferred(m.partial(self._xhr_canceller,req)); -try{ -req.onreadystatechange=m.bind(self._xhr_onreadystatechange,req,d); -req.send(_299); -} -catch(e){ -try{ -req.onreadystatechange=null; -} -catch(ignore){ -} -d.errback(e); -} -return d; -},doXHR:function(url,opts){ -var m=MochiKit.Base; -opts=m.update({method:"GET",sendContent:""},opts); -var self=MochiKit.Async; -var req=self.getXMLHttpRequest(); -if(opts.queryString){ -var qs=m.queryString(opts.queryString); -if(qs){ -url+="?"+qs; -} -} -req.open(opts.method,url,true,opts.username,opts.password); -if(req.overrideMimeType&&opts.mimeType){ -req.overrideMimeType(opts.mimeType); -} -if(opts.headers){ -var _2a3=opts.headers; -if(!m.isArrayLike(_2a3)){ -_2a3=m.items(_2a3); -} -for(var i=0;i<_2a3.length;i++){ -var _2a5=_2a3[i]; -var name=_2a5[0]; -var _2a7=_2a5[1]; -req.setRequestHeader(name,_2a7); -} -} -return self.sendXMLHttpRequest(req,opts.sendContent); -},_buildURL:function(url){ -if(arguments.length>1){ -var m=MochiKit.Base; -var qs=m.queryString.apply(null,m.extend(null,arguments,1)); -if(qs){ -return url+"?"+qs; -} -} -return url; -},doSimpleXMLHttpRequest:function(url){ -var self=MochiKit.Async; -url=self._buildURL.apply(self,arguments); -return self.doXHR(url); -},loadJSONDoc:function(url){ -var self=MochiKit.Async; -url=self._buildURL.apply(self,arguments); -var d=self.doXHR(url,{"mimeType":"text/plain","headers":[["Accept","application/json"]]}); -d=d.addCallback(self.evalJSONRequest); -return d; -},wait:function(_2b0,_2b1){ -var d=new MochiKit.Async.Deferred(); -var m=MochiKit.Base; -if(typeof (_2b1)!="undefined"){ -d.addCallback(function(){ -return _2b1; -}); -} -var _2b4=setTimeout(m.bind("callback",d),Math.floor(_2b0*1000)); -d.canceller=function(){ -try{ -clearTimeout(_2b4); -} -catch(e){ -} -}; -return d; -},callLater:function(_2b5,func){ -var m=MochiKit.Base; -var _2b8=m.partial.apply(m,m.extend(null,arguments,1)); -return MochiKit.Async.wait(_2b5).addCallback(function(res){ -return _2b8(); -}); -}}); -MochiKit.Async.DeferredLock=function(){ -this.waiting=[]; -this.locked=false; -this.id=this._nextId(); -}; -MochiKit.Async.DeferredLock.prototype={__class__:MochiKit.Async.DeferredLock,acquire:function(){ -var d=new MochiKit.Async.Deferred(); -if(this.locked){ -this.waiting.push(d); -}else{ -this.locked=true; -d.callback(this); -} -return d; -},release:function(){ -if(!this.locked){ -throw TypeError("Tried to release an unlocked DeferredLock"); -} -this.locked=false; -if(this.waiting.length>0){ -this.locked=true; -this.waiting.shift().callback(this); -} -},_nextId:MochiKit.Base.counter(),repr:function(){ -var _2bb; -if(this.locked){ -_2bb="locked, "+this.waiting.length+" waiting"; -}else{ -_2bb="unlocked"; -} -return "DeferredLock("+this.id+", "+_2bb+")"; -},toString:MochiKit.Base.forwardCall("repr")}; -MochiKit.Async.DeferredList=function(list,_2bd,_2be,_2bf,_2c0){ -MochiKit.Async.Deferred.apply(this,[_2c0]); -this.list=list; -var _2c1=[]; -this.resultList=_2c1; -this.finishedCount=0; -this.fireOnOneCallback=_2bd; -this.fireOnOneErrback=_2be; -this.consumeErrors=_2bf; -var cb=MochiKit.Base.bind(this._cbDeferred,this); -for(var i=0;i=0){ -var opt=elem.options[elem.selectedIndex]; -_2e0.push(name); -_2e1.push(opt.value); -return null; -} -_2e0.push(name); -_2e1.push(""); -return null; -}else{ -var opts=elem.options; -if(!opts.length){ -_2e0.push(name); -_2e1.push(""); -return null; -} -for(var i=0;i0){ -return node; -} -if(typeof (node)=="number"||typeof (node)=="boolean"){ -node=node.toString(); -} -if(typeof (node)=="string"){ -return self._document.createTextNode(node); -} -if(typeof (node.__dom__)=="function"){ -node=node.__dom__(ctx); -continue; -} -if(typeof (node.dom)=="function"){ -node=node.dom(ctx); -continue; -} -if(typeof (node)=="function"){ -node=node.apply(ctx,[ctx]); -continue; -} -if(im){ -var _2fe=null; -try{ -_2fe=iter(node); -} -catch(e){ -} -if(_2fe){ -return map(_2fc,_2fe,_2f9(ctx)); -} -} -try{ -node=_2fb.match(node,ctx); -continue; -} -catch(e){ -if(e!=_2fd){ -throw e; -} -} -return self._document.createTextNode(node.toString()); -} -return undefined; -},isChildNode:function(node,_300){ -var self=MochiKit.DOM; -if(typeof (node)=="string"){ -node=self.getElement(node); -} -if(typeof (_300)=="string"){ -_300=self.getElement(_300); -} -if(node===_300){ -return true; -} -while(node&&node.tagName.toUpperCase()!="BODY"){ -node=node.parentNode; -if(node===_300){ -return true; -} -} -return false; -},setNodeAttribute:function(node,attr,_304){ -var o={}; -o[attr]=_304; -try{ -return MochiKit.DOM.updateNodeAttributes(node,o); -} -catch(e){ -} -return null; -},getNodeAttribute:function(node,attr){ -var self=MochiKit.DOM; -var _309=self.attributeArray.renames[attr]; -node=self.getElement(node); -try{ -if(_309){ -return node[_309]; -} -return node.getAttribute(attr); -} -catch(e){ -} -return null; -},updateNodeAttributes:function(node,_30b){ -var elem=node; -var self=MochiKit.DOM; -if(typeof (node)=="string"){ -elem=self.getElement(node); -} -if(_30b){ -var _30e=MochiKit.Base.updatetree; -if(self.attributeArray.compliant){ -for(var k in _30b){ -var v=_30b[k]; -if(typeof (v)=="object"&&typeof (elem[k])=="object"){ -_30e(elem[k],v); -}else{ -if(k.substring(0,2)=="on"){ -if(typeof (v)=="string"){ -v=new Function(v); -} -elem[k]=v; -}else{ -elem.setAttribute(k,v); -} -} -} -}else{ -var _311=self.attributeArray.renames; -for(k in _30b){ -v=_30b[k]; -var _312=_311[k]; -if(k=="style"&&typeof (v)=="string"){ -elem.style.cssText=v; -}else{ -if(typeof (_312)=="string"){ -elem[_312]=v; -}else{ -if(typeof (elem[k])=="object"&&typeof (v)=="object"){ -_30e(elem[k],v); -}else{ -if(k.substring(0,2)=="on"){ -if(typeof (v)=="string"){ -v=new Function(v); -} -elem[k]=v; -}else{ -elem.setAttribute(k,v); -} -} -} -} -} -} -} -return elem; -},appendChildNodes:function(node){ -var elem=node; -var self=MochiKit.DOM; -if(typeof (node)=="string"){ -elem=self.getElement(node); -} -var _316=[self.coerceToDOM(MochiKit.Base.extend(null,arguments,1),elem)]; -var _317=MochiKit.Base.concat; -while(_316.length){ -var n=_316.shift(); -if(typeof (n)=="undefined"||n===null){ -}else{ -if(typeof (n.nodeType)=="number"){ -elem.appendChild(n); -}else{ -_316=_317(n,_316); -} -} -} -return elem; -},replaceChildNodes:function(node){ -var elem=node; -var self=MochiKit.DOM; -if(typeof (node)=="string"){ -elem=self.getElement(node); -arguments[0]=elem; -} -var _31c; -while((_31c=elem.firstChild)){ -elem.removeChild(_31c); -} -if(arguments.length<2){ -return elem; -}else{ -return self.appendChildNodes.apply(this,arguments); -} -},createDOM:function(name,_31e){ -var elem; -var self=MochiKit.DOM; -var m=MochiKit.Base; -if(typeof (_31e)=="string"||typeof (_31e)=="number"){ -var args=m.extend([name,null],arguments,1); -return arguments.callee.apply(this,args); -} -if(typeof (name)=="string"){ -var _323=self._xhtml; -if(_31e&&!self.attributeArray.compliant){ -var _324=""; -if("name" in _31e){ -_324+=" name=\""+self.escapeHTML(_31e.name)+"\""; -} -if(name=="input"&&"type" in _31e){ -_324+=" type=\""+self.escapeHTML(_31e.type)+"\""; -} -if(_324){ -name="<"+name+_324+">"; -_323=false; -} -} -var d=self._document; -if(_323&&d===document){ -elem=d.createElementNS("http://www.w3.org/1999/xhtml",name); -}else{ -elem=d.createElement(name); -} -}else{ -elem=name; -} -if(_31e){ -self.updateNodeAttributes(elem,_31e); -} -if(arguments.length<=2){ -return elem; -}else{ -var args=m.extend([elem],arguments,2); -return self.appendChildNodes.apply(this,args); -} -},createDOMFunc:function(){ -var m=MochiKit.Base; -return m.partial.apply(this,m.extend([MochiKit.DOM.createDOM],arguments)); -},removeElement:function(elem){ -var e=MochiKit.DOM.getElement(elem); -e.parentNode.removeChild(e); -return e; -},swapDOM:function(dest,src){ -var self=MochiKit.DOM; -dest=self.getElement(dest); -var _32c=dest.parentNode; -if(src){ -src=self.getElement(src); -_32c.replaceChild(src,dest); -}else{ -_32c.removeChild(dest); -} -return src; -},getElement:function(id){ -var self=MochiKit.DOM; -if(arguments.length==1){ -return ((typeof (id)=="string")?self._document.getElementById(id):id); -}else{ -return MochiKit.Base.map(self.getElement,arguments); -} -},getElementsByTagAndClassName:function(_32f,_330,_331){ -var self=MochiKit.DOM; -if(typeof (_32f)=="undefined"||_32f===null){ -_32f="*"; -} -if(typeof (_331)=="undefined"||_331===null){ -_331=self._document; -} -_331=self.getElement(_331); -var _333=(_331.getElementsByTagName(_32f)||self._document.all); -if(typeof (_330)=="undefined"||_330===null){ -return MochiKit.Base.extend(null,_333); -} -var _334=[]; -for(var i=0;i<_333.length;i++){ -var _336=_333[i]; -var cls=_336.className; -if(!cls){ -continue; -} -var _338=cls.split(" "); -for(var j=0;j<_338.length;j++){ -if(_338[j]==_330){ -_334.push(_336); -break; -} -} -} -return _334; -},_newCallStack:function(path,once){ -var rval=function(){ -var _33d=arguments.callee.callStack; -for(var i=0;i<_33d.length;i++){ -if(_33d[i].apply(this,arguments)===false){ -break; -} -} -if(once){ -try{ -this[path]=null; -} -catch(e){ -} -} -}; -rval.callStack=[]; -return rval; -},addToCallStack:function(_33f,path,func,once){ -var self=MochiKit.DOM; -var _344=_33f[path]; -var _345=_344; -if(!(typeof (_344)=="function"&&typeof (_344.callStack)=="object"&&_344.callStack!==null)){ -_345=self._newCallStack(path,once); -if(typeof (_344)=="function"){ -_345.callStack.push(_344); -} -_33f[path]=_345; -} -_345.callStack.push(func); -},addLoadEvent:function(func){ -var self=MochiKit.DOM; -self.addToCallStack(self._window,"onload",func,true); -},focusOnLoad:function(_348){ -var self=MochiKit.DOM; -self.addLoadEvent(function(){ -_348=self.getElement(_348); -if(_348){ -_348.focus(); -} -}); -},setElementClass:function(_34a,_34b){ -var self=MochiKit.DOM; -var obj=self.getElement(_34a); -if(self.attributeArray.compliant){ -obj.setAttribute("class",_34b); -}else{ -obj.setAttribute("className",_34b); -} -},toggleElementClass:function(_34e){ -var self=MochiKit.DOM; -for(var i=1;i/g,">"); -},toHTML:function(dom){ -return MochiKit.DOM.emitHTML(dom).join(""); -},emitHTML:function(dom,lst){ -if(typeof (lst)=="undefined"||lst===null){ -lst=[]; -} -var _371=[dom]; -var self=MochiKit.DOM; -var _373=self.escapeHTML; -var _374=self.attributeArray; -while(_371.length){ -dom=_371.pop(); -if(typeof (dom)=="string"){ -lst.push(dom); -}else{ -if(dom.nodeType==1){ -lst.push("<"+dom.tagName.toLowerCase()); -var _375=[]; -var _376=_374(dom); -for(var i=0;i<_376.length;i++){ -var a=_376[i]; -_375.push([" ",a.name,"=\"",_373(a.value),"\""]); -} -_375.sort(); -for(i=0;i<_375.length;i++){ -var _379=_375[i]; -for(var j=0;j<_379.length;j++){ -lst.push(_379[j]); -} -} -if(dom.hasChildNodes()){ -lst.push(">"); -_371.push(""); -var _37b=dom.childNodes; -for(i=_37b.length-1;i>=0;i--){ -_371.push(_37b[i]); -} -}else{ -lst.push("/>"); -} -}else{ -if(dom.nodeType==3){ -lst.push(_373(dom.nodeValue)); -} -} -} -} -return lst; -},scrapeText:function(node,_37d){ -var rval=[]; -(function(node){ -var cn=node.childNodes; -if(cn){ -for(var i=0;i0){ -var _38a=m.filter; -_389=function(node){ -return _38a(_389.ignoreAttrFilter,node.attributes); -}; -_389.ignoreAttr={}; -var _38c=_388.attributes; -var _38d=_389.ignoreAttr; -for(var i=0;i<_38c.length;i++){ -var a=_38c[i]; -_38d[a.name]=a.value; -} -_389.ignoreAttrFilter=function(a){ -return (_389.ignoreAttr[a.name]!=a.value); -}; -_389.compliant=false; -_389.renames={"class":"className","checked":"defaultChecked","usemap":"useMap","for":"htmlFor","readonly":"readOnly","colspan":"colSpan","bgcolor":"bgColor"}; -}else{ -_389=function(node){ -return node.attributes; -}; -_389.compliant=true; -_389.renames={}; -} -this.attributeArray=_389; -var _392=function(_393,arr){ -var _395=arr[1].split("."); -var str=""; -var obj={}; -str+="if (!MochiKit."+_395[1]+") { throw new Error(\""; -str+="This function has been deprecated and depends on MochiKit."; -str+=_395[1]+".\");}"; -str+="return MochiKit."+_395[1]+"."+arr[0]; -str+=".apply(this, arguments);"; -obj[_395[2]]=new Function(str); -MochiKit.Base.update(MochiKit[_393],obj); -}; -for(var i;i<&-]/g,"_"); -var name=uid+"_"+url; -var nwin=win.open("",name,"dependent,resizable,height=200"); -if(!nwin){ -alert("Not able to open debugging window due to pop-up blocking."); -return undefined; -} -nwin.document.write(""+"[MochiKit.LoggingPane]"+""); -nwin.document.close(); -nwin.document.title+=" "+win.document.title; -win=nwin; -} -var doc=win.document; -this.doc=doc; -var _3eb=doc.getElementById(uid); -var _3ec=!!_3eb; -if(_3eb&&typeof (_3eb.loggingPane)!="undefined"){ -_3eb.loggingPane.logger=this.logger; -_3eb.loggingPane.buildAndApplyFilter(); -return _3eb.loggingPane; -} -if(_3ec){ -var _3ed; -while((_3ed=_3eb.firstChild)){ -_3eb.removeChild(_3ed); -} -}else{ -_3eb=doc.createElement("div"); -_3eb.id=uid; -} -_3eb.loggingPane=this; -var _3ee=doc.createElement("input"); -var _3ef=doc.createElement("input"); -var _3f0=doc.createElement("button"); -var _3f1=doc.createElement("button"); -var _3f2=doc.createElement("button"); -var _3f3=doc.createElement("button"); -var _3f4=doc.createElement("div"); -var _3f5=doc.createElement("div"); -var _3f6=uid+"_Listener"; -this.colorTable=_3e4(this.colorTable); -var _3f7=[]; -var _3f8=null; -var _3f9=function(msg){ -var _3fb=msg.level; -if(typeof (_3fb)=="number"){ -_3fb=MochiKit.Logging.LogLevel[_3fb]; -} -return _3fb; -}; -var _3fc=function(msg){ -return msg.info.join(" "); -}; -var _3fe=bind(function(msg){ -var _400=_3f9(msg); -var text=_3fc(msg); -var c=this.colorTable[_400]; -var p=doc.createElement("span"); -p.className="MochiKit-LogMessage MochiKit-LogLevel-"+_400; -p.style.cssText="margin: 0px; white-space: -moz-pre-wrap; white-space: -o-pre-wrap; white-space: pre-wrap; white-space: pre-line; word-wrap: break-word; wrap-option: emergency; color: "+c; -p.appendChild(doc.createTextNode(_400+": "+text)); -_3f5.appendChild(p); -_3f5.appendChild(doc.createElement("br")); -if(_3f4.offsetHeight>_3f4.scrollHeight){ -_3f4.scrollTop=0; -}else{ -_3f4.scrollTop=_3f4.scrollHeight; -} -},this); -var _404=function(msg){ -_3f7[_3f7.length]=msg; -_3fe(msg); -}; -var _406=function(){ -var _407,_408; -try{ -_407=new RegExp(_3ee.value); -_408=new RegExp(_3ef.value); -} -catch(e){ -logDebug("Error in filter regex: "+e.message); -return null; -} -return function(msg){ -return (_407.test(_3f9(msg))&&_408.test(_3fc(msg))); -}; -}; -var _40a=function(){ -while(_3f5.firstChild){ -_3f5.removeChild(_3f5.firstChild); -} -}; -var _40b=function(){ -_3f7=[]; -_40a(); -}; -var _40c=bind(function(){ -if(this.closed){ -return; -} -this.closed=true; -if(MochiKit.LoggingPane._loggingPane==this){ -MochiKit.LoggingPane._loggingPane=null; -} -this.logger.removeListener(_3f6); -_3eb.loggingPane=null; -if(_3df){ -_3eb.parentNode.removeChild(_3eb); -}else{ -this.win.close(); -} -},this); -var _40d=function(){ -_40a(); -for(var i=0;i<_3f7.length;i++){ -var msg=_3f7[i]; -if(_3f8===null||_3f8(msg)){ -_3fe(msg); -} -} -}; -this.buildAndApplyFilter=function(){ -_3f8=_406(); -_40d(); -this.logger.removeListener(_3f6); -this.logger.addListener(_3f6,_3f8,_404); -}; -var _410=bind(function(){ -_3f7=this.logger.getMessages(); -_40d(); -},this); -var _411=bind(function(_412){ -_412=_412||window.event; -key=_412.which||_412.keyCode; -if(key==13){ -this.buildAndApplyFilter(); -} -},this); -var _413="display: block; z-index: 1000; left: 0px; bottom: 0px; position: fixed; width: 100%; background-color: white; font: "+this.logFont; -if(_3df){ -_413+="; height: 10em; border-top: 2px solid black"; -}else{ -_413+="; height: 100%;"; -} -_3eb.style.cssText=_413; -if(!_3ec){ -doc.body.appendChild(_3eb); -} -_413={"cssText":"width: 33%; display: inline; font: "+this.logFont}; -_3e2(_3ee,{"value":"FATAL|ERROR|WARNING|INFO|DEBUG","onkeypress":_411,"style":_413}); -_3eb.appendChild(_3ee); -_3e2(_3ef,{"value":".*","onkeypress":_411,"style":_413}); -_3eb.appendChild(_3ef); -_413="width: 8%; display:inline; font: "+this.logFont; -_3f0.appendChild(doc.createTextNode("Filter")); -_3f0.onclick=bind("buildAndApplyFilter",this); -_3f0.style.cssText=_413; -_3eb.appendChild(_3f0); -_3f1.appendChild(doc.createTextNode("Load")); -_3f1.onclick=_410; -_3f1.style.cssText=_413; -_3eb.appendChild(_3f1); -_3f2.appendChild(doc.createTextNode("Clear")); -_3f2.onclick=_40b; -_3f2.style.cssText=_413; -_3eb.appendChild(_3f2); -_3f3.appendChild(doc.createTextNode("Close")); -_3f3.onclick=_40c; -_3f3.style.cssText=_413; -_3eb.appendChild(_3f3); -_3f4.style.cssText="overflow: auto; width: 100%"; -_3f5.style.cssText="width: 100%; height: "+(_3df?"8em":"100%"); -_3f4.appendChild(_3f5); -_3eb.appendChild(_3f4); -this.buildAndApplyFilter(); -_410(); -if(_3df){ -this.win=undefined; -}else{ -this.win=win; -} -this.inline=_3df; -this.closePane=_40c; -this.closed=false; -return this; -}; -MochiKit.LoggingPane.LoggingPane.prototype={"logFont":"8pt Verdana,sans-serif","colorTable":{"ERROR":"red","FATAL":"darkred","WARNING":"blue","INFO":"black","DEBUG":"green"}}; -MochiKit.LoggingPane.EXPORT_OK=["LoggingPane"]; -MochiKit.LoggingPane.EXPORT=["createLoggingPane"]; -MochiKit.LoggingPane.__new__=function(){ -this.EXPORT_TAGS={":common":this.EXPORT,":all":MochiKit.Base.concat(this.EXPORT,this.EXPORT_OK)}; -MochiKit.Base.nameFunctions(this); -MochiKit.LoggingPane._loggingPane=null; -}; -MochiKit.LoggingPane.__new__(); -MochiKit.Base._exportSymbols(this,MochiKit.LoggingPane); -if(typeof (dojo)!="undefined"){ -dojo.provide("MochiKit.Color"); -dojo.require("MochiKit.Base"); -dojo.require("MochiKit.DOM"); -dojo.require("MochiKit.Style"); -} -if(typeof (JSAN)!="undefined"){ -JSAN.use("MochiKit.Base",[]); -JSAN.use("MochiKit.DOM",[]); -JSAN.use("MochiKit.Style",[]); -} -try{ -if(typeof (MochiKit.Base)=="undefined"){ -throw ""; -} -} -catch(e){ -throw "MochiKit.Color depends on MochiKit.Base"; -} -try{ -if(typeof (MochiKit.Base)=="undefined"){ -throw ""; -} -} -catch(e){ -throw "MochiKit.Color depends on MochiKit.DOM"; -} -try{ -if(typeof (MochiKit.Base)=="undefined"){ -throw ""; -} -} -catch(e){ -throw "MochiKit.Color depends on MochiKit.Style"; -} -if(typeof (MochiKit.Color)=="undefined"){ -MochiKit.Color={}; -} -MochiKit.Color.NAME="MochiKit.Color"; -MochiKit.Color.VERSION="1.4"; -MochiKit.Color.__repr__=function(){ -return "["+this.NAME+" "+this.VERSION+"]"; -}; -MochiKit.Color.toString=function(){ -return this.__repr__(); -}; -MochiKit.Color.Color=function(red,_415,blue,_417){ -if(typeof (_417)=="undefined"||_417===null){ -_417=1; -} -this.rgb={r:red,g:_415,b:blue,a:_417}; -}; -MochiKit.Color.Color.prototype={__class__:MochiKit.Color.Color,colorWithAlpha:function(_418){ -var rgb=this.rgb; -var m=MochiKit.Color; -return m.Color.fromRGB(rgb.r,rgb.g,rgb.b,_418); -},colorWithHue:function(hue){ -var hsl=this.asHSL(); -hsl.h=hue; -var m=MochiKit.Color; -return m.Color.fromHSL(hsl); -},colorWithSaturation:function(_41e){ -var hsl=this.asHSL(); -hsl.s=_41e; -var m=MochiKit.Color; -return m.Color.fromHSL(hsl); -},colorWithLightness:function(_421){ -var hsl=this.asHSL(); -hsl.l=_421; -var m=MochiKit.Color; -return m.Color.fromHSL(hsl); -},darkerColorWithLevel:function(_424){ -var hsl=this.asHSL(); -hsl.l=Math.max(hsl.l-_424,0); -var m=MochiKit.Color; -return m.Color.fromHSL(hsl); -},lighterColorWithLevel:function(_427){ -var hsl=this.asHSL(); -hsl.l=Math.min(hsl.l+_427,1); -var m=MochiKit.Color; -return m.Color.fromHSL(hsl); -},blendedColor:function(_42a,_42b){ -if(typeof (_42b)=="undefined"||_42b===null){ -_42b=0.5; -} -var sf=1-_42b; -var s=this.rgb; -var d=_42a.rgb; -var df=_42b; -return MochiKit.Color.Color.fromRGB((s.r*sf)+(d.r*df),(s.g*sf)+(d.g*df),(s.b*sf)+(d.b*df),(s.a*sf)+(d.a*df)); -},compareRGB:function(_430){ -var a=this.asRGB(); -var b=_430.asRGB(); -return MochiKit.Base.compare([a.r,a.g,a.b,a.a],[b.r,b.g,b.b,b.a]); -},isLight:function(){ -return this.asHSL().b>0.5; -},isDark:function(){ -return (!this.isLight()); -},toHSLString:function(){ -var c=this.asHSL(); -var ccc=MochiKit.Color.clampColorComponent; -var rval=this._hslString; -if(!rval){ -var mid=(ccc(c.h,360).toFixed(0)+","+ccc(c.s,100).toPrecision(4)+"%"+","+ccc(c.l,100).toPrecision(4)+"%"); -var a=c.a; -if(a>=1){ -a=1; -rval="hsl("+mid+")"; -}else{ -if(a<=0){ -a=0; -} -rval="hsla("+mid+","+a+")"; -} -this._hslString=rval; -} -return rval; -},toRGBString:function(){ -var c=this.rgb; -var ccc=MochiKit.Color.clampColorComponent; -var rval=this._rgbString; -if(!rval){ -var mid=(ccc(c.r,255).toFixed(0)+","+ccc(c.g,255).toFixed(0)+","+ccc(c.b,255).toFixed(0)); -if(c.a!=1){ -rval="rgba("+mid+","+c.a+")"; -}else{ -rval="rgb("+mid+")"; -} -this._rgbString=rval; -} -return rval; -},asRGB:function(){ -return MochiKit.Base.clone(this.rgb); -},toHexString:function(){ -var m=MochiKit.Color; -var c=this.rgb; -var ccc=MochiKit.Color.clampColorComponent; -var rval=this._hexString; -if(!rval){ -rval=("#"+m.toColorPart(ccc(c.r,255))+m.toColorPart(ccc(c.g,255))+m.toColorPart(ccc(c.b,255))); -this._hexString=rval; -} -return rval; -},asHSV:function(){ -var hsv=this.hsv; -var c=this.rgb; -if(typeof (hsv)=="undefined"||hsv===null){ -hsv=MochiKit.Color.rgbToHSV(this.rgb); -this.hsv=hsv; -} -return MochiKit.Base.clone(hsv); -},asHSL:function(){ -var hsl=this.hsl; -var c=this.rgb; -if(typeof (hsl)=="undefined"||hsl===null){ -hsl=MochiKit.Color.rgbToHSL(this.rgb); -this.hsl=hsl; -} -return MochiKit.Base.clone(hsl); -},toString:function(){ -return this.toRGBString(); -},repr:function(){ -var c=this.rgb; -var col=[c.r,c.g,c.b,c.a]; -return this.__class__.NAME+"("+col.join(", ")+")"; -}}; -MochiKit.Base.update(MochiKit.Color.Color,{fromRGB:function(red,_447,blue,_449){ -var _44a=MochiKit.Color.Color; -if(arguments.length==1){ -var rgb=red; -red=rgb.r; -_447=rgb.g; -blue=rgb.b; -if(typeof (rgb.a)=="undefined"){ -_449=undefined; -}else{ -_449=rgb.a; -} -} -return new _44a(red,_447,blue,_449); -},fromHSL:function(hue,_44d,_44e,_44f){ -var m=MochiKit.Color; -return m.Color.fromRGB(m.hslToRGB.apply(m,arguments)); -},fromHSV:function(hue,_452,_453,_454){ -var m=MochiKit.Color; -return m.Color.fromRGB(m.hsvToRGB.apply(m,arguments)); -},fromName:function(name){ -var _457=MochiKit.Color.Color; -if(name.charAt(0)=="\""){ -name=name.substr(1,name.length-2); -} -var _458=_457._namedColors[name.toLowerCase()]; -if(typeof (_458)=="string"){ -return _457.fromHexString(_458); -}else{ -if(name=="transparent"){ -return _457.transparentColor(); -} -} -return null; -},fromString:function(_459){ -var self=MochiKit.Color.Color; -var _45b=_459.substr(0,3); -if(_45b=="rgb"){ -return self.fromRGBString(_459); -}else{ -if(_45b=="hsl"){ -return self.fromHSLString(_459); -}else{ -if(_459.charAt(0)=="#"){ -return self.fromHexString(_459); -} -} -} -return self.fromName(_459); -},fromHexString:function(_45c){ -if(_45c.charAt(0)=="#"){ -_45c=_45c.substring(1); -} -var _45d=[]; -var i,hex; -if(_45c.length==3){ -for(i=0;i<3;i++){ -hex=_45c.substr(i,1); -_45d.push(parseInt(hex+hex,16)/255); -} -}else{ -for(i=0;i<6;i+=2){ -hex=_45c.substr(i,2); -_45d.push(parseInt(hex,16)/255); -} -} -var _460=MochiKit.Color.Color; -return _460.fromRGB.apply(_460,_45d); -},_fromColorString:function(pre,_462,_463,_464){ -if(_464.indexOf(pre)===0){ -_464=_464.substring(_464.indexOf("(",3)+1,_464.length-1); -} -var _465=_464.split(/\s*,\s*/); -var _466=[]; -for(var i=0;i<_465.length;i++){ -var c=_465[i]; -var val; -var _46a=c.substring(c.length-3); -if(c.charAt(c.length-1)=="%"){ -val=0.01*parseFloat(c.substring(0,c.length-1)); -}else{ -if(_46a=="deg"){ -val=parseFloat(c)/360; -}else{ -if(_46a=="rad"){ -val=parseFloat(c)/(Math.PI*2); -}else{ -val=_463[i]*parseFloat(c); -} -} -} -_466.push(val); -} -return this[_462].apply(this,_466); -},fromComputedStyle:function(elem,_46c){ -var d=MochiKit.DOM; -var cls=MochiKit.Color.Color; -for(elem=d.getElement(elem);elem;elem=elem.parentNode){ -var _46f=MochiKit.Style.computedStyle.apply(d,arguments); -if(!_46f){ -continue; -} -var _470=cls.fromString(_46f); -if(!_470){ -break; -} -if(_470.asRGB().a>0){ -return _470; -} -} -return null; -},fromBackground:function(elem){ -var cls=MochiKit.Color.Color; -return cls.fromComputedStyle(elem,"backgroundColor","background-color")||cls.whiteColor(); -},fromText:function(elem){ -var cls=MochiKit.Color.Color; -return cls.fromComputedStyle(elem,"color","color")||cls.blackColor(); -},namedColors:function(){ -return MochiKit.Base.clone(MochiKit.Color.Color._namedColors); -}}); -MochiKit.Base.update(MochiKit.Color,{clampColorComponent:function(v,_476){ -v*=_476; -if(v<0){ -return 0; -}else{ -if(v>_476){ -return _476; -}else{ -return v; -} -} -},_hslValue:function(n1,n2,hue){ -if(hue>6){ -hue-=6; -}else{ -if(hue<0){ -hue+=6; -} -} -var val; -if(hue<1){ -val=n1+(n2-n1)*hue; -}else{ -if(hue<3){ -val=n2; -}else{ -if(hue<4){ -val=n1+(n2-n1)*(4-hue); -}else{ -val=n1; -} -} -} -return val; -},hsvToRGB:function(hue,_47c,_47d,_47e){ -if(arguments.length==1){ -var hsv=hue; -hue=hsv.h; -_47c=hsv.s; -_47d=hsv.v; -_47e=hsv.a; -} -var red; -var _481; -var blue; -if(_47c===0){ -red=0; -_481=0; -blue=0; -}else{ -var i=Math.floor(hue*6); -var f=(hue*6)-i; -var p=_47d*(1-_47c); -var q=_47d*(1-(_47c*f)); -var t=_47d*(1-(_47c*(1-f))); -switch(i){ -case 1: -red=q; -_481=_47d; -blue=p; -break; -case 2: -red=p; -_481=_47d; -blue=t; -break; -case 3: -red=p; -_481=q; -blue=_47d; -break; -case 4: -red=t; -_481=p; -blue=_47d; -break; -case 5: -red=_47d; -_481=p; -blue=q; -break; -case 6: -case 0: -red=_47d; -_481=t; -blue=p; -break; -} -} -return {r:red,g:_481,b:blue,a:_47e}; -},hslToRGB:function(hue,_489,_48a,_48b){ -if(arguments.length==1){ -var hsl=hue; -hue=hsl.h; -_489=hsl.s; -_48a=hsl.l; -_48b=hsl.a; -} -var red; -var _48e; -var blue; -if(_489===0){ -red=_48a; -_48e=_48a; -blue=_48a; -}else{ -var m2; -if(_48a<=0.5){ -m2=_48a*(1+_489); -}else{ -m2=_48a+_489-(_48a*_489); -} -var m1=(2*_48a)-m2; -var f=MochiKit.Color._hslValue; -var h6=hue*6; -red=f(m1,m2,h6+2); -_48e=f(m1,m2,h6); -blue=f(m1,m2,h6-2); -} -return {r:red,g:_48e,b:blue,a:_48b}; -},rgbToHSV:function(red,_495,blue,_497){ -if(arguments.length==1){ -var rgb=red; -red=rgb.r; -_495=rgb.g; -blue=rgb.b; -_497=rgb.a; -} -var max=Math.max(Math.max(red,_495),blue); -var min=Math.min(Math.min(red,_495),blue); -var hue; -var _49c; -var _49d=max; -if(min==max){ -hue=0; -_49c=0; -}else{ -var _49e=(max-min); -_49c=_49e/max; -if(red==max){ -hue=(_495-blue)/_49e; -}else{ -if(_495==max){ -hue=2+((blue-red)/_49e); -}else{ -hue=4+((red-_495)/_49e); -} -} -hue/=6; -if(hue<0){ -hue+=1; -} -if(hue>1){ -hue-=1; -} -} -return {h:hue,s:_49c,v:_49d,a:_497}; -},rgbToHSL:function(red,_4a0,blue,_4a2){ -if(arguments.length==1){ -var rgb=red; -red=rgb.r; -_4a0=rgb.g; -blue=rgb.b; -_4a2=rgb.a; -} -var max=Math.max(red,Math.max(_4a0,blue)); -var min=Math.min(red,Math.min(_4a0,blue)); -var hue; -var _4a7; -var _4a8=(max+min)/2; -var _4a9=max-min; -if(_4a9===0){ -hue=0; -_4a7=0; -}else{ -if(_4a8<=0.5){ -_4a7=_4a9/(max+min); -}else{ -_4a7=_4a9/(2-max-min); -} -if(red==max){ -hue=(_4a0-blue)/_4a9; -}else{ -if(_4a0==max){ -hue=2+((blue-red)/_4a9); -}else{ -hue=4+((red-_4a0)/_4a9); -} -} -hue/=6; -if(hue<0){ -hue+=1; -} -if(hue>1){ -hue-=1; -} -} -return {h:hue,s:_4a7,l:_4a8,a:_4a2}; -},toColorPart:function(num){ -num=Math.round(num); -var _4ab=num.toString(16); -if(num<16){ -return "0"+_4ab; -} -return _4ab; -},__new__:function(){ -var m=MochiKit.Base; -this.Color.fromRGBString=m.bind(this.Color._fromColorString,this.Color,"rgb","fromRGB",[1/255,1/255,1/255,1]); -this.Color.fromHSLString=m.bind(this.Color._fromColorString,this.Color,"hsl","fromHSL",[1/360,0.01,0.01,1]); -var _4ad=1/3; -var _4ae={black:[0,0,0],blue:[0,0,1],brown:[0.6,0.4,0.2],cyan:[0,1,1],darkGray:[_4ad,_4ad,_4ad],gray:[0.5,0.5,0.5],green:[0,1,0],lightGray:[2*_4ad,2*_4ad,2*_4ad],magenta:[1,0,1],orange:[1,0.5,0],purple:[0.5,0,0.5],red:[1,0,0],transparent:[0,0,0,0],white:[1,1,1],yellow:[1,1,0]}; -var _4af=function(name,r,g,b,a){ -var rval=this.fromRGB(r,g,b,a); -this[name]=function(){ -return rval; -}; -return rval; -}; -for(var k in _4ae){ -var name=k+"Color"; -var _4b8=m.concat([_4af,this.Color,name],_4ae[k]); -this.Color[name]=m.bind.apply(null,_4b8); -} -var _4b9=function(){ -for(var i=0;i1){ -var src=MochiKit.DOM.getElement(arguments[0]); -var sig=arguments[1]; -var obj=arguments[2]; -var func=arguments[3]; -for(var i=_4f5.length-1;i>=0;i--){ -var o=_4f5[i]; -if(o[0]===src&&o[1]===sig&&o[4]===obj&&o[5]===func){ -self._disconnect(o); -if(!self._lock){ -_4f5.splice(i,1); -}else{ -self._dirty=true; -} -return true; -} -} -}else{ -var idx=m.findIdentical(_4f5,_4f3); -if(idx>=0){ -self._disconnect(_4f3); -if(!self._lock){ -_4f5.splice(idx,1); -}else{ -self._dirty=true; -} -return true; -} -} -return false; -},disconnectAllTo:function(_4fe,_4ff){ -var self=MochiKit.Signal; -var _501=self._observers; -var _502=self._disconnect; -var _503=self._lock; -var _504=self._dirty; -if(typeof (_4ff)==="undefined"){ -_4ff=null; -} -for(var i=_501.length-1;i>=0;i--){ -var _506=_501[i]; -if(_506[4]===_4fe&&(_4ff===null||_506[5]===_4ff)){ -_502(_506); -if(_503){ -_504=true; -}else{ -_501.splice(i,1); -} -} -} -self._dirty=_504; -},disconnectAll:function(src,sig){ -src=MochiKit.DOM.getElement(src); -var m=MochiKit.Base; -var _50a=m.flattenArguments(m.extend(null,arguments,1)); -var self=MochiKit.Signal; -var _50c=self._disconnect; -var _50d=self._observers; -var i,_50f; -var _510=self._lock; -var _511=self._dirty; -if(_50a.length===0){ -for(i=_50d.length-1;i>=0;i--){ -_50f=_50d[i]; -if(_50f[0]===src){ -_50c(_50f); -if(!_510){ -_50d.splice(i,1); -}else{ -_511=true; -} -} -} -}else{ -var sigs={}; -for(i=0;i<_50a.length;i++){ -sigs[_50a[i]]=true; -} -for(i=_50d.length-1;i>=0;i--){ -_50f=_50d[i]; -if(_50f[0]===src&&_50f[1] in sigs){ -_50c(_50f); -if(!_510){ -_50d.splice(i,1); -}else{ -_511=true; -} -} -} -} -self._dirty=_511; -},signal:function(src,sig){ -var self=MochiKit.Signal; -var _516=self._observers; -src=MochiKit.DOM.getElement(src); -var args=MochiKit.Base.extend(null,arguments,2); -var _518=[]; -self._lock=true; -for(var i=0;i<_516.length;i++){ -var _51a=_516[i]; -if(_51a[0]===src&&_51a[1]===sig){ -try{ -_51a[2].apply(src,args); -} -catch(e){ -_518.push(e); -} -} -} -self._lock=false; -if(self._dirty){ -self._dirty=false; -for(var i=_516.length-1;i>=0;i--){ -if(!_516[i][6]){ -_516.splice(i,1); -} -} -} -if(_518.length==1){ -throw _518[0]; -}else{ -if(_518.length>1){ -var e=new Error("Multiple errors thrown in handling 'sig', see errors property"); -e.errors=_518; -throw e; -} -} -}}); -MochiKit.Signal.EXPORT_OK=[]; -MochiKit.Signal.EXPORT=["connect","disconnect","signal","disconnectAll","disconnectAllTo"]; -MochiKit.Signal.__new__=function(win){ -var m=MochiKit.Base; -this._document=document; -this._window=win; -this._lock=false; -this._dirty=false; -try{ -this.connect(window,"onunload",this._unloadCache); -} -catch(e){ -} -this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)}; -m.nameFunctions(this); -}; -MochiKit.Signal.__new__(this); -if(MochiKit.__export__){ -connect=MochiKit.Signal.connect; -disconnect=MochiKit.Signal.disconnect; -disconnectAll=MochiKit.Signal.disconnectAll; -signal=MochiKit.Signal.signal; -} -MochiKit.Base._exportSymbols(this,MochiKit.Signal); -if(typeof (dojo)!="undefined"){ -dojo.provide("MochiKit.Visual"); -dojo.require("MochiKit.Base"); -dojo.require("MochiKit.DOM"); -dojo.require("MochiKit.Style"); -dojo.require("MochiKit.Color"); -} -if(typeof (JSAN)!="undefined"){ -JSAN.use("MochiKit.Base",[]); -JSAN.use("MochiKit.DOM",[]); -JSAN.use("MochiKit.Style",[]); -JSAN.use("MochiKit.Color",[]); -} -try{ -if(typeof (MochiKit.Base)==="undefined"||typeof (MochiKit.DOM)==="undefined"||typeof (MochiKit.Style)==="undefined"||typeof (MochiKit.Color)==="undefined"){ -throw ""; -} -} -catch(e){ -throw "MochiKit.Visual depends on MochiKit.Base, MochiKit.DOM, MochiKit.Style and MochiKit.Color!"; -} -if(typeof (MochiKit.Visual)=="undefined"){ -MochiKit.Visual={}; -} -MochiKit.Visual.NAME="MochiKit.Visual"; -MochiKit.Visual.VERSION="1.4"; -MochiKit.Visual.__repr__=function(){ -return "["+this.NAME+" "+this.VERSION+"]"; -}; -MochiKit.Visual.toString=function(){ -return this.__repr__(); -}; -MochiKit.Visual._RoundCorners=function(e,_51f){ -e=MochiKit.DOM.getElement(e); -this._setOptions(_51f); -if(this.options.__unstable__wrapElement){ -e=this._doWrap(e); -} -var _520=this.options.color; -var C=MochiKit.Color.Color; -if(this.options.color==="fromElement"){ -_520=C.fromBackground(e); -}else{ -if(!(_520 instanceof C)){ -_520=C.fromString(_520); -} -} -this.isTransparent=(_520.asRGB().a<=0); -var _522=this.options.bgColor; -if(this.options.bgColor==="fromParent"){ -_522=C.fromBackground(e.offsetParent); -}else{ -if(!(_522 instanceof C)){ -_522=C.fromString(_522); -} -} -this._roundCornersImpl(e,_520,_522); -}; -MochiKit.Visual._RoundCorners.prototype={_doWrap:function(e){ -var _524=e.parentNode; -var doc=MochiKit.DOM.currentDocument(); -if(typeof (doc.defaultView)==="undefined"||doc.defaultView===null){ -return e; -} -var _526=doc.defaultView.getComputedStyle(e,null); -if(typeof (_526)==="undefined"||_526===null){ -return e; -} -var _527=MochiKit.DOM.DIV({"style":{display:"block",marginTop:_526.getPropertyValue("padding-top"),marginRight:_526.getPropertyValue("padding-right"),marginBottom:_526.getPropertyValue("padding-bottom"),marginLeft:_526.getPropertyValue("padding-left"),padding:"0px"}}); -_527.innerHTML=e.innerHTML; -e.innerHTML=""; -e.appendChild(_527); -return e; -},_roundCornersImpl:function(e,_529,_52a){ -if(this.options.border){ -this._renderBorder(e,_52a); -} -if(this._isTopRounded()){ -this._roundTopCorners(e,_529,_52a); -} -if(this._isBottomRounded()){ -this._roundBottomCorners(e,_529,_52a); -} -},_renderBorder:function(el,_52c){ -var _52d="1px solid "+this._borderColor(_52c); -var _52e="border-left: "+_52d; -var _52f="border-right: "+_52d; -var _530="style='"+_52e+";"+_52f+"'"; -el.innerHTML="
    "+el.innerHTML+"
    "; -},_roundTopCorners:function(el,_532,_533){ -var _534=this._createCorner(_533); -for(var i=0;i=0;i--){ -_539.appendChild(this._createCornerSlice(_537,_538,i,"bottom")); -} -el.style.paddingBottom=0; -el.appendChild(_539); -},_createCorner:function(_53b){ -var dom=MochiKit.DOM; -return dom.DIV({style:{backgroundColor:_53b.toString()}}); -},_createCornerSlice:function(_53d,_53e,n,_540){ -var _541=MochiKit.DOM.SPAN(); -var _542=_541.style; -_542.backgroundColor=_53d.toString(); -_542.display="block"; -_542.height="1px"; -_542.overflow="hidden"; -_542.fontSize="1px"; -var _543=this._borderColor(_53d,_53e); -if(this.options.border&&n===0){ -_542.borderTopStyle="solid"; -_542.borderTopWidth="1px"; -_542.borderLeftWidth="0px"; -_542.borderRightWidth="0px"; -_542.borderBottomWidth="0px"; -_542.height="0px"; -_542.borderColor=_543.toString(); -}else{ -if(_543){ -_542.borderColor=_543.toString(); -_542.borderStyle="solid"; -_542.borderWidth="0px 1px"; -} -} -if(!this.options.compact&&(n==(this.options.numSlices-1))){ -_542.height="2px"; -} -this._setMargin(_541,n,_540); -this._setBorder(_541,n,_540); -return _541; -},_setOptions:function(_544){ -this.options={corners:"all",color:"fromElement",bgColor:"fromParent",blend:true,border:false,compact:false,__unstable__wrapElement:false}; -MochiKit.Base.update(this.options,_544); -this.options.numSlices=(this.options.compact?2:4); -},_whichSideTop:function(){ -var _545=this.options.corners; -if(this._hasString(_545,"all","top")){ -return ""; -} -var _546=(_545.indexOf("tl")!=-1); -var _547=(_545.indexOf("tr")!=-1); -if(_546&&_547){ -return ""; -} -if(_546){ -return "left"; -} -if(_547){ -return "right"; -} -return ""; -},_whichSideBottom:function(){ -var _548=this.options.corners; -if(this._hasString(_548,"all","bottom")){ -return ""; -} -var _549=(_548.indexOf("bl")!=-1); -var _54a=(_548.indexOf("br")!=-1); -if(_549&&_54a){ -return ""; -} -if(_549){ -return "left"; -} -if(_54a){ -return "right"; -} -return ""; -},_borderColor:function(_54b,_54c){ -if(_54b=="transparent"){ -return _54c; -}else{ -if(this.options.border){ -return this.options.border; -}else{ -if(this.options.blend){ -return _54c.blendedColor(_54b); -} -} -} -return ""; -},_setMargin:function(el,n,_54f){ -var _550=this._marginSize(n)+"px"; -var _551=(_54f=="top"?this._whichSideTop():this._whichSideBottom()); -var _552=el.style; -if(_551=="left"){ -_552.marginLeft=_550; -_552.marginRight="0px"; -}else{ -if(_551=="right"){ -_552.marginRight=_550; -_552.marginLeft="0px"; -}else{ -_552.marginLeft=_550; -_552.marginRight=_550; -} -} -},_setBorder:function(el,n,_555){ -var _556=this._borderSize(n)+"px"; -var _557=(_555=="top"?this._whichSideTop():this._whichSideBottom()); -var _558=el.style; -if(_557=="left"){ -_558.borderLeftWidth=_556; -_558.borderRightWidth="0px"; -}else{ -if(_557=="right"){ -_558.borderRightWidth=_556; -_558.borderLeftWidth="0px"; -}else{ -_558.borderLeftWidth=_556; -_558.borderRightWidth=_556; -} -} -},_marginSize:function(n){ -if(this.isTransparent){ -return 0; -} -var o=this.options; -if(o.compact&&o.blend){ -var _55b=[1,0]; -return _55b[n]; -}else{ -if(o.compact){ -var _55c=[2,1]; -return _55c[n]; -}else{ -if(o.blend){ -var _55d=[3,2,1,0]; -return _55d[n]; -}else{ -var _55e=[5,3,2,1]; -return _55e[n]; -} -} -} -},_borderSize:function(n){ -var o=this.options; -var _561; -if(o.compact&&(o.blend||this.isTransparent)){ -return 1; -}else{ -if(o.compact){ -_561=[1,0]; -}else{ -if(o.blend){ -_561=[2,1,1,1]; -}else{ -if(o.border){ -_561=[0,2,0,0]; -}else{ -if(this.isTransparent){ -_561=[5,3,2,1]; -}else{ -return 0; -} -} -} -} -} -return _561[n]; -},_hasString:function(str){ -for(var i=1;i=(_58a||i)){ -_58a=i; -} -},this.effects); -_586=_58a||_586; -break; -case "break": -ma(function(e){ -e.finalize(); -},this.effects); -break; -} -_585.startOn+=_586; -_585.finishOn+=_586; -if(!_585.options.queue.limit||this.effects.length<_585.options.queue.limit){ -this.effects.push(_585); -} -if(!this.interval){ -this.interval=this.startLoop(MochiKit.Base.bind(this.loop,this),40); -} -},startLoop:function(func,_58f){ -return setInterval(func,_58f); -},remove:function(_590){ -this.effects=MochiKit.Base.filter(function(e){ -return e!=_590; -},this.effects); -if(this.effects.length==0){ -this.stopLoop(this.interval); -this.interval=null; -} -},stopLoop:function(_592){ -clearInterval(_592); -},loop:function(){ -var _593=new Date().getTime(); -MochiKit.Base.map(function(_594){ -_594.loop(_593); -},this.effects); -}}); -MochiKit.Visual.Queues={instances:{},get:function(_595){ -if(typeof (_595)!="string"){ -return _595; -} -if(!this.instances[_595]){ -this.instances[_595]=new MochiKit.Visual.ScopedQueue(); -} -return this.instances[_595]; -}}; -MochiKit.Visual.Queue=MochiKit.Visual.Queues.get("global"); -MochiKit.Visual.DefaultOptions={transition:MochiKit.Visual.Transitions.sinoidal,duration:1,fps:25,sync:false,from:0,to:1,delay:0,queue:"parallel"}; -MochiKit.Visual.Base=function(){ -}; -MochiKit.Visual.Base.prototype={__class__:MochiKit.Visual.Base,start:function(_596){ -var v=MochiKit.Visual; -this.options=MochiKit.Base.setdefault(_596||{},v.DefaultOptions); -this.currentFrame=0; -this.state="idle"; -this.startOn=this.options.delay*1000; -this.finishOn=this.startOn+(this.options.duration*1000); -this.event("beforeStart"); -if(!this.options.sync){ -v.Queues.get(typeof (this.options.queue)=="string"?"global":this.options.queue.scope).add(this); -} -},loop:function(_598){ -if(_598>=this.startOn){ -if(_598>=this.finishOn){ -return this.finalize(); -} -var pos=(_598-this.startOn)/(this.finishOn-this.startOn); -var _59a=Math.round(pos*this.options.fps*this.options.duration); -if(_59a>this.currentFrame){ -this.render(pos); -this.currentFrame=_59a; -} -} -},render:function(pos){ -if(this.state=="idle"){ -this.state="running"; -this.event("beforeSetup"); -this.setup(); -this.event("afterSetup"); -} -if(this.state=="running"){ -if(this.options.transition){ -pos=this.options.transition(pos); -} -pos*=(this.options.to-this.options.from); -pos+=this.options.from; -this.event("beforeUpdate"); -this.update(pos); -this.event("afterUpdate"); -} -},cancel:function(){ -if(!this.options.sync){ -MochiKit.Visual.Queues.get(typeof (this.options.queue)=="string"?"global":this.options.queue.scope).remove(this); -} -this.state="finished"; -},finalize:function(){ -this.render(1); -this.cancel(); -this.event("beforeFinish"); -this.finish(); -this.event("afterFinish"); -},setup:function(){ -},finish:function(){ -},update:function(_59c){ -},event:function(_59d){ -if(this.options[_59d+"Internal"]){ -this.options[_59d+"Internal"](this); -} -if(this.options[_59d]){ -this.options[_59d](this); -} -},repr:function(){ -return "["+this.__class__.NAME+", options:"+MochiKit.Base.repr(this.options)+"]"; -}}; -MochiKit.Visual.Parallel=function(_59e,_59f){ -this.__init__(_59e,_59f); -}; -MochiKit.Visual.Parallel.prototype=new MochiKit.Visual.Base(); -MochiKit.Base.update(MochiKit.Visual.Parallel.prototype,{__init__:function(_5a0,_5a1){ -this.effects=_5a0||[]; -this.start(_5a1); -},update:function(_5a2){ -MochiKit.Base.map(function(_5a3){ -_5a3.render(_5a2); -},this.effects); -},finish:function(){ -MochiKit.Base.map(function(_5a4){ -_5a4.finalize(); -},this.effects); -}}); -MochiKit.Visual.Opacity=function(_5a5,_5a6){ -this.__init__(_5a5,_5a6); -}; -MochiKit.Visual.Opacity.prototype=new MochiKit.Visual.Base(); -MochiKit.Base.update(MochiKit.Visual.Opacity.prototype,{__init__:function(_5a7,_5a8){ -var b=MochiKit.Base; -var s=MochiKit.Style; -this.element=MochiKit.DOM.getElement(_5a7); -if(this.element.currentStyle&&(!this.element.currentStyle.hasLayout)){ -s.setStyle(this.element,{zoom:1}); -} -_5a8=b.update({from:s.getOpacity(this.element)||0,to:1},_5a8||{}); -this.start(_5a8); -},update:function(_5ab){ -MochiKit.Style.setOpacity(this.element,_5ab); -}}); -MochiKit.Visual.Move=function(_5ac,_5ad){ -this.__init__(_5ac,_5ad); -}; -MochiKit.Visual.Move.prototype=new MochiKit.Visual.Base(); -MochiKit.Base.update(MochiKit.Visual.Move.prototype,{__init__:function(_5ae,_5af){ -this.element=MochiKit.DOM.getElement(_5ae); -_5af=MochiKit.Base.update({x:0,y:0,mode:"relative"},_5af||{}); -this.start(_5af); -},setup:function(){ -MochiKit.DOM.makePositioned(this.element); -var s=this.element.style; -var _5b1=s.visibility; -var _5b2=s.display; -if(_5b2=="none"){ -s.visibility="hidden"; -s.display=""; -} -this.originalLeft=parseFloat(MochiKit.Style.getStyle(this.element,"left")||"0"); -this.originalTop=parseFloat(MochiKit.Style.getStyle(this.element,"top")||"0"); -if(this.options.mode=="absolute"){ -this.options.x-=this.originalLeft; -this.options.y-=this.originalTop; -} -if(_5b2=="none"){ -s.visibility=_5b1; -s.display=_5b2; -} -},update:function(_5b3){ -MochiKit.Style.setStyle(this.element,{left:Math.round(this.options.x*_5b3+this.originalLeft)+"px",top:Math.round(this.options.y*_5b3+this.originalTop)+"px"}); -}}); -MochiKit.Visual.Scale=function(_5b4,_5b5,_5b6){ -this.__init__(_5b4,_5b5,_5b6); -}; -MochiKit.Visual.Scale.prototype=new MochiKit.Visual.Base(); -MochiKit.Base.update(MochiKit.Visual.Scale.prototype,{__init__:function(_5b7,_5b8,_5b9){ -this.element=MochiKit.DOM.getElement(_5b7); -_5b9=MochiKit.Base.update({scaleX:true,scaleY:true,scaleContent:true,scaleFromCenter:false,scaleMode:"box",scaleFrom:100,scaleTo:_5b8},_5b9||{}); -this.start(_5b9); -},setup:function(){ -this.restoreAfterFinish=this.options.restoreAfterFinish||false; -this.elementPositioning=MochiKit.Style.getStyle(this.element,"position"); -var ma=MochiKit.Base.map; -var b=MochiKit.Base.bind; -this.originalStyle={}; -ma(b(function(k){ -this.originalStyle[k]=this.element.style[k]; -},this),["top","left","width","height","fontSize"]); -this.originalTop=this.element.offsetTop; -this.originalLeft=this.element.offsetLeft; -var _5bd=MochiKit.Style.getStyle(this.element,"font-size")||"100%"; -ma(b(function(_5be){ -if(_5bd.indexOf(_5be)>0){ -this.fontSize=parseFloat(_5bd); -this.fontSizeType=_5be; -} -},this),["em","px","%"]); -this.factor=(this.options.scaleTo-this.options.scaleFrom)/100; -if(/^content/.test(this.options.scaleMode)){ -this.dims=[this.element.scrollHeight,this.element.scrollWidth]; -}else{ -if(this.options.scaleMode=="box"){ -this.dims=[this.element.offsetHeight,this.element.offsetWidth]; -}else{ -this.dims=[this.options.scaleMode.originalHeight,this.options.scaleMode.originalWidth]; -} -} -},update:function(_5bf){ -var _5c0=(this.options.scaleFrom/100)+(this.factor*_5bf); -if(this.options.scaleContent&&this.fontSize){ -MochiKit.Style.setStyle(this.element,{fontSize:this.fontSize*_5c0+this.fontSizeType}); -} -this.setDimensions(this.dims[0]*_5c0,this.dims[1]*_5c0); -},finish:function(){ -if(this.restoreAfterFinish){ -MochiKit.Style.setStyle(this.element,this.originalStyle); -} -},setDimensions:function(_5c1,_5c2){ -var d={}; -var r=Math.round; -if(/MSIE/.test(navigator.userAgent)){ -r=Math.ceil; -} -if(this.options.scaleX){ -d.width=r(_5c2)+"px"; -} -if(this.options.scaleY){ -d.height=r(_5c1)+"px"; -} -if(this.options.scaleFromCenter){ -var topd=(_5c1-this.dims[0])/2; -var _5c6=(_5c2-this.dims[1])/2; -if(this.elementPositioning=="absolute"){ -if(this.options.scaleY){ -d.top=this.originalTop-topd+"px"; -} -if(this.options.scaleX){ -d.left=this.originalLeft-_5c6+"px"; -} -}else{ -if(this.options.scaleY){ -d.top=-topd+"px"; -} -if(this.options.scaleX){ -d.left=-_5c6+"px"; -} -} -} -MochiKit.Style.setStyle(this.element,d); -}}); -MochiKit.Visual.Highlight=function(_5c7,_5c8){ -this.__init__(_5c7,_5c8); -}; -MochiKit.Visual.Highlight.prototype=new MochiKit.Visual.Base(); -MochiKit.Base.update(MochiKit.Visual.Highlight.prototype,{__init__:function(_5c9,_5ca){ -this.element=MochiKit.DOM.getElement(_5c9); -_5ca=MochiKit.Base.update({startcolor:"#ffff99"},_5ca||{}); -this.start(_5ca); -},setup:function(){ -var b=MochiKit.Base; -var s=MochiKit.Style; -if(s.getStyle(this.element,"display")=="none"){ -this.cancel(); -return; -} -this.oldStyle={backgroundImage:s.getStyle(this.element,"background-image")}; -s.setStyle(this.element,{backgroundImage:"none"}); -if(!this.options.endcolor){ -this.options.endcolor=MochiKit.Color.Color.fromBackground(this.element).toHexString(); -} -if(b.isUndefinedOrNull(this.options.restorecolor)){ -this.options.restorecolor=s.getStyle(this.element,"background-color"); -} -this._base=b.map(b.bind(function(i){ -return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16); -},this),[0,1,2]); -this._delta=b.map(b.bind(function(i){ -return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i]; -},this),[0,1,2]); -},update:function(_5cf){ -var m="#"; -MochiKit.Base.map(MochiKit.Base.bind(function(i){ -m+=MochiKit.Color.toColorPart(Math.round(this._base[i]+this._delta[i]*_5cf)); -},this),[0,1,2]); -MochiKit.Style.setStyle(this.element,{backgroundColor:m}); -},finish:function(){ -MochiKit.Style.setStyle(this.element,MochiKit.Base.update(this.oldStyle,{backgroundColor:this.options.restorecolor})); -}}); -MochiKit.Visual.ScrollTo=function(_5d2,_5d3){ -this.__init__(_5d2,_5d3); -}; -MochiKit.Visual.ScrollTo.prototype=new MochiKit.Visual.Base(); -MochiKit.Base.update(MochiKit.Visual.ScrollTo.prototype,{__init__:function(_5d4,_5d5){ -this.element=MochiKit.DOM.getElement(_5d4); -this.start(_5d5||{}); -},setup:function(){ -var p=MochiKit.Position; -p.prepare(); -var _5d7=p.cumulativeOffset(this.element); -if(this.options.offset){ -_5d7.y+=this.options.offset; -} -var max; -if(window.innerHeight){ -max=window.innerHeight-window.height; -}else{ -if(document.documentElement&&document.documentElement.clientHeight){ -max=document.documentElement.clientHeight-document.body.scrollHeight; -}else{ -if(document.body){ -max=document.body.clientHeight-document.body.scrollHeight; -} -} -} -this.scrollStart=p.windowOffset.y; -this.delta=(_5d7.y>max?max:_5d7.y)-this.scrollStart; -},update:function(_5d9){ -var p=MochiKit.Position; -p.prepare(); -window.scrollTo(p.windowOffset.x,this.scrollStart+(_5d9*this.delta)); -}}); -MochiKit.Visual.fade=function(_5db,_5dc){ -var s=MochiKit.Style; -var _5de=MochiKit.DOM.getElement(_5db).style.opacity||""; -_5dc=MochiKit.Base.update({from:s.getOpacity(_5db)||1,to:0,afterFinishInternal:function(_5df){ -if(_5df.options.to!==0){ -return; -} -s.hideElement(_5df.element); -s.setStyle(_5df.element,{opacity:_5de}); -}},_5dc||{}); -return new MochiKit.Visual.Opacity(_5db,_5dc); -}; -MochiKit.Visual.appear=function(_5e0,_5e1){ -var s=MochiKit.Style; -var v=MochiKit.Visual; -_5e1=MochiKit.Base.update({from:(s.getStyle(_5e0,"display")=="none"?0:s.getOpacity(_5e0)||0),to:1,afterFinishInternal:function(_5e4){ -v.forceRerendering(_5e4.element); -},beforeSetupInternal:function(_5e5){ -s.setOpacity(_5e5.element,_5e5.options.from); -s.showElement(_5e5.element); -}},_5e1||{}); -return new v.Opacity(_5e0,_5e1); -}; -MochiKit.Visual.puff=function(_5e6,_5e7){ -var s=MochiKit.Style; -var v=MochiKit.Visual; -_5e6=MochiKit.DOM.getElement(_5e6); -var _5ea={opacity:_5e6.style.opacity||"",position:s.getStyle(_5e6,"position"),top:_5e6.style.top,left:_5e6.style.left,width:_5e6.style.width,height:_5e6.style.height}; -_5e7=MochiKit.Base.update({beforeSetupInternal:function(_5eb){ -MochiKit.Position.absolutize(_5eb.effects[0].element); -},afterFinishInternal:function(_5ec){ -s.hideElement(_5ec.effects[0].element); -s.setStyle(_5ec.effects[0].element,_5ea); -}},_5e7||{}); -return new v.Parallel([new v.Scale(_5e6,200,{sync:true,scaleFromCenter:true,scaleContent:true,restoreAfterFinish:true}),new v.Opacity(_5e6,{sync:true,to:0})],_5e7); -}; -MochiKit.Visual.blindUp=function(_5ed,_5ee){ -var d=MochiKit.DOM; -_5ed=d.getElement(_5ed); -var _5f0=d.makeClipping(_5ed); -_5ee=MochiKit.Base.update({scaleContent:false,scaleX:false,restoreAfterFinish:true,afterFinishInternal:function(_5f1){ -MochiKit.Style.hideElement(_5f1.element); -d.undoClipping(_5f1.element,_5f0); -}},_5ee||{}); -return new MochiKit.Visual.Scale(_5ed,0,_5ee); -}; -MochiKit.Visual.blindDown=function(_5f2,_5f3){ -var d=MochiKit.DOM; -var s=MochiKit.Style; -_5f2=d.getElement(_5f2); -var _5f6=s.getElementDimensions(_5f2); -var _5f7; -_5f3=MochiKit.Base.update({scaleContent:false,scaleX:false,scaleFrom:0,scaleMode:{originalHeight:_5f6.h,originalWidth:_5f6.w},restoreAfterFinish:true,afterSetupInternal:function(_5f8){ -_5f7=d.makeClipping(_5f8.element); -s.setStyle(_5f8.element,{height:"0px"}); -s.showElement(_5f8.element); -},afterFinishInternal:function(_5f9){ -d.undoClipping(_5f9.element,_5f7); -}},_5f3||{}); -return new MochiKit.Visual.Scale(_5f2,100,_5f3); -}; -MochiKit.Visual.switchOff=function(_5fa,_5fb){ -var d=MochiKit.DOM; -_5fa=d.getElement(_5fa); -var _5fd=_5fa.style.opacity||""; -var _5fe; -var _5fb=MochiKit.Base.update({duration:0.3,scaleFromCenter:true,scaleX:false,scaleContent:false,restoreAfterFinish:true,beforeSetupInternal:function(_5ff){ -d.makePositioned(_5ff.element); -_5fe=d.makeClipping(_5ff.element); -},afterFinishInternal:function(_600){ -MochiKit.Style.hideElement(_600.element); -d.undoClipping(_600.element,_5fe); -d.undoPositioned(_600.element); -MochiKit.Style.setStyle(_600.element,{opacity:_5fd}); -}},_5fb||{}); -var v=MochiKit.Visual; -return new v.appear(_5fa,{duration:0.4,from:0,transition:v.Transitions.flicker,afterFinishInternal:function(_602){ -new v.Scale(_602.element,1,_5fb); -}}); -}; -MochiKit.Visual.dropOut=function(_603,_604){ -var d=MochiKit.DOM; -var s=MochiKit.Style; -_603=d.getElement(_603); -var _607={top:s.getStyle(_603,"top"),left:s.getStyle(_603,"left"),opacity:_603.style.opacity||""}; -_604=MochiKit.Base.update({duration:0.5,beforeSetupInternal:function(_608){ -d.makePositioned(_608.effects[0].element); -},afterFinishInternal:function(_609){ -s.hideElement(_609.effects[0].element); -d.undoPositioned(_609.effects[0].element); -s.setStyle(_609.effects[0].element,_607); -}},_604||{}); -var v=MochiKit.Visual; -return new v.Parallel([new v.Move(_603,{x:0,y:100,sync:true}),new v.Opacity(_603,{sync:true,to:0})],_604); -}; -MochiKit.Visual.shake=function(_60b,_60c){ -var d=MochiKit.DOM; -var v=MochiKit.Visual; -var s=MochiKit.Style; -_60b=d.getElement(_60b); -_60c=MochiKit.Base.update({x:-20,y:0,duration:0.05,afterFinishInternal:function(_610){ -d.undoPositioned(_610.element); -s.setStyle(_610.element,_611); -}},_60c||{}); -var _611={top:s.getStyle(_60b,"top"),left:s.getStyle(_60b,"left")}; -return new v.Move(_60b,{x:20,y:0,duration:0.05,afterFinishInternal:function(_612){ -new v.Move(_612.element,{x:-40,y:0,duration:0.1,afterFinishInternal:function(_613){ -new v.Move(_613.element,{x:40,y:0,duration:0.1,afterFinishInternal:function(_614){ -new v.Move(_614.element,{x:-40,y:0,duration:0.1,afterFinishInternal:function(_615){ -new v.Move(_615.element,{x:40,y:0,duration:0.1,afterFinishInternal:function(_616){ -new v.Move(_616.element,_60c); -}}); -}}); -}}); -}}); -}}); -}; -MochiKit.Visual.slideDown=function(_617,_618){ -var d=MochiKit.DOM; -var b=MochiKit.Base; -var s=MochiKit.Style; -_617=d.getElement(_617); -if(!_617.firstChild){ -throw "MochiKit.Visual.slideDown must be used on a element with a child"; -} -d.removeEmptyTextNodes(_617); -var _61c=s.getStyle(_617.firstChild,"bottom")||0; -var _61d=s.getElementDimensions(_617); -var _61e; -_618=b.update({scaleContent:false,scaleX:false,scaleFrom:0,scaleMode:{originalHeight:_61d.h,originalWidth:_61d.w},restoreAfterFinish:true,afterSetupInternal:function(_61f){ -d.makePositioned(_61f.element); -d.makePositioned(_61f.element.firstChild); -if(/Opera/.test(navigator.userAgent)){ -s.setStyle(_61f.element,{top:""}); -} -_61e=d.makeClipping(_61f.element); -s.setStyle(_61f.element,{height:"0px"}); -s.showElement(_61f.element); -},afterUpdateInternal:function(_620){ -s.setStyle(_620.element.firstChild,{bottom:(_620.dims[0]-_620.element.clientHeight)+"px"}); -},afterFinishInternal:function(_621){ -d.undoClipping(_621.element,_61e); -if(/MSIE/.test(navigator.userAgent)){ -d.undoPositioned(_621.element); -d.undoPositioned(_621.element.firstChild); -}else{ -d.undoPositioned(_621.element.firstChild); -d.undoPositioned(_621.element); -} -s.setStyle(_621.element.firstChild,{bottom:_61c}); -}},_618||{}); -return new MochiKit.Visual.Scale(_617,100,_618); -}; -MochiKit.Visual.slideUp=function(_622,_623){ -var d=MochiKit.DOM; -var b=MochiKit.Base; -var s=MochiKit.Style; -_622=d.getElement(_622); -if(!_622.firstChild){ -throw "MochiKit.Visual.slideUp must be used on a element with a child"; -} -d.removeEmptyTextNodes(_622); -var _627=s.getStyle(_622.firstChild,"bottom"); -var _628; -_623=b.update({scaleContent:false,scaleX:false,scaleMode:"box",scaleFrom:100,restoreAfterFinish:true,beforeStartInternal:function(_629){ -d.makePositioned(_629.element); -d.makePositioned(_629.element.firstChild); -if(/Opera/.test(navigator.userAgent)){ -s.setStyle(_629.element,{top:""}); -} -_628=d.makeClipping(_629.element); -s.showElement(_629.element); -},afterUpdateInternal:function(_62a){ -s.setStyle(_62a.element.firstChild,{bottom:(_62a.dims[0]-_62a.element.clientHeight)+"px"}); -},afterFinishInternal:function(_62b){ -s.hideElement(_62b.element); -d.undoClipping(_62b.element,_628); -d.undoPositioned(_62b.element.firstChild); -d.undoPositioned(_62b.element); -s.setStyle(_62b.element.firstChild,{bottom:_627}); -}},_623||{}); -return new MochiKit.Visual.Scale(_622,0,_623); -}; -MochiKit.Visual.squish=function(_62c,_62d){ -var d=MochiKit.DOM; -var b=MochiKit.Base; -var _630; -_62d=b.update({restoreAfterFinish:true,beforeSetupInternal:function(_631){ -_630=d.makeClipping(_631.element); -},afterFinishInternal:function(_632){ -MochiKit.Style.hideElement(_632.element); -d.undoClipping(_632.element,_630); -}},_62d||{}); -return new MochiKit.Visual.Scale(_62c,/Opera/.test(navigator.userAgent)?1:0,_62d); -}; -MochiKit.Visual.grow=function(_633,_634){ -var d=MochiKit.DOM; -var v=MochiKit.Visual; -var s=MochiKit.Style; -_633=d.getElement(_633); -_634=MochiKit.Base.update({direction:"center",moveTransition:v.Transitions.sinoidal,scaleTransition:v.Transitions.sinoidal,opacityTransition:v.Transitions.full},_634||{}); -var _638={top:_633.style.top,left:_633.style.left,height:_633.style.height,width:_633.style.width,opacity:_633.style.opacity||""}; -var dims=s.getElementDimensions(_633); -var _63a,_63b; -var _63c,_63d; -switch(_634.direction){ -case "top-left": -_63a=_63b=_63c=_63d=0; -break; -case "top-right": -_63a=dims.w; -_63b=_63d=0; -_63c=-dims.w; -break; -case "bottom-left": -_63a=_63c=0; -_63b=dims.h; -_63d=-dims.h; -break; -case "bottom-right": -_63a=dims.w; -_63b=dims.h; -_63c=-dims.w; -_63d=-dims.h; -break; -case "center": -_63a=dims.w/2; -_63b=dims.h/2; -_63c=-dims.w/2; -_63d=-dims.h/2; -break; -} -var _63e=MochiKit.Base.update({beforeSetupInternal:function(_63f){ -s.setStyle(_63f.effects[0].element,{height:"0px"}); -s.showElement(_63f.effects[0].element); -},afterFinishInternal:function(_640){ -d.undoClipping(_640.effects[0].element); -d.undoPositioned(_640.effects[0].element); -s.setStyle(_640.effects[0].element,_638); -}},_634||{}); -return new v.Move(_633,{x:_63a,y:_63b,duration:0.01,beforeSetupInternal:function(_641){ -s.hideElement(_641.element); -d.makeClipping(_641.element); -d.makePositioned(_641.element); -},afterFinishInternal:function(_642){ -new v.Parallel([new v.Opacity(_642.element,{sync:true,to:1,from:0,transition:_634.opacityTransition}),new v.Move(_642.element,{x:_63c,y:_63d,sync:true,transition:_634.moveTransition}),new v.Scale(_642.element,100,{scaleMode:{originalHeight:dims.h,originalWidth:dims.w},sync:true,scaleFrom:/Opera/.test(navigator.userAgent)?1:0,transition:_634.scaleTransition,restoreAfterFinish:true})],_63e); -}}); -}; -MochiKit.Visual.shrink=function(_643,_644){ -var d=MochiKit.DOM; -var v=MochiKit.Visual; -var s=MochiKit.Style; -_643=d.getElement(_643); -_644=MochiKit.Base.update({direction:"center",moveTransition:v.Transitions.sinoidal,scaleTransition:v.Transitions.sinoidal,opacityTransition:v.Transitions.none},_644||{}); -var _648={top:_643.style.top,left:_643.style.left,height:_643.style.height,width:_643.style.width,opacity:_643.style.opacity||""}; -var dims=s.getElementDimensions(_643); -var _64a,_64b; -switch(_644.direction){ -case "top-left": -_64a=_64b=0; -break; -case "top-right": -_64a=dims.w; -_64b=0; -break; -case "bottom-left": -_64a=0; -_64b=dims.h; -break; -case "bottom-right": -_64a=dims.w; -_64b=dims.h; -break; -case "center": -_64a=dims.w/2; -_64b=dims.h/2; -break; -} -var _64c; -var _64d=MochiKit.Base.update({beforeStartInternal:function(_64e){ -_64c=d.makePositioned(_64e.effects[0].element); -d.makeClipping(_64e.effects[0].element); -},afterFinishInternal:function(_64f){ -s.hideElement(_64f.effects[0].element); -d.undoClipping(_64f.effects[0].element,_64c); -d.undoPositioned(_64f.effects[0].element); -s.setStyle(_64f.effects[0].element,_648); -}},_644||{}); -return new v.Parallel([new v.Opacity(_643,{sync:true,to:0,from:1,transition:_644.opacityTransition}),new v.Scale(_643,/Opera/.test(navigator.userAgent)?1:0,{sync:true,transition:_644.scaleTransition,restoreAfterFinish:true}),new v.Move(_643,{x:_64a,y:_64b,sync:true,transition:_644.moveTransition})],_64d); -}; -MochiKit.Visual.pulsate=function(_650,_651){ -var d=MochiKit.DOM; -var v=MochiKit.Visual; -var b=MochiKit.Base; -var _655=d.getElement(_650).style.opacity||""; -_651=b.update({duration:3,from:0,afterFinishInternal:function(_656){ -MochiKit.Style.setStyle(_656.element,{opacity:_655}); -}},_651||{}); -var _657=_651.transition||v.Transitions.sinoidal; -var _658=b.bind(function(pos){ -return _657(1-v.Transitions.pulse(pos)); -},_657); -b.bind(_658,_657); -return new v.Opacity(_650,b.update({transition:_658},_651)); -}; -MochiKit.Visual.fold=function(_65a,_65b){ -var d=MochiKit.DOM; -var v=MochiKit.Visual; -var s=MochiKit.Style; -_65a=d.getElement(_65a); -var _65f={top:_65a.style.top,left:_65a.style.left,width:_65a.style.width,height:_65a.style.height}; -var _660=d.makeClipping(_65a); -_65b=MochiKit.Base.update({scaleContent:false,scaleX:false,afterFinishInternal:function(_661){ -new v.Scale(_65a,1,{scaleContent:false,scaleY:false,afterFinishInternal:function(_662){ -s.hideElement(_662.element); -d.undoClipping(_662.element,_660); -s.setStyle(_662.element,_65f); -}}); -}},_65b||{}); -return new v.Scale(_65a,5,_65b); -}; -MochiKit.Visual.Color=MochiKit.Color.Color; -MochiKit.Visual.getElementsComputedStyle=MochiKit.DOM.computedStyle; -MochiKit.Visual.__new__=function(){ -var m=MochiKit.Base; -m.nameFunctions(this); -this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)}; -}; -MochiKit.Visual.EXPORT=["roundElement","roundClass","tagifyText","multiple","toggle","Base","Parallel","Opacity","Move","Scale","Highlight","ScrollTo","fade","appear","puff","blindUp","blindDown","switchOff","dropOut","shake","slideDown","slideUp","squish","grow","shrink","pulsate","fold"]; -MochiKit.Visual.EXPORT_OK=["PAIRS"]; -MochiKit.Visual.__new__(); -MochiKit.Base._exportSymbols(this,MochiKit.Visual); -if(typeof (MochiKit)=="undefined"){ -MochiKit={}; -} -if(typeof (MochiKit.MochiKit)=="undefined"){ -MochiKit.MochiKit={}; -} -MochiKit.MochiKit.NAME="MochiKit.MochiKit"; -MochiKit.MochiKit.VERSION="1.4"; -MochiKit.MochiKit.__repr__=function(){ -return "["+this.NAME+" "+this.VERSION+"]"; -}; -MochiKit.MochiKit.toString=function(){ -return this.__repr__(); -}; -MochiKit.MochiKit.SUBMODULES=["Base","Iter","Logging","DateTime","Format","Async","DOM","Style","LoggingPane","Color","Signal","Visual"]; -if(typeof (JSAN)!="undefined"||typeof (dojo)!="undefined"){ -if(typeof (dojo)!="undefined"){ -dojo.provide("MochiKit.MochiKit"); -dojo.require("MochiKit.*"); -} -if(typeof (JSAN)!="undefined"){ -(function(lst){ -for(var i=0;i"); -} -} -})(); -} - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/README.txt b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/README.txt deleted file mode 100755 index c0bf337b5..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/README.txt +++ /dev/null @@ -1,113 +0,0 @@ - ---------------- - mochitest README - ---------------- - -Steps to get started: - - 1.) Run the runtests.pl script to start the server. - - Currently, the test script automatically determines the location - of *Firefox*. - - 2.) gen_template.pl will generate test templates for HTML, XUL, and XHTML. - Read the comment at the top of the file for usage instructions. - - 3.) Write a test. - - -Example test: - - - - - - Test for Bug 345656 - - - - - -

    - -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/browser-harness.xul b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/browser-harness.xul deleted file mode 100755 index cea51016b..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/browser-harness.xul +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - - - - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug277724_iframe2.xhtml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug277724_iframe2.xhtml deleted file mode 100755 index 14423aa06..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug277724_iframe2.xhtml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug340800_iframe.txt b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug340800_iframe.txt deleted file mode 100755 index 369dfe744..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug340800_iframe.txt +++ /dev/null @@ -1,4 +0,0 @@ -Line 1. -Line 2. -Line 3. -Line 4. diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug344830_testembed.svg b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug344830_testembed.svg deleted file mode 100755 index 5dd98abe6..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/bug344830_testembed.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - -Kibology - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/chrome.template.txt b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/chrome.template.txt deleted file mode 100755 index 4f36e16d0..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/chrome.template.txt +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/harness.css b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/harness.css deleted file mode 100755 index 3c941ecf3..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/harness.css +++ /dev/null @@ -1,97 +0,0 @@ -body { - margin: 0; - padding: 0; - font-family: Verdana, Helvetica, Arial, sans-serif; - font-size: 11px; - background-color: #fff; -} - -#xulharness { - position: fixed; - top: 30px; - bottom: 0; - right: 0px; - left: 0px; - overflow:auto; -} - -th, td { - font-family: Verdana, Helvetica, Arial, sans-serif; - font-size: 11px; - padding-left: .2em; - padding-right: .2em; - text-align: left; - height: 15px; - margin: 0; -} - -li, li.test, li.dir { - padding: 0; - line-height: 15px; -} - -ul { - list-style: none; - margin: 0; - margin-left: 1em; - padding: 0; - border: none; -} - -ul.top { - padding: 0; - padding-left: 1em; -} - -table#test-table { - background: #f6f6f6; - margin-left: 1em; - padding: 0; -} - -div.container { - margin: 1em; -} - -a#runtests, a { - color: #3333cc; -} - -li.non-test a { - color: #999999; -} - -small a { - color: #000; -} - -.clear { clear: both;} -.invisible { display: none;} - -div.status { - min-height: 170px; - width: 100%; - border: 1px solid #666; -} -div.frameholder { - min-height: 170px; - min-width: 500px; - background-color: #ffffff; -} - -div#current-test { - margin-top: 1em; - margin-bottom: 1em; -} - -#indicator { - color: white; - background-color: green; - padding: .5em; - margin: 0; -} - -#pass, #fail { - margin: 0; - padding: .5em; -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/nnc_lockup.gif b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/nnc_lockup.gif deleted file mode 100755 index f746bb71d9283a4502e7164861e93325a3e0567b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 732 zcmV<20weuLNk%w1VS4}>0J8u9|NsBY%*>h0%$b>)W|^60W@a-pGXR;H0A`s0W@Z30 zW&krY000000000000000EC2ui0DAx#000F4aLGxlr6B9gyZ>M)j-+>;=u)n1>$;R8 z$@Eg!*sJgSYX7twaQ2gU0>}h|wCIHs5n9p?Qm%s`# ziMG5A7+~cp4jIfChgk&%eQJamRaFRa83J*Kba8T3UwmRyWh{J!g^_X^jF5^1pmcg* zf(9CUm3n9#nMX;mu&p1lwX_O}iJ^;ey8xnzRSA;?mjHWa8OD5Oe9x-`&x0Dwf5_Gh z2DGLDg2x-#T8#<62gCpZy2J$QiIW4;sL0nD-v-}k)5p@&8{d59W#iMz6hLqQ?&Sl3 zz#Rf$4Hq?h7_6M4QVa_0VUkQkKQ!O}rtD#`#GW=ZW|(Q*vSlRzX3o0RG35~qNH74( zHPi{y8}pO$*bEc*1>Gc4hBJs z%6elC(u|9<+NH?T1~eRu;46W_We;db-Su$VO7h_D!ABe4WDnM0BebOLFI3J_`yDk{ z+rWU-sl{9 zw)9 - - - - Test for Bug {BUGNUMBER} - - - - - -Mozilla Bug {BUGNUMBER} -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xhtml.template.txt b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xhtml.template.txt deleted file mode 100755 index 9046c62c0..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xhtml.template.txt +++ /dev/null @@ -1,31 +0,0 @@ - - - - Test for Bug {BUGNUMBER} - - - - - -Mozilla Bug {BUGNUMBER} -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xul.template.txt b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xul.template.txt deleted file mode 100755 index 07fb31456..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/static/xul.template.txt +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/FakeJSAN.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/FakeJSAN.js deleted file mode 100755 index 639519ecf..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/FakeJSAN.js +++ /dev/null @@ -1,40 +0,0 @@ -var JSAN = { - global: this, - use: function (module, symbols) { - var components = module.split(/\./); - var fn = components.join('/') + '.js'; - var o = JSAN.global; - var i, c; - for (i = 0; i < components.length; i++) { - o = o[components[i]]; - if (typeof(o) == 'undefined') { - break; - } - } - if (typeof(o) != 'undefined') { - return o; - } - - load(fn); - o = JSAN.global; - for (i = 0; i < components.length; i++) { - o = o[components[i]]; - if (typeof(o) == 'undefined') { - return undefined; - } - } - if (!symbols) { - var tags = o.EXPORT_TAGS; - if (tags) { - symbols = tags[':common'] || tags[':all']; - } - } - if (symbols) { - for (i = 0; i < symbols.length; i++) { - c = symbols[i]; - JSAN.global[c] = o[c]; - } - } - return o; - } -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/Makefile.in b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/Makefile.in deleted file mode 100755 index fcb5bc1cc..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/Makefile.in +++ /dev/null @@ -1,81 +0,0 @@ -# -# ***** BEGIN LICENSE BLOCK ***** -# Version: MPL 1.1/GPL 2.0/LGPL 2.1 -# -# The contents of this file are subject to the Mozilla Public License Version -# 1.1 (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# http://www.mozilla.org/MPL/ -# -# Software distributed under the License is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -# for the specific language governing rights and limitations under the -# License. -# -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# -# Alternatively, the contents of this file may be used under the terms of -# either the GNU General Public License Version 2 or later (the "GPL"), or -# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -# in which case the provisions of the GPL or the LGPL are applicable instead -# of those above. If you wish to allow use of your version of this file only -# under the terms of either the GPL or the LGPL, and not to allow others to -# use your version of this file under the terms of the MPL, indicate your -# decision by deleting the provisions above and replace them with the notice -# and other provisions required by the GPL or the LGPL. If you do not delete -# the provisions above, a recipient may use your version of this file under -# the terms of any one of the MPL, the GPL or the LGPL. -# -# ***** END LICENSE BLOCK ***** - -DEPTH = ../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ -relativesrcdir = testing/mochitest/tests - -include $(DEPTH)/config/autoconf.mk - -DIRS = SimpleTest \ - browser \ - $(NULL) - -include $(topsrcdir)/config/rules.mk - -_TEST_FILES = test_MochiKit-Async.html \ - test_MochiKit-Base.html \ - test_MochiKit-DateTime.html \ - test_MochiKit-DOM.html \ - test_MochiKit-Style.html \ - test_MochiKit-Format.html \ - test_MochiKit-Iter.html \ - test_MochiKit-Logging.html \ - test_MochiKit-MochiKit.html \ - test_MochiKit-Color.html \ - test_MochiKit-Signal.html \ - test_Base.js \ - test_Color.js \ - test_DateTime.js \ - test_DragAndDrop.js \ - test_Format.js \ - test_Iter.js \ - test_Logging.js \ - test_Signal.js \ - cli.js \ - FakeJSAN.js \ - standalone.js \ - test_MochiKit-Async.json \ - $(NULL) - -# Copy the MochiKit tests into subdirectory, so the top level is all dirs -# in the test screen. We leave them in tests/ in the src tree to mirror -# the upstream MochiKit repository -libs:: $(_TEST_FILES) - $(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/$(relativesrcdir)/MochiKit_Unit_Tests diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/EventUtils.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/EventUtils.js deleted file mode 100755 index 04f255f61..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/EventUtils.js +++ /dev/null @@ -1,356 +0,0 @@ -/** - * EventUtils provides some utility methods for creating and sending DOM events. - * Current methods: - * sendMouseEvent - * sendChar - * sendString - * sendKey - */ - -/** - * Send a mouse event to the node with id aTarget. The "event" passed in to - * aEvent is just a JavaScript object with the properties set that the real - * mouse event object should have. This includes the type of the mouse event. - * E.g. to send an click event to the node with id 'node' you might do this: - * - * sendMouseEvent({type:'click'}, 'node'); - */ -function sendMouseEvent(aEvent, aTarget, aWindow) { - if (['click', 'mousedown', 'mouseup', 'mouseover', 'mouseout'].indexOf(aEvent.type) == -1) { - throw new Error("sendMouseEvent doesn't know about event type '"+aEvent.type+"'"); - } - - if (!aWindow) { - aWindow = window; - } - - // For events to trigger the UA's default actions they need to be "trusted" - netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite'); - - var event = aWindow.document.createEvent('MouseEvent'); - - var typeArg = aEvent.type; - var canBubbleArg = true; - var cancelableArg = true; - var viewArg = aWindow; - var detailArg = aEvent.detail || (aEvent.type == 'click' || - aEvent.type == 'mousedown' || - aEvent.type == 'mouseup' ? 1 : 0); - var screenXArg = aEvent.screenX || 0; - var screenYArg = aEvent.screenY || 0; - var clientXArg = aEvent.clientX || 0; - var clientYArg = aEvent.clientY || 0; - var ctrlKeyArg = aEvent.ctrlKey || false; - var altKeyArg = aEvent.altKey || false; - var shiftKeyArg = aEvent.shiftKey || false; - var metaKeyArg = aEvent.metaKey || false; - var buttonArg = aEvent.button || 0; - var relatedTargetArg = aEvent.relatedTarget || null; - - event.initMouseEvent(typeArg, canBubbleArg, cancelableArg, viewArg, detailArg, - screenXArg, screenYArg, clientXArg, clientYArg, - ctrlKeyArg, altKeyArg, shiftKeyArg, metaKeyArg, - buttonArg, relatedTargetArg); - - aWindow.document.getElementById(aTarget).dispatchEvent(event); -} - -/** - * Send the char aChar to the node with id aTarget. If aTarget is not - * provided, use "target". This method handles casing of chars (sends the - * right charcode, and sends a shift key for uppercase chars). No other - * modifiers are handled at this point. - * - * For now this method only works for English letters (lower and upper case) - * and the digits 0-9. - * - * Returns true if the keypress event was accepted (no calls to preventDefault - * or anything like that), false otherwise. - */ -function sendChar(aChar, aTarget) { - // DOM event charcodes match ASCII (JS charcodes) for a-zA-Z0-9. - var hasShift = (aChar == aChar.toUpperCase()); - var charCode = aChar.charCodeAt(0); - var keyCode = charCode; - if (!hasShift) { - // For lowercase letters, the keyCode is actually 32 less than the charCode - keyCode -= 0x20; - } - - return __doEventDispatch(aTarget, charCode, keyCode, hasShift); -} - -/** - * Send the string aStr to the node with id aTarget. If aTarget is not - * provided, use "target". - * - * For now this method only works for English letters (lower and upper case) - * and the digits 0-9. - */ -function sendString(aStr, aTarget) { - for (var i = 0; i < aStr.length; ++i) { - sendChar(aStr.charAt(i), aTarget); - } -} - -/** - * Send the non-character key aKey to the node with id aTarget. If aTarget is - * not provided, use "target". The name of the key should be a lowercase - * version of the part that comes after "DOM_VK_" in the KeyEvent constant - * name for this key. No modifiers are handled at this point. - * - * Returns true if the keypress event was accepted (no calls to preventDefault - * or anything like that), false otherwise. - */ -function sendKey(aKey, aTarget) { - keyName = "DOM_VK_" + aKey.toUpperCase(); - - if (!KeyEvent[keyName]) { - throw "Unknown key: " + keyName; - } - - return __doEventDispatch(aTarget, 0, KeyEvent[keyName], false); -} - -/** - * Actually perform event dispatch given a charCode, keyCode, and boolean for - * whether "shift" was pressed. Send the event to the node with id aTarget. If - * aTarget is not provided, use "target". - * - * Returns true if the keypress event was accepted (no calls to preventDefault - * or anything like that), false otherwise. - */ -function __doEventDispatch(aTarget, aCharCode, aKeyCode, aHasShift) { - if (aTarget === undefined) { - aTarget = "target"; - } - - // Make our events trusted - netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); - - var event = document.createEvent("KeyEvents"); - event.initKeyEvent("keydown", true, true, document.defaultView, - false, false, aHasShift, false, - aKeyCode, 0); - var accepted = $(aTarget).dispatchEvent(event); - - // Cancelling keydown cancels keypress too - if (accepted) { - event = document.createEvent("KeyEvents"); - if (aCharCode) { - event.initKeyEvent("keypress", true, true, document.defaultView, - false, false, aHasShift, false, - 0, aCharCode); - } else { - event.initKeyEvent("keypress", true, true, document.defaultView, - false, false, aHasShift, false, - aKeyCode, 0); - } - accepted = $(aTarget).dispatchEvent(event); - } - - // Always send keyup - var event = document.createEvent("KeyEvents"); - event.initKeyEvent("keyup", true, true, document.defaultView, - false, false, aHasShift, false, - aKeyCode, 0); - $(aTarget).dispatchEvent(event); - return accepted; -} - -/** - * Parse the key modifier flags from aEvent. Used to share code between - * synthesizeMouse and synthesizeKey. - */ -function _parseModifiers(aEvent) -{ - const masks = Components.interfaces.nsIDOMNSEvent; - var mval = 0; - if (aEvent.shiftKey) - mval |= masks.SHIFT_MASK; - if (aEvent.ctrlKey) - mval |= masks.CONTROL_MASK; - if (aEvent.altKey) - mval |= masks.ALT_MASK; - if (aEvent.metaKey) - mval |= masks.META_MASK; - if (aEvent.accelKey) - mval |= (navigator.platform.indexOf("Mac") >= 0) ? masks.META_MASK : - masks.CONTROL_MASK; - - return mval; -} - -/** - * Synthesize a mouse event on a target. The actual client point is determined - * by taking the aTarget's client box and offseting it by aOffsetX and - * aOffsetY. This allows mouse clicks to be simulated by calling this method. - * - * aEvent is an object which may contain the properties: - * shiftKey, ctrlKey, altKey, metaKey, accessKey, type - * - * If the type is specified, an mouse event of that type is fired. Otherwise, - * a mousedown followed by a mouse up is performed. - * - * aWindow is optional, and defaults to the current window object. - */ -function synthesizeMouse(aTarget, aOffsetX, aOffsetY, aEvent, aWindow) -{ - netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect'); - - if (!aWindow) - aWindow = window; - - var utils = aWindow.QueryInterface(Components.interfaces.nsIInterfaceRequestor). - getInterface(Components.interfaces.nsIDOMWindowUtils); - if (utils) { - var button = aEvent.button || 0; - var clickCount = aEvent.clickCount || 1; - var modifiers = _parseModifiers(aEvent); - - var left = aTarget.boxObject.x; - var top = aTarget.boxObject.y; - - if (aEvent.type) { - utils.sendMouseEvent(aEvent.type, left + aOffsetX, top + aOffsetY, button, clickCount, modifiers); - } - else { - utils.sendMouseEvent("mousedown", left + aOffsetX, top + aOffsetY, button, clickCount, modifiers); - utils.sendMouseEvent("mouseup", left + aOffsetX, top + aOffsetY, button, clickCount, modifiers); - } - } -} - -/** - * Synthesize a key event. It is targeted at whatever would be targeted by an - * actual keypress by the user, typically the focused element. - * - * aKey should be either a character or a keycode starting with VK_ such as - * VK_ENTER. - * - * aEvent is an object which may contain the properties: - * shiftKey, ctrlKey, altKey, metaKey, accessKey, type - * - * If the type is specified, a key event of that type is fired. Otherwise, - * a keydown, a keypress and then a keyup event are fired in sequence. - * - * aWindow is optional, and defaults to the current window object. - */ -function synthesizeKey(aKey, aEvent, aWindow) -{ - netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect'); - - if (!aWindow) - aWindow = window; - - var utils = aWindow.QueryInterface(Components.interfaces.nsIInterfaceRequestor). - getInterface(Components.interfaces.nsIDOMWindowUtils); - if (utils) { - var keyCode = 0, charCode = 0; - if (aKey.indexOf("VK_") == 0) - keyCode = KeyEvent["DOM_" + aKey]; - else - charCode = aKey.charCodeAt(0); - - var modifiers = _parseModifiers(aEvent); - - if (aEvent.type) { - utils.sendKeyEvent(aEvent.type, keyCode, charCode, modifiers); - } - else { - utils.sendKeyEvent("keydown", keyCode, charCode, modifiers); - utils.sendKeyEvent("keypress", keyCode, charCode, modifiers); - utils.sendKeyEvent("keyup", keyCode, charCode, modifiers); - } - } -} - -var _gSeenEvent = false; - -/** - * Indicate that an event with an original target of aExpectedTarget and - * a type of aExpectedEvent is expected to be fired, or not expected to - * be fired. - */ -function _expectEvent(aExpectedTarget, aExpectedEvent, aTestName) -{ - if (!aExpectedTarget || !aExpectedEvent) - return null; - - _gSeenEvent = false; - - var type = (aExpectedEvent.charAt(0) == "!") ? - aExpectedEvent.substring(1) : aExpectedEvent; - var eventHandler = function(event) { - var epassed = (!_gSeenEvent && event.originalTarget == aExpectedTarget && - event.type == type); - is(epassed, true, aTestName + " " + type + " event target " + (_gSeenEvent ? "twice" : "")); - _gSeenEvent = true; - }; - - aExpectedTarget.addEventListener(type, eventHandler, false); - return eventHandler; -} - -/** - * Check if the event was fired or not. The event handler aEventHandler - * will be removed. - */ -function _checkExpectedEvent(aExpectedTarget, aExpectedEvent, aEventHandler, aTestName) -{ - if (aEventHandler) { - var expectEvent = (aExpectedEvent.charAt(0) != "!"); - var type = expectEvent ? aExpectedEvent : aExpectedEvent.substring(1); - aExpectedTarget.removeEventListener(type, aEventHandler, false); - var desc = type + " event"; - if (!expectEvent) - desc += " not"; - is(_gSeenEvent, expectEvent, aTestName + " " + desc + " fired"); - } - - _gSeenEvent = false; -} - -/** - * Similar to synthesizeMouse except that a test is performed to see if an - * event is fired at the right target as a result. - * - * aExpectedTarget - the expected originalTarget of the event. - * aExpectedEvent - the expected type of the event, such as 'select'. - * aTestName - the test name when outputing results - * - * To test that an event is not fired, use an expected type preceded by an - * exclamation mark, such as '!select'. This might be used to test that a - * click on a disabled element doesn't fire certain events for instance. - * - * aWindow is optional, and defaults to the current window object. - */ -function synthesizeMouseExpectEvent(aTarget, aOffsetX, aOffsetY, aEvent, - aExpectedTarget, aExpectedEvent, aTestName, - aWindow) -{ - var eventHandler = _expectEvent(aExpectedTarget, aExpectedEvent, aTestName); - synthesizeMouse(aTarget, aOffsetX, aOffsetY, aEvent, aWindow); - _checkExpectedEvent(aExpectedTarget, aExpectedEvent, eventHandler, aTestName); -} - -/** - * Similar to synthesizeKey except that a test is performed to see if an - * event is fired at the right target as a result. - * - * aExpectedTarget - the expected originalTarget of the event. - * aExpectedEvent - the expected type of the event, such as 'select'. - * aTestName - the test name when outputing results - * - * To test that an event is not fired, use an expected type preceded by an - * exclamation mark, such as '!select'. - * - * aWindow is optional, and defaults to the current window object. - */ -function synthesizeKeyExpectEvent(key, aEvent, aExpectedTarget, aExpectedEvent, - aTestName, aWindow) -{ - var eventHandler = _expectEvent(aExpectedTarget, aExpectedEvent, aTestName); - synthesizeKey(key, aEvent, aWindow); - _checkExpectedEvent(aExpectedTarget, aExpectedEvent, eventHandler, aTestName); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/Makefile.in b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/Makefile.in deleted file mode 100755 index 1733130d2..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/Makefile.in +++ /dev/null @@ -1,58 +0,0 @@ -# -# ***** BEGIN LICENSE BLOCK ***** -# Version: MPL 1.1/GPL 2.0/LGPL 2.1 -# -# The contents of this file are subject to the Mozilla Public License Version -# 1.1 (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# http://www.mozilla.org/MPL/ -# -# Software distributed under the License is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -# for the specific language governing rights and limitations under the -# License. -# -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# -# Alternatively, the contents of this file may be used under the terms of -# either the GNU General Public License Version 2 or later (the "GPL"), or -# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -# in which case the provisions of the GPL or the LGPL are applicable instead -# of those above. If you wish to allow use of your version of this file only -# under the terms of either the GPL or the LGPL, and not to allow others to -# use your version of this file under the terms of the MPL, indicate your -# decision by deleting the provisions above and replace them with the notice -# and other provisions required by the GPL or the LGPL. If you do not delete -# the provisions above, a recipient may use your version of this file under -# the terms of any one of the MPL, the GPL or the LGPL. -# -# ***** END LICENSE BLOCK ***** - -DEPTH = ../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ -relativesrcdir = testing/mochitest/tests/SimpleTest - -include $(DEPTH)/config/autoconf.mk -include $(topsrcdir)/config/rules.mk - -_SIMPLETEST_FILES = MozillaFileLogger.js \ - quit.js \ - SimpleTest.js \ - test.css \ - TestRunner.js \ - setup.js \ - EventUtils.js \ - $(NULL) - -libs:: $(_SIMPLETEST_FILES) - $(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/$(relativesrcdir) - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/MozillaFileLogger.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/MozillaFileLogger.js deleted file mode 100755 index 4bc1cff9c..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/MozillaFileLogger.js +++ /dev/null @@ -1,67 +0,0 @@ -/** - * MozillaFileLogger, a log listener that can write to a local file. - */ -try { - netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); - const Cc = Components.classes; - const Ci = Components.interfaces; - const FOSTREAM_CID = "@mozilla.org/network/file-output-stream;1"; - const LF_CID = "@mozilla.org/file/local;1"; - - // File status flags. It is a bitwise OR of the following bit flags. - // Only one of the first three flags below may be used. - const PR_READ_ONLY = 0x01; // Open for reading only. - const PR_WRITE_ONLY = 0x02; // Open for writing only. - const PR_READ_WRITE = 0x04; // Open for reading and writing. - - // If the file does not exist, the file is created. - // If the file exists, this flag has no effect. - const PR_CREATE_FILE = 0x08; - - // The file pointer is set to the end of the file prior to each write. - const PR_APPEND = 0x10; - - // If the file exists, its length is truncated to 0. - const PR_TRUNCATE = 0x20; - - // If set, each write will wait for both the file data - // and file status to be physically updated. - const PR_SYNC = 0x40; - - // If the file does not exist, the file is created. If the file already - // exists, no action and NULL is returned. - const PR_EXCL = 0x80; -} catch (ex) { - // probably not running in the test harness -} - -/** Init the file logger with the absolute path to the file. - It will create and append if the file already exists **/ -var MozillaFileLogger = {} - -MozillaFileLogger.init = function(path) { - netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); - MozillaFileLogger._file = Cc[LF_CID].createInstance(Ci.nsILocalFile); - MozillaFileLogger._file.initWithPath(path); - MozillaFileLogger._foStream = Cc[FOSTREAM_CID].createInstance(Ci.nsIFileOutputStream); - MozillaFileLogger._foStream.init(this._file, PR_WRITE_ONLY | PR_CREATE_FILE | PR_APPEND, - 0664, 0); -} - -MozillaFileLogger.getLogCallback = function() { - return function (msg) { - netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); - var data = msg.num + " " + msg.level + " " + msg.info.join(' ') + "\n"; - MozillaFileLogger._foStream.write(data, data.length); - if (data.indexOf("SimpleTest FINISH") >= 0) { - MozillaFileLogger.close(); - } - } -} - -MozillaFileLogger.close = function() { - netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); - MozillaFileLogger._foStream.close(); - MozillaFileLogger._foStream = null; - MozillaFileLogger._file = null; -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/SimpleTest.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/SimpleTest.js deleted file mode 100755 index ef90cd117..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/SimpleTest.js +++ /dev/null @@ -1,461 +0,0 @@ -/** - * SimpleTest, a partial Test.Simple/Test.More API compatible test library. - * - * Why? - * - * Test.Simple doesn't work on IE < 6. - * TODO: - * * Support the Test.Simple API used by MochiKit, to be able to test MochiKit - * itself against IE 5.5 - * -**/ - -if (typeof(SimpleTest) == "undefined") { - var SimpleTest = {}; -} - -var parentRunner = null; -if (typeof(parent) != "undefined" && parent.TestRunner) { - parentRunner = parent.TestRunner; -} else if (parent && parent.wrappedJSObject && - parent.wrappedJSObject.TestRunner) { - parentRunner = parent.wrappedJSObject.TestRunner; -} - -// Check to see if the TestRunner is present and has logging -if (parentRunner) { - SimpleTest._logEnabled = parentRunner.logEnabled; -} - -SimpleTest._tests = []; -SimpleTest._stopOnLoad = true; - -/** - * Something like assert. -**/ -SimpleTest.ok = function (condition, name, diag) { - var test = {'result': !!condition, 'name': name, 'diag': diag || ""}; - if (SimpleTest._logEnabled) - SimpleTest._logResult(test, "PASS", "FAIL"); - SimpleTest._tests.push(test); -}; - -/** - * Roughly equivalent to ok(a==b, name) -**/ -SimpleTest.is = function (a, b, name) { - var repr = MochiKit.Base.repr; - SimpleTest.ok(a == b, name, "got " + repr(a) + ", expected " + repr(b)); -}; - -SimpleTest.isnot = function (a, b, name) { - var repr = MochiKit.Base.repr; - SimpleTest.ok(a != b, name, "Didn't expect " + repr(a) + ", but got it."); -}; - -// --------------- Test.Builder/Test.More todo() ----------------- - -SimpleTest.todo = function(condition, name, diag) { - var test = {'result': !!condition, 'name': name, 'diag': diag || "", todo: true}; - if (SimpleTest._logEnabled) - SimpleTest._logResult(test, "TODO WORKED?", "TODO"); - SimpleTest._tests.push(test); -} - -SimpleTest._logResult = function(test, passString, failString) { - var msg = test.result ? passString : failString; - msg += " | " + test.name; - var url = ""; - if (parentRunner.currentTestURL) - url = " | " + parentRunner.currentTestURL; - - if (test.result) { - if (test.todo) - parentRunner.logger.error(msg + url) - else - parentRunner.logger.log(msg); - } else { - msg += " | " + test.diag; - if (test.todo) - parentRunner.logger.log(msg) - else - parentRunner.logger.error(msg + url); - } -} - -/** - * Copies of is and isnot with the call to ok replaced by a call to todo. -**/ - -SimpleTest.todo_is = function (a, b, name) { - var repr = MochiKit.Base.repr; - SimpleTest.todo(a == b, name, "got " + repr(a) + ", expected " + repr(b)); -}; - -SimpleTest.todo_isnot = function (a, b, name) { - var repr = MochiKit.Base.repr; - SimpleTest.todo(a != b, name, "Didn't expect " + repr(a) + ", but got it."); -}; - - -/** - * Makes a test report, returns it as a DIV element. -**/ -SimpleTest.report = function () { - var DIV = MochiKit.DOM.DIV; - var passed = 0; - var failed = 0; - var todo = 0; - var results = MochiKit.Base.map( - function (test) { - var cls, msg; - if (test.todo && !test.result) { - todo++; - cls = "test_todo" - msg = "todo - " + test.name + " " + test.diag; - } else if (test.result &&!test.todo) { - passed++; - cls = "test_ok"; - msg = "ok - " + test.name; - } else { - failed++; - cls = "test_not_ok"; - msg = "not ok - " + test.name + " " + test.diag; - } - return DIV({"class": cls}, msg); - }, - SimpleTest._tests - ); - var summary_class = ((failed == 0) ? 'all_pass' : 'some_fail'); - return DIV({'class': 'tests_report'}, - DIV({'class': 'tests_summary ' + summary_class}, - DIV({'class': 'tests_passed'}, "Passed: " + passed), - DIV({'class': 'tests_failed'}, "Failed: " + failed), - DIV({'class': 'tests_todo'}, "Todo: " + todo)), - results - ); -}; - -/** - * Toggle element visibility -**/ -SimpleTest.toggle = function(el) { - if (MochiKit.Style.computedStyle(el, 'display') == 'block') { - el.style.display = 'none'; - } else { - el.style.display = 'block'; - } -}; - -/** - * Toggle visibility for divs with a specific class. -**/ -SimpleTest.toggleByClass = function (cls, evt) { - var elems = getElementsByTagAndClassName('div', cls); - MochiKit.Base.map(SimpleTest.toggle, elems); - if (evt) - evt.preventDefault(); -}; - -/** - * Shows the report in the browser -**/ - -SimpleTest.showReport = function() { - var togglePassed = A({'href': '#'}, "Toggle passed tests"); - var toggleFailed = A({'href': '#'}, "Toggle failed tests"); - togglePassed.onclick = partial(SimpleTest.toggleByClass, 'test_ok'); - toggleFailed.onclick = partial(SimpleTest.toggleByClass, 'test_not_ok'); - var body = document.body; // Handles HTML documents - if (!body) { - // Do the XML thing - body = document.getElementsByTagNameNS("http://www.w3.org/1999/xhtml", - "body")[0] - } - var firstChild = body.childNodes[0]; - var addNode; - if (firstChild) { - addNode = function (el) { - body.insertBefore(el, firstChild); - }; - } else { - addNode = function (el) { - body.appendChild(el) - }; - } - addNode(togglePassed); - addNode(SPAN(null, " ")); - addNode(toggleFailed); - addNode(SimpleTest.report()); -}; - -/** - * Tells SimpleTest to don't finish the test when the document is loaded, - * useful for asynchronous tests. - * - * When SimpleTest.waitForExplicitFinish is called, - * explicit SimpleTest.finish() is required. -**/ -SimpleTest.waitForExplicitFinish = function () { - SimpleTest._stopOnLoad = false; -}; - -/** - * Executes a function shortly after the call, but lets the caller continue - * working (or finish). - */ -SimpleTest.executeSoon = function(aFunc) { - var tm = Components.classes["@mozilla.org/thread-manager;1"] - .getService(Components.interfaces.nsIThreadManager); - - tm.mainThread.dispatch({ - run: function() { - aFunc(); - } - }, Components.interfaces.nsIThread.DISPATCH_NORMAL); -} - -/** - * Talks to the TestRunner if being ran on a iframe and the parent has a - * TestRunner object. -**/ -SimpleTest.talkToRunner = function () { - if (parentRunner) { - parentRunner.testFinished(document); - } -}; - -/** - * Finishes the tests. This is automatically called, except when - * SimpleTest.waitForExplicitFinish() has been invoked. -**/ -SimpleTest.finish = function () { - SimpleTest.showReport(); - SimpleTest.talkToRunner(); -}; - - -addLoadEvent(function() { - if (SimpleTest._stopOnLoad) { - SimpleTest.finish(); - } -}); - -// --------------- Test.Builder/Test.More isDeeply() ----------------- - - -SimpleTest.DNE = {dne: 'Does not exist'}; -SimpleTest.LF = "\r\n"; -SimpleTest._isRef = function (object) { - var type = typeof(object); - return type == 'object' || type == 'function'; -}; - - -SimpleTest._deepCheck = function (e1, e2, stack, seen) { - var ok = false; - // Either they're both references or both not. - var sameRef = !(!SimpleTest._isRef(e1) ^ !SimpleTest._isRef(e2)); - if (e1 == null && e2 == null) { - ok = true; - } else if (e1 != null ^ e2 != null) { - ok = false; - } else if (e1 == SimpleTest.DNE ^ e2 == SimpleTest.DNE) { - ok = false; - } else if (sameRef && e1 == e2) { - // Handles primitives and any variables that reference the same - // object, including functions. - ok = true; - } else if (SimpleTest.isa(e1, 'Array') && SimpleTest.isa(e2, 'Array')) { - ok = SimpleTest._eqArray(e1, e2, stack, seen); - } else if (typeof e1 == "object" && typeof e2 == "object") { - ok = SimpleTest._eqAssoc(e1, e2, stack, seen); - } else { - // If we get here, they're not the same (function references must - // always simply rererence the same function). - stack.push({ vals: [e1, e2] }); - ok = false; - } - return ok; -}; - -SimpleTest._eqArray = function (a1, a2, stack, seen) { - // Return if they're the same object. - if (a1 == a2) return true; - - // JavaScript objects have no unique identifiers, so we have to store - // references to them all in an array, and then compare the references - // directly. It's slow, but probably won't be much of an issue in - // practice. Start by making a local copy of the array to as to avoid - // confusing a reference seen more than once (such as [a, a]) for a - // circular reference. - for (var j = 0; j < seen.length; j++) { - if (seen[j][0] == a1) { - return seen[j][1] == a2; - } - } - - // If we get here, we haven't seen a1 before, so store it with reference - // to a2. - seen.push([ a1, a2 ]); - - var ok = true; - // Only examines enumerable attributes. Only works for numeric arrays! - // Associative arrays return 0. So call _eqAssoc() for them, instead. - var max = a1.length > a2.length ? a1.length : a2.length; - if (max == 0) return SimpleTest._eqAssoc(a1, a2, stack, seen); - for (var i = 0; i < max; i++) { - var e1 = i > a1.length - 1 ? SimpleTest.DNE : a1[i]; - var e2 = i > a2.length - 1 ? SimpleTest.DNE : a2[i]; - stack.push({ type: 'Array', idx: i, vals: [e1, e2] }); - if (ok = SimpleTest._deepCheck(e1, e2, stack, seen)) { - stack.pop(); - } else { - break; - } - } - return ok; -}; - -SimpleTest._eqAssoc = function (o1, o2, stack, seen) { - // Return if they're the same object. - if (o1 == o2) return true; - - // JavaScript objects have no unique identifiers, so we have to store - // references to them all in an array, and then compare the references - // directly. It's slow, but probably won't be much of an issue in - // practice. Start by making a local copy of the array to as to avoid - // confusing a reference seen more than once (such as [a, a]) for a - // circular reference. - seen = seen.slice(0); - for (var j = 0; j < seen.length; j++) { - if (seen[j][0] == o1) { - return seen[j][1] == o2; - } - } - - // If we get here, we haven't seen o1 before, so store it with reference - // to o2. - seen.push([ o1, o2 ]); - - // They should be of the same class. - - var ok = true; - // Only examines enumerable attributes. - var o1Size = 0; for (var i in o1) o1Size++; - var o2Size = 0; for (var i in o2) o2Size++; - var bigger = o1Size > o2Size ? o1 : o2; - for (var i in bigger) { - var e1 = o1[i] == undefined ? SimpleTest.DNE : o1[i]; - var e2 = o2[i] == undefined ? SimpleTest.DNE : o2[i]; - stack.push({ type: 'Object', idx: i, vals: [e1, e2] }); - if (ok = SimpleTest._deepCheck(e1, e2, stack, seen)) { - stack.pop(); - } else { - break; - } - } - return ok; -}; - -SimpleTest._formatStack = function (stack) { - var variable = '$Foo'; - for (var i = 0; i < stack.length; i++) { - var entry = stack[i]; - var type = entry['type']; - var idx = entry['idx']; - if (idx != null) { - if (/^\d+$/.test(idx)) { - // Numeric array index. - variable += '[' + idx + ']'; - } else { - // Associative array index. - idx = idx.replace("'", "\\'"); - variable += "['" + idx + "']"; - } - } - } - - var vals = stack[stack.length-1]['vals'].slice(0, 2); - var vars = [ - variable.replace('$Foo', 'got'), - variable.replace('$Foo', 'expected') - ]; - - var out = "Structures begin differing at:" + SimpleTest.LF; - for (var i = 0; i < vals.length; i++) { - var val = vals[i]; - if (val == null) { - val = 'undefined'; - } else { - val == SimpleTest.DNE ? "Does not exist" : "'" + val + "'"; - } - } - - out += vars[0] + ' = ' + vals[0] + SimpleTest.LF; - out += vars[1] + ' = ' + vals[1] + SimpleTest.LF; - - return ' ' + out; -}; - - -SimpleTest.isDeeply = function (it, as, name) { - var ok; - // ^ is the XOR operator. - if (SimpleTest._isRef(it) ^ SimpleTest._isRef(as)) { - // One's a reference, one isn't. - ok = false; - } else if (!SimpleTest._isRef(it) && !SimpleTest._isRef(as)) { - // Neither is an object. - ok = SimpleTest.is(it, as, name); - } else { - // We have two objects. Do a deep comparison. - var stack = [], seen = []; - if ( SimpleTest._deepCheck(it, as, stack, seen)) { - ok = SimpleTest.ok(true, name); - } else { - ok = SimpleTest.ok(false, name, SimpleTest._formatStack(stack)); - } - } - return ok; -}; - -SimpleTest.typeOf = function (object) { - var c = Object.prototype.toString.apply(object); - var name = c.substring(8, c.length - 1); - if (name != 'Object') return name; - // It may be a non-core class. Try to extract the class name from - // the constructor function. This may not work in all implementations. - if (/function ([^(\s]+)/.test(Function.toString.call(object.constructor))) { - return RegExp.$1; - } - // No idea. :-( - return name; -}; - -SimpleTest.isa = function (object, clas) { - return SimpleTest.typeOf(object) == clas; -}; - -// Global symbols: -var ok = SimpleTest.ok; -var is = SimpleTest.is; -var isnot = SimpleTest.isnot; -var todo = SimpleTest.todo; -var todo_is = SimpleTest.todo_is; -var todo_isnot = SimpleTest.todo_isnot; -var isDeeply = SimpleTest.isDeeply; -var oldOnError = window.onerror; -window.onerror = function (ev) { - is(0, 1, "Error thrown during test: " + ev); - if (oldOnError) { - try { - oldOnError(ev); - } catch (e) { - } - } - if (SimpleTest._stopOnLoad == false) { - // Need to finish() manually here - SimpleTest.finish(); - } -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/TestRunner.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/TestRunner.js deleted file mode 100755 index 66bccb15f..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/TestRunner.js +++ /dev/null @@ -1,208 +0,0 @@ -/** - * TestRunner: A test runner for SimpleTest - * TODO: - * - * * Avoid moving iframes: That causes reloads on mozilla and opera. - * - * -**/ -var TestRunner = {}; -TestRunner.logEnabled = false; -TestRunner._currentTest = 0; -TestRunner.currentTestURL = ""; -TestRunner._urls = []; - -TestRunner.timeout = 300; // seconds -TestRunner.maxTimeouts = 4; // halt testing after too many timeouts - -/** - * Make sure the tests don't hang indefinitely. -**/ -TestRunner._numTimeouts = 0; -TestRunner._currentTestStartTime = new Date().valueOf(); - -TestRunner._checkForHangs = function() { - if (TestRunner._currentTest < TestRunner._urls.length) { - var runtime = (new Date().valueOf() - TestRunner._currentTestStartTime) / 1000; - if (runtime >= TestRunner.timeout) { - var frameWindow = $('testframe').contentWindow.wrappedJSObject || - $('testframe').contentWindow; - frameWindow.SimpleTest.ok(false, "Test timed out."); - - // If we have too many timeouts, give up. We don't want to wait hours - // for results if some bug causes lots of tests to time out. - if (++TestRunner._numTimeouts >= TestRunner.maxTimeouts) { - TestRunner._haltTests = true; - frameWindow.SimpleTest.ok(false, "Too many test timeouts, giving up."); - } - - frameWindow.SimpleTest.finish(); - } - TestRunner.deferred = callLater(30, TestRunner._checkForHangs); - } -} - -/** - * This function is called after generating the summary. -**/ -TestRunner.onComplete = null; - -/** - * If logEnabled is true, this is the logger that will be used. -**/ -TestRunner.logger = MochiKit.Logging.logger; - -/** - * Toggle element visibility -**/ -TestRunner._toggle = function(el) { - if (el.className == "noshow") { - el.className = ""; - el.style.cssText = ""; - } else { - el.className = "noshow"; - el.style.cssText = "width:0px; height:0px; border:0px;"; - } -}; - - -/** - * Creates the iframe that contains a test -**/ -TestRunner._makeIframe = function (url, retry) { - var iframe = $('testframe'); - if (url != "about:blank" && (!document.hasFocus() || - document.activeElement != iframe)) { - // typically calling ourselves from setTimeout is sufficient - // but we'll try focus() just in case that's needed - window.focus(); - iframe.focus(); - if (retry < 3) { - window.setTimeout('TestRunner._makeIframe("'+url+'", '+(retry+1)+')', 1000); - return; - } - - if (TestRunner.logEnabled) { - var frameWindow = $('testframe').contentWindow.wrappedJSObject || - $('testframe').contentWindow; - TestRunner.logger.log("Error: Unable to restore focus, expect failures and timeouts."); - } - } - window.scrollTo(0, $('indicator').offsetTop); - iframe.src = url; - iframe.name = url; - iframe.width = "500"; - return iframe; -}; - -/** - * TestRunner entry point. - * - * The arguments are the URLs of the test to be ran. - * -**/ -TestRunner.runTests = function (/*url...*/) { - if (TestRunner.logEnabled) - TestRunner.logger.log("SimpleTest START"); - - TestRunner._urls = flattenArguments(arguments); - $('testframe').src=""; - TestRunner._checkForHangs(); - window.focus(); - $('testframe').focus(); - TestRunner.runNextTest(); -}; - -/** - * Run the next test. If no test remains, calls makeSummary -**/ -TestRunner._haltTests = false; -TestRunner.runNextTest = function() { - if (TestRunner._currentTest < TestRunner._urls.length && - !TestRunner._haltTests) { - var url = TestRunner._urls[TestRunner._currentTest]; - TestRunner.currentTestURL = url; - - $("current-test-path").innerHTML = url; - - TestRunner._currentTestStartTime = new Date().valueOf(); - - if (TestRunner.logEnabled) - TestRunner.logger.log("Running " + url + "..."); - - TestRunner._makeIframe(url, 0); - } else { - $("current-test").innerHTML = "Finished"; - TestRunner._makeIframe("about:blank", 0); - if (TestRunner.logEnabled) { - TestRunner.logger.log("Passed: " + $("pass-count").innerHTML); - TestRunner.logger.log("Failed: " + $("fail-count").innerHTML); - TestRunner.logger.log("Todo: " + $("todo-count").innerHTML); - TestRunner.logger.log("SimpleTest FINISHED"); - } - if (TestRunner.onComplete) - TestRunner.onComplete(); - } -}; - -/** - * This stub is called by SimpleTest when a test is finished. -**/ -TestRunner.testFinished = function(doc) { - var finishedURL = TestRunner._urls[TestRunner._currentTest]; - - if (TestRunner.logEnabled) - TestRunner.logger.debug("SimpleTest finished " + finishedURL); - - TestRunner.updateUI(); - TestRunner._currentTest++; - TestRunner.runNextTest(); -}; - -/** - * Get the results. - */ -TestRunner.countResults = function(doc) { - var nOK = withDocument(doc, - partial(getElementsByTagAndClassName, 'div', 'test_ok') - ).length; - var nNotOK = withDocument(doc, - partial(getElementsByTagAndClassName, 'div', 'test_not_ok') - ).length; - var nTodo = withDocument(doc, - partial(getElementsByTagAndClassName, 'div', 'test_todo') - ).length; - return {"OK": nOK, "notOK": nNotOK, "todo": nTodo}; -} - -TestRunner.updateUI = function() { - var results = TestRunner.countResults($('testframe').contentDocument); - var passCount = parseInt($("pass-count").innerHTML) + results.OK; - var failCount = parseInt($("fail-count").innerHTML) + results.notOK; - var todoCount = parseInt($("todo-count").innerHTML) + results.todo; - $("pass-count").innerHTML = passCount; - $("fail-count").innerHTML = failCount; - $("todo-count").innerHTML = todoCount; - - // Set the top Green/Red bar - var indicator = $("indicator"); - if (failCount > 0) { - indicator.innerHTML = "Status: Fail"; - indicator.style.backgroundColor = "red"; - } else if (passCount > 0) { - indicator.innerHTML = "Status: Pass"; - indicator.style.backgroundColor = "green"; - } - - // Set the table values - var trID = "tr-" + $('current-test-path').innerHTML; - var row = $(trID); - replaceChildNodes(row, - TD({'style': - {'backgroundColor': results.notOK > 0 ? "#f00":"#0d0"}}, results.OK), - TD({'style': - {'backgroundColor': results.notOK > 0 ? "#f00":"#0d0"}}, results.notOK), - TD({'style': {'backgroundColor': - results.todo > 0 ? "orange":"#0d0"}}, results.todo) - ); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/quit.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/quit.js deleted file mode 100755 index 360ba2df5..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/quit.js +++ /dev/null @@ -1,136 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; -*- */ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Mozilla Automated Testing Code. - * - * The Initial Developer of the Original Code is - * Mozilla Corporation. - * Portions created by the Initial Developer are Copyright (C) 2005 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Bob Clary - * Jeff Walden - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the MPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the MPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* - From mozilla/toolkit/content - These files did not have a license -*/ - -function quitHook() -{ - var xhr = new XMLHttpRequest(); - xhr.open("GET", "http://" + location.host + "/server/shutdown", true); - xhr.onreadystatechange = function (event) - { - if (xhr.readyState == 4) - goQuitApplication(); - }; - xhr.send(null); -} - -function canQuitApplication() -{ - var os = Components.classes["@mozilla.org/observer-service;1"] - .getService(Components.interfaces.nsIObserverService); - if (!os) - { - return true; - } - - try - { - var cancelQuit = Components.classes["@mozilla.org/supports-PRBool;1"] - .createInstance(Components.interfaces.nsISupportsPRBool); - os.notifyObservers(cancelQuit, "quit-application-requested", null); - - // Something aborted the quit process. - if (cancelQuit.data) - { - return false; - } - } - catch (ex) - { - } - return true; -} - -function goQuitApplication() -{ - const privs = 'UniversalXPConnect'; - - try - { - netscape.security.PrivilegeManager.enablePrivilege(privs); - } - catch(ex) - { - throw('goQuitApplication: privilege failure ' + ex); - } - - if (!canQuitApplication()) - { - return false; - } - - const kAppStartup = '@mozilla.org/toolkit/app-startup;1'; - const kAppShell = '@mozilla.org/appshell/appShellService;1'; - var appService; - var forceQuit; - - if (kAppStartup in Components.classes) - { - appService = Components.classes[kAppStartup]. - getService(Components.interfaces.nsIAppStartup); - forceQuit = Components.interfaces.nsIAppStartup.eForceQuit; - - } - else if (kAppShell in Components.classes) - { - appService = Components.classes[kAppShell]. - getService(Components.interfaces.nsIAppShellService); - forceQuit = Components.interfaces.nsIAppShellService.eForceQuit; - } - else - { - throw 'goQuitApplication: no AppStartup/appShell'; - } - - try - { - appService.quit(forceQuit); - } - catch(ex) - { - throw('goQuitApplication: ' + ex); - } - - return true; -} - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/setup.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/setup.js deleted file mode 100755 index 5667c859e..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/SimpleTest/setup.js +++ /dev/null @@ -1,128 +0,0 @@ -/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim:set ts=2 sw=2 sts=2 et: */ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is Mozilla Foundation. - * Portions created by the Initial Developer are Copyright (C) 2006 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Robert Sayre - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the MPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the MPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -TestRunner.logEnabled = true; -TestRunner.logger = new Logger(); - -// Check the query string for arguments -var params = parseQueryString(location.search.substring(1), true); - -// log levels for console and logfile -var fileLevel = params.fileLevel || null; -var consoleLevel = params.consoleLevel || null; - -// closeWhenDone tells us to call quit.js when complete -if (params.closeWhenDone) { - TestRunner.onComplete = goQuitApplication; -} - -// logFile to write our results -if (params.logFile) { - MozillaFileLogger.init(params.logFile); - TestRunner.logger.addListener("mozLogger", fileLevel + "", MozillaFileLogger.getLogCallback()); -} - -// if we get a quiet param, don't log to the console -if (!params.quiet) { - function dumpListener(msg) { - dump("*** " + msg.num + " " + msg.level + " " + msg.info.join(' ') + "\n"); - } - TestRunner.logger.addListener("dumpListener", consoleLevel + "", dumpListener); -} - -var gTestList = []; -var RunSet = {} -RunSet.runall = function(e) { - TestRunner.runTests(gTestList); -} -RunSet.reloadAndRunAll = function(e) { - e.preventDefault(); - //window.location.hash = ""; - var addParam = ""; - if (params.autorun) { - window.location.search += ""; - window.location.href = window.location.href; - } else if (window.location.search) { - window.location.href += "&autorun=1"; - } else { - window.location.href += "?autorun=1"; - } - -}; - -// UI Stuff -function toggleVisible(elem) { - toggleElementClass("invisible", elem); -} - -function makeVisible(elem) { - removeElementClass(elem, "invisible"); -} - -function makeInvisible(elem) { - addElementClass(elem, "invisible"); -} - -function isVisible(elem) { - // you may also want to check for - // getElement(elem).style.display == "none" - return !hasElementClass(elem, "invisible"); -}; - -function toggleNonTests (e) { - e.preventDefault(); - var elems = getElementsByTagAndClassName("*", "non-test"); - for (var i="0"; i (Original author) -# -# Alternatively, the contents of this file may be used under the terms of -# either of the GNU General Public License Version 2 or later (the "GPL"), -# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -# in which case the provisions of the GPL or the LGPL are applicable instead -# of those above. If you wish to allow use of your version of this file only -# under the terms of either the GPL or the LGPL, and not to allow others to -# use your version of this file under the terms of the MPL, indicate your -# decision by deleting the provisions above and replace them with the notice -# and other provisions required by the GPL or the LGPL. If you do not delete -# the provisions above, a recipient may use your version of this file under -# the terms of any one of the MPL, the GPL or the LGPL. -# -# ***** END LICENSE BLOCK ***** - -DEPTH = ../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ -relativesrcdir = testing/mochitest/tests/browser - -include $(DEPTH)/config/autoconf.mk -include $(topsrcdir)/config/rules.mk - -_BROWSER_TEST_FILES = browser_pass.js \ - browser_async.js \ - browser_scope.js \ -# Disabled, these are only good for testing the harness' failure reporting -# browser_fail.js \ -# browser_fail_async_throw.js \ -# browser_fail_fp.js \ -# browser_fail_pf.js \ -# browser_fail_throw.js \ -# browser_fail_timeout.js \ - $(NULL) - -libs:: $(_BROWSER_TEST_FILES) - $(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/browser/$(relativesrcdir) diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_async.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_async.js deleted file mode 100755 index 51ba0700e..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_async.js +++ /dev/null @@ -1,8 +0,0 @@ -function test() { - waitForExplicitFinish(); - function done() { - ok(true, "timeout ran"); - finish(); - } - setTimeout(done, 10000); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail.js deleted file mode 100755 index 3d91439ea..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail.js +++ /dev/null @@ -1,8 +0,0 @@ -function test() { - ok(false, "fail ok"); - is(true, false, "fail is"); - isnot(true, true, "fail isnot"); - todo(true, "fail todo"); - todo_is(true, true, "fail todo_is"); - todo_isnot(true, false, "fail todo_isnot"); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_async_throw.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_async_throw.js deleted file mode 100755 index 201cb241e..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_async_throw.js +++ /dev/null @@ -1,7 +0,0 @@ -function test() { - function end() { - throw "thrown exception"; - } - waitForExplicitFinish(); - setTimeout(end, 1000); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_fp.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_fp.js deleted file mode 100755 index 04cae37cd..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_fp.js +++ /dev/null @@ -1,4 +0,0 @@ -function test() { - ok(false, "first fail ok"); - ok(true, "then pass ok"); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_pf.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_pf.js deleted file mode 100755 index 88ed1d949..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_pf.js +++ /dev/null @@ -1,4 +0,0 @@ -function test() { - ok(true, "first pass ok"); - ok(false, "then fail ok"); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_throw.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_throw.js deleted file mode 100755 index aee0238df..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_throw.js +++ /dev/null @@ -1,3 +0,0 @@ -function test() { - throw "thrown exception"; -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_timeout.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_timeout.js deleted file mode 100755 index e4a81a80a..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_fail_timeout.js +++ /dev/null @@ -1,8 +0,0 @@ -function test() { - function end() { - ok(true, "didn't time out?"); - finish(); - } - waitForExplicitFinish(); - setTimeout(end, 20000); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_pass.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_pass.js deleted file mode 100755 index ac35b5e52..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_pass.js +++ /dev/null @@ -1,11 +0,0 @@ -function test() { - ok(true, "pass ok"); - is(true, true, "pass is"); - isnot(false, true, "pass isnot"); - todo(false, "pass todo"); - todo_is(false, true, "pass todo_is"); - todo_isnot(true, true, "pass todo_isnot"); - - var func = is; - func(true, true, "pass indirect is"); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_scope.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_scope.js deleted file mode 100755 index e4edac1e0..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/browser/browser_scope.js +++ /dev/null @@ -1,4 +0,0 @@ -function test() { - ok(!!gBrowser, "gBrowser exists"); - is(gBrowser, getBrowser(), "both ways of getting tabbrowser work"); -} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/cli.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/cli.js deleted file mode 100755 index 18434604c..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/cli.js +++ /dev/null @@ -1,6 +0,0 @@ -MochiKit = {__export__: true}; -load('tests/FakeJSAN.js') -JSAN.use('MochiKit.MockDOM'); -var window = this; -var document = MochiKit.MockDOM.document; -JSAN.use('MochiKit.MochiKit'); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/index.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/index.html deleted file mode 100755 index d17d6ccc6..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/index.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - -

    Click To Run Tests

    - - -Based on the MochiKit unit tests. - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/standalone.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/standalone.js deleted file mode 100755 index d48571238..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/standalone.js +++ /dev/null @@ -1,16 +0,0 @@ -load('tests/cli.js'); - -JSAN.use('MochiKit.Test'); - -print("[[ MochiKit.Base ]]"); -runTests('tests.test_Base'); -print("[[ MochiKit.Color ]]"); -runTests('tests.test_Color'); -print("[[ MochiKit.DateTime ]]"); -runTests('tests.test_DateTime'); -print("[[ MochiKit.Format ]]"); -runTests('tests.test_Format'); -print("[[ MochiKit.Iter ]]"); -runTests('tests.test_Iter'); -print("[[ MochiKit.Logging ]]"); -runTests('tests.test_Logging'); diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Base.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Base.js deleted file mode 100755 index e10b1c980..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Base.js +++ /dev/null @@ -1,500 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.Base'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.Base'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_Base = function (t) { - // test bind - var not_self = {"toString": function () { return "not self"; } }; - var self = {"toString": function () { return "self"; } }; - var func = function (arg) { return this.toString() + " " + arg; }; - var boundFunc = bind(func, self); - not_self.boundFunc = boundFunc; - - t.is( isEmpty([], [], ""), true, "isEmpty true" ) - t.is( isEmpty([], [1], ""), true, "isEmpty true" ) - t.is( isNotEmpty([], [], ""), false, "isNotEmpty false" ) - t.is( isNotEmpty([], [1], ""), false, "isNotEmpty false" ) - - t.is( isEmpty([1], [1], "1"), false, "isEmpty false" ) - t.is( isEmpty([1], [1], "1"), false, "isEmpty false" ) - t.is( isNotEmpty([1], [1], "1"), true, "isNotEmpty true" ) - t.is( isNotEmpty([1], [1], "1"), true, "isNotEmpty true" ) - - t.is( boundFunc("foo"), "self foo", "boundFunc bound to self properly" ); - t.is( not_self.boundFunc("foo"), "self foo", "boundFunc bound to self on another obj" ); - t.is( bind(boundFunc, not_self)("foo"), "not self foo", "boundFunc successfully rebound!" ); - t.is( bind(boundFunc, undefined, "foo")(), "self foo", "boundFunc partial no self change" ); - t.is( bind(boundFunc, not_self, "foo")(), "not self foo", "boundFunc partial self change" ); - - // test method - not_self = {"toString": function () { return "not self"; } }; - self = {"toString": function () { return "self"; } }; - func = function (arg) { return this.toString() + " " + arg; }; - var boundMethod = method(self, func); - not_self.boundMethod = boundMethod; - - t.is( boundMethod("foo"), "self foo", "boundMethod bound to self properly" ); - t.is( not_self.boundMethod("foo"), "self foo", "boundMethod bound to self on another obj" ); - t.is( method(not_self, boundMethod)("foo"), "not self foo", "boundMethod successfully rebound!" ); - t.is( method(undefined, boundMethod, "foo")(), "self foo", "boundMethod partial no self change" ); - t.is( method(not_self, boundMethod, "foo")(), "not self foo", "boundMethod partial self change" ); - - - - - // test bindMethods - - var O = function (value) { - bindMethods(this); - this.value = value; - }; - O.prototype.func = function () { - return this.value; - }; - - var o = new O("boring"); - var p = {}; - p.func = o.func; - var func = o.func; - t.is( o.func(), "boring", "bindMethods doesn't break shit" ); - t.is( p.func(), "boring", "bindMethods works on other objects" ); - t.is( func(), "boring", "bindMethods works on functions" ); - - var p = clone(o); - t.ok( p instanceof O, "cloned correct inheritance" ); - var q = clone(p); - t.ok( q instanceof O, "clone-cloned correct inheritance" ); - q.foo = "bar"; - t.is( p.foo, undefined, "clone-clone is copy-on-write" ); - p.bar = "foo"; - t.is( o.bar, undefined, "clone is copy-on-write" ); - t.is( q.bar, "foo", "clone-clone has proper delegation" ); - // unbind - p.func = bind(p.func, null); - t.is( p.func(), "boring", "clone function calls correct" ); - q.value = "awesome"; - t.is( q.func(), "awesome", "clone really does work" ); - - // test boring boolean funcs - - t.is( isCallable(isCallable), true, "isCallable returns true on itself" ); - t.is( isCallable(1), false, "isCallable returns false on numbers" ); - - t.is( isUndefined(null), false, "null is not undefined" ); - t.is( isUndefined(""), false, "empty string is not undefined" ); - t.is( isUndefined(undefined), true, "undefined is undefined" ); - t.is( isUndefined({}.foo), true, "missing property is undefined" ); - - t.is( isUndefinedOrNull(null), true, "null is undefined or null" ); - t.is( isUndefinedOrNull(""), false, "empty string is not undefined or null" ); - t.is( isUndefinedOrNull(undefined), true, "undefined is undefined or null" ); - t.is( isUndefinedOrNull({}.foo), true, "missing property is undefined or null" ); - - // test extension of arrays - var a = []; - var b = []; - var three = [1, 2, 3]; - - extend(a, three, 1); - t.ok( objEqual(a, [2, 3]), "extend to an empty array" ); - extend(a, three, 1) - t.ok( objEqual(a, [2, 3, 2, 3]), "extend to a non-empty array" ); - - extend(b, three); - t.ok( objEqual(b, three), "extend of an empty array" ); - - t.is( compare(1, 2), -1, "numbers compare lt" ); - t.is( compare(2, 1), 1, "numbers compare gt" ); - t.is( compare(1, 1), 0, "numbers compare eq" ); - t.is( compare([1], [1]), 0, "arrays compare eq" ); - t.is( compare([1], [1, 2]), -1, "arrays compare lt (length)" ); - t.is( compare([1, 2], [2, 1]), -1, "arrays compare lt (contents)" ); - t.is( compare([1, 2], [1]), 1, "arrays compare gt (length)" ); - t.is( compare([2, 1], [1, 1]), 1, "arrays compare gt (contents)" ); - - // test partial application - var a = []; - var func = function (a, b) { - if (arguments.length != 2) { - return "bad args"; - } else { - return this.value + a + b; - } - }; - var self = {"value": 1, "func": func}; - var self2 = {"value": 2}; - t.is( self.func(2, 3), 6, "setup for test is correct" ); - self.funcTwo = partial(self.func, 2); - t.is( self.funcTwo(3), 6, "partial application works" ); - t.is( self.funcTwo(3), 6, "partial application works still" ); - t.is( bind(self.funcTwo, self2)(3), 7, "rebinding partial works" ); - self.funcTwo = bind(bind(self.funcTwo, self2), null); - t.is( self.funcTwo(3), 6, "re-unbinding partial application works" ); - - - // nodeWalk test - // ... looks a lot like a DOM tree on purpose - var tree = { - "id": "nodeWalkTestTree", - "test:int": "1", - "childNodes": [ - { - "test:int": "2", - "childNodes": [ - {"test:int": "5"}, - "ignored string", - {"ignored": "object"}, - ["ignored", "list"], - { - "test:skipchildren": "1", - "childNodes": [{"test:int": 6}] - } - ] - }, - {"test:int": "3"}, - {"test:int": "4"} - ] - } - - var visitedNodes = []; - nodeWalk(tree, function (node) { - var attr = node["test:int"]; - if (attr) { - visitedNodes.push(attr); - } - if (node["test:skipchildren"]) { - return; - } - return node.childNodes; - }); - - t.ok( objEqual(visitedNodes, ["1", "2", "3", "4", "5"]), "nodeWalk looks like it works"); - - // test map - var minusOne = function (x) { return x - 1; }; - var res = map(minusOne, [1, 2, 3]); - t.ok( objEqual(res, [0, 1, 2]), "map works" ); - - var res2 = xmap(minusOne, 1, 2, 3); - t.ok( objEqual(res2, res), "xmap works" ); - - res = map(operator.add, [1, 2, 3], [2, 4, 6]); - t.ok( objEqual(res, [3, 6, 9]), "map(fn, p, q) works" ); - - res = map(operator.add, [1, 2, 3], [2, 4, 6, 8]); - t.ok( objEqual(res, [3, 6, 9]), "map(fn, p, q) works (q long)" ); - - res = map(operator.add, [1, 2, 3, 4], [2, 4, 6]); - t.ok( objEqual(res, [3, 6, 9]), "map(fn, p, q) works (p long)" ); - - res = map(null, [1, 2, 3], [2, 4, 6]); - t.ok( objEqual(res, [[1, 2], [2, 4], [3, 6]]), "map(null, p, q) works" ); - - res = zip([1, 2, 3], [2, 4, 6]); - t.ok( objEqual(res, [[1, 2], [2, 4], [3, 6]]), "zip(p, q) works" ); - - res = map(null, [1, 2, 3]); - t.ok( objEqual(res, [1, 2, 3]), "map(null, lst) works" ); - - - - - t.is( isNotEmpty("foo"), true, "3 char string is not empty" ); - t.is( isNotEmpty(""), false, "0 char string is empty" ); - t.is( isNotEmpty([1, 2, 3]), true, "3 element list is not empty" ); - t.is( isNotEmpty([]), false, "0 element list is empty" ); - - // test filter - var greaterThanThis = function (x) { return x > this; }; - var greaterThanOne = function (x) { return x > 1; }; - var res = filter(greaterThanOne, [-1, 0, 1, 2, 3]); - t.ok( objEqual(res, [2, 3]), "filter works" ); - var res = filter(greaterThanThis, [-1, 0, 1, 2, 3], 1); - t.ok( objEqual(res, [2, 3]), "filter self works" ); - var res2 = xfilter(greaterThanOne, -1, 0, 1, 2, 3); - t.ok( objEqual(res2, res), "xfilter works" ); - - t.is(objMax(1, 2, 9, 12, 42, -16, 16), 42, "objMax works (with numbers)"); - t.is(objMin(1, 2, 9, 12, 42, -16, 16), -16, "objMin works (with numbers)"); - - // test adapter registry - - var R = new AdapterRegistry(); - R.register("callable", isCallable, function () { return "callable"; }); - R.register("arrayLike", isArrayLike, function () { return "arrayLike"; }); - t.is( R.match(function () {}), "callable", "registry found callable" ); - t.is( R.match([]), "arrayLike", "registry found ArrayLike" ); - try { - R.match(null); - t.ok( false, "non-matching didn't raise!" ); - } catch (e) { - t.is( e, NotFound, "non-matching raised correctly" ); - } - R.register("undefinedOrNull", isUndefinedOrNull, function () { return "undefinedOrNull" }); - R.register("undefined", isUndefined, function () { return "undefined" }); - t.is( R.match(undefined), "undefinedOrNull", "priorities are as documented" ); - t.ok( R.unregister("undefinedOrNull"), "removed adapter" ); - t.is( R.match(undefined), "undefined", "adapter was removed" ); - R.register("undefinedOrNull", isUndefinedOrNull, function () { return "undefinedOrNull" }, true); - t.is( R.match(undefined), "undefinedOrNull", "override works" ); - - var a1 = {"a": 1, "b": 2, "c": 2}; - var a2 = {"a": 2, "b": 1, "c": 2}; - t.is( keyComparator("a")(a1, a2), -1, "keyComparator 1 lt" ); - t.is( keyComparator("c")(a1, a2), 0, "keyComparator 1 eq" ); - t.is( keyComparator("c", "b")(a1, a2), 1, "keyComparator 2 eq gt" ); - t.is( keyComparator("c", "a")(a1, a2), -1, "keyComparator 2 eq lt" ); - t.is( reverseKeyComparator("a")(a1, a2), 1, "reverseKeyComparator" ); - t.is( compare(concat([1], [2], [3]), [1, 2, 3]), 0, "concat" ); - t.is( repr("foo"), '"foo"', "string repr" ); - t.is( repr(1), '1', "number repr" ); - t.is( listMin([1, 3, 5, 3, -1]), -1, "listMin" ); - t.is( objMin(1, 3, 5, 3, -1), -1, "objMin" ); - t.is( listMax([1, 3, 5, 3, -1]), 5, "listMax" ); - t.is( objMax(1, 3, 5, 3, -1), 5, "objMax" ); - - var v = keys(a1); - v.sort(); - t.is( compare(v, ["a", "b", "c"]), 0, "keys" ); - v = items(a1); - v.sort(); - t.is( compare(v, [["a", 1], ["b", 2], ["c", 2]]), 0, "items" ); - - var StringMap = function() {}; - a = new StringMap(); - a.foo = "bar"; - b = new StringMap(); - b.foo = "bar"; - try { - compare(a, b); - t.ok( false, "bad comparison registered!?" ); - } catch (e) { - t.ok( e instanceof TypeError, "bad comparison raised TypeError" ); - } - - t.is( repr(a), "[object Object]", "default repr for StringMap" ); - var isStringMap = function () { - for (var i = 0; i < arguments.length; i++) { - if (!(arguments[i] instanceof StringMap)) { - return false; - } - } - return true; - }; - - registerRepr("stringMap", - isStringMap, - function (obj) { - return "StringMap(" + repr(items(obj)) + ")"; - } - ); - - t.is( repr(a), 'StringMap([["foo", "bar"]])', "repr worked" ); - - // not public API - MochiKit.Base.reprRegistry.unregister("stringMap"); - - t.is( repr(a), "[object Object]", "default repr for StringMap" ); - - registerComparator("stringMap", - isStringMap, - function (a, b) { - // no sorted(...) in base - a = items(a); - b = items(b); - a.sort(compare); - b.sort(compare); - return compare(a, b); - } - ); - - t.is( compare(a, b), 0, "registerComparator" ); - - update(a, {"foo": "bar"}, {"wibble": "baz"}, undefined, null, {"grr": 1}); - t.is( a.foo, "bar", "update worked (first obj)" ); - t.is( a.wibble, "baz", "update worked (second obj)" ); - t.is( a.grr, 1, "update worked (skipped undefined and null)" ); - t.is( compare(a, b), 1, "update worked (comparison)" ); - - - setdefault(a, {"foo": "unf"}, {"bar": "web taco"} ); - t.is( a.foo, "bar", "setdefault worked (skipped existing)" ); - t.is( a.bar, "web taco", "setdefault worked (set non-existing)" ); - - var c = items(merge({"foo": "bar"}, {"wibble": "baz"})); - c.sort(compare); - t.is( compare(c, [["foo", "bar"], ["wibble", "baz"]]), 0, "merge worked" ); - - // not public API - MochiKit.Base.comparatorRegistry.unregister("stringMap"); - - try { - compare(a, b); - t.ok( false, "bad comparison registered!?" ); - } catch (e) { - t.ok( e instanceof TypeError, "bad comparison raised TypeError" ); - } - - var o = {"__repr__": function () { return "__repr__"; }}; - t.is( repr(o), "__repr__", "__repr__ protocol" ); - t.is( repr(MochiKit.Base), MochiKit.Base.__repr__(), "__repr__ protocol when repr is defined" ); - var o = {"NAME": "NAME"}; - t.is( repr(o), "NAME", "NAME protocol (obj)" ); - o = function () { return "TACO" }; - o.NAME = "NAME"; - t.is( repr(o), "NAME", "NAME protocol (func)" ); - - t.is( repr(MochiKit.Base.nameFunctions), "MochiKit.Base.nameFunctions", "test nameFunctions" ); - // Done! - - t.is( urlEncode("1+2=2").toUpperCase(), "1%2B2%3D2", "urlEncode" ); - t.is( queryString(["a", "b"], [1, "two"]), "a=1&b=two", "queryString"); - t.is( queryString({"a": 1}), "a=1", "one item alternate form queryString" ); - var o = {"a": 1, "b": 2, "c": function() {}}; - var res = queryString(o).split("&"); - res.sort(); - t.is( res.join("&"), "a=1&b=2", "two item alternate form queryString, function skip" ); - var res = parseQueryString("1+1=2&b=3%3D2"); - t.is( res["1 1"], "2", "parseQueryString pathological name" ); - t.is( res.b, "3=2", "parseQueryString second name:value pair" ); - var res = parseQueryString("foo=one&foo=two", true); - t.is( res["foo"].join(" "), "one two", "parseQueryString useArrays" ); - var res = parseQueryString("?foo=2&bar=1"); - t.is( res["foo"], "2", "parseQueryString strip leading question mark"); - - t.is( serializeJSON("foo\n\r\b\f\t"), "\"foo\\n\\r\\b\\f\\t\"", "string JSON" ); - t.is( serializeJSON(null), "null", "null JSON"); - try { - serializeJSON(undefined); - t.ok(false, "undefined should not be serializable"); - } catch (e) { - t.ok(e instanceof TypeError, "undefined not serializable"); - } - t.is( serializeJSON(1), "1", "1 JSON"); - t.is( serializeJSON(1.23), "1.23", "1.23 JSON"); - t.is( serializeJSON(serializeJSON), null, "function JSON (null, not string)" ); - t.is( serializeJSON([1, "2", 3.3]), "[1, \"2\", 3.3]", "array JSON" ); - var res = evalJSON(serializeJSON({"a":1, "b":2})); - t.is( res.a, 1, "evalJSON on an object (1)" ); - t.is( res.b, 2, "evalJSON on an object (2)" ); - var res = {"a": 1, "b": 2, "json": function () { return this; }}; - var res = evalJSON(serializeJSON(res)); - t.is( res.a, 1, "evalJSON on an object that jsons self (1)" ); - t.is( res.b, 2, "evalJSON on an object that jsons self (2)" ); - var strJSON = {"a": 1, "b": 2, "json": function () { return "json"; }}; - t.is( serializeJSON(strJSON), "\"json\"", "json serialization calling" ); - t.is( serializeJSON([strJSON]), "[\"json\"]", "json serialization calling in a structure" ); - registerJSON("isDateLike", - isDateLike, - function (d) { - return "this was a date"; - } - ); - t.is( serializeJSON(new Date()), "\"this was a date\"", "json registry" ); - MochiKit.Base.jsonRegistry.unregister("isDateLike"); - - var a = {"foo": {"bar": 12, "wibble": 13}}; - var b = {"foo": {"baz": 4, "bar": 16}, "bar": 4}; - updatetree(a, b); - var expect = [["bar", 16], ["baz", 4], ["wibble", 13]]; - var got = items(a.foo); - got.sort(compare); - t.is( repr(got), repr(expect), "updatetree merge" ); - t.is( a.bar, 4, "updatetree insert" ); - - var c = counter(); - t.is( c(), 1, "counter starts at 1" ); - t.is( c(), 2, "counter increases" ); - c = counter(2); - t.is( c(), 2, "counter starts at 2" ); - t.is( c(), 3, "counter increases" ); - - t.is( findValue([1, 2, 3], 4), -1, "findValue returns -1 on not found"); - t.is( findValue([1, 2, 3], 1), 0, "findValue returns correct index"); - t.is( findValue([1, 2, 3], 1, 1), -1, "findValue honors start"); - t.is( findValue([1, 2, 3], 2, 0, 1), -1, "findValue honors end"); - t.is( findIdentical([1, 2, 3], 4), -1, "findIdentical returns -1"); - t.is( findIdentical([1, 2, 3], 1), 0, "findIdentical returns correct index"); - t.is( findIdentical([1, 2, 3], 1, 1), -1, "findIdentical honors start"); - t.is( findIdentical([1, 2, 3], 2, 0, 1), -1, "findIdentical honors end"); - t.is( isNull(undefined), false, "isNull doesn't match undefined" ); - - var flat = flattenArguments(1, "2", 3, [4, [5, [6, 7], 8, [], 9]]); - var expect = [1, "2", 3, 4, 5, 6, 7, 8, 9]; - t.is( repr(flat), repr(expect), "flattenArguments" ); - - var fn = function () { - return [this, concat(arguments)]; - } - t.is( methodcaller("toLowerCase")("FOO"), "foo", "methodcaller with a method name" ); - t.is( repr(methodcaller(fn, 2, 3)(1)), "[1, [2, 3]]", "methodcaller with a function" ); - - var f1 = function (x) { return [1, x]; }; - var f2 = function (x) { return [2, x]; }; - var f3 = function (x) { return [3, x]; }; - t.is( repr(f1(f2(f3(4)))), "[1, [2, [3, 4]]]", "test the compose test" ); - t.is( repr(compose(f1,f2,f3)(4)), "[1, [2, [3, 4]]]", "three fn composition works" ); - t.is( repr(compose(compose(f1,f2),f3)(4)), "[1, [2, [3, 4]]]", "associative left" ); - t.is( repr(compose(f1,compose(f2,f3))(4)), "[1, [2, [3, 4]]]", "associative right" ); - - try { - compose(f1, "foo"); - t.ok( false, "wrong compose argument not raised!" ); - } catch (e) { - t.is( e.name, 'TypeError', "wrong compose argument raised correctly" ); - } - - t.is(camelize('one'), 'one', 'one word'); - t.is(camelize('one-two'), 'oneTwo', 'two words'); - t.is(camelize('one-two-three'), 'oneTwoThree', 'three words'); - t.is(camelize('1-one'), '1One', 'letter and word'); - t.is(camelize('one-'), 'one', 'trailing hyphen'); - t.is(camelize('-one'), 'One', 'starting hyphen'); - t.is(camelize('o-two'), 'oTwo', 'one character and word'); - - var flat = flattenArray([1, "2", 3, [4, [5, [6, 7], 8, [], 9]]]); - var expect = [1, "2", 3, 4, 5, 6, 7, 8, 9]; - t.is( repr(flat), repr(expect), "flattenArray" ); - - /* mean */ - try { - mean(); - t.ok( false, "no arguments didn't raise!" ); - } catch (e) { - t.is( e.name, 'TypeError', "no arguments raised correctly" ); - } - t.is( mean(1), 1, 'single argument (arg list)'); - t.is( mean([1]), 1, 'single argument (array)'); - t.is( mean(1,2,3), 2, 'three arguments (arg list)'); - t.is( mean([1,2,3]), 2, 'three arguments (array)'); - t.is( average(1), 1, 'test the average alias'); - - /* median */ - try { - median(); - t.ok( false, "no arguments didn't raise!" ); - } catch (e) { - t.is( e.name, 'TypeError', "no arguments raised correctly" ); - } - t.is( median(1), 1, 'single argument (arg list)'); - t.is( median([1]), 1, 'single argument (array)'); - t.is( median(3,1,2), 2, 'three arguments (arg list)'); - t.is( median([3,1,2]), 2, 'three arguments (array)'); - t.is( median(3,1,2,4), 2.5, 'four arguments (arg list)'); - t.is( median([3,1,2,4]), 2.5, 'four arguments (array)'); - - /* #185 */ - t.is( serializeJSON(parseQueryString("")), "{}", "parseQueryString('')" ); - t.is( serializeJSON(parseQueryString("", true)), "{}", "parseQueryString('', true)" ); - - /* #109 */ - t.is( queryString({ids: [1,2,3]}), "ids=1&ids=2&ids=3", "queryString array value" ); - t.is( queryString({ids: "123"}), "ids=123", "queryString string value" ); - - /* test values */ - var o = {a: 1, b: 2, c: 4, d: -1}; - var got = values(o); - got.sort(); - t.is( repr(got), repr([-1, 1, 2, 4]), "values()" ); - -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Color.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Color.js deleted file mode 100755 index c977329bf..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Color.js +++ /dev/null @@ -1,128 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.Color'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.Color'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_Color = function (t) { - var approx = function (a, b, msg) { - return t.is(a.toPrecision(4), b.toPrecision(4), msg); - }; - - t.is( Color.whiteColor().toHexString(), "#ffffff", "whiteColor has right hex" ); - t.is( Color.blackColor().toHexString(), "#000000", "blackColor has right hex" ); - t.is( Color.blueColor().toHexString(), "#0000ff", "blueColor has right hex" ); - t.is( Color.redColor().toHexString(), "#ff0000", "redColor has right hex" ); - t.is( Color.greenColor().toHexString(), "#00ff00", "greenColor has right hex" ); - t.is( compare(Color.whiteColor(), Color.whiteColor()), 0, "default colors compare right" ); - t.ok( Color.whiteColor() == Color.whiteColor(), "default colors are interned" ); - t.ok( Color.whiteColor().toRGBString(), "rgb(255,255,255)", "toRGBString white" ); - t.ok( Color.blueColor().toRGBString(), "rgb(0,0,255)", "toRGBString blue" ); - t.is( Color.fromRGB(190/255, 222/255, 173/255).toHexString(), "#bedead", "fromRGB works" ); - t.is( Color.fromRGB(226/255, 15.9/255, 182/255).toHexString(), "#e210b6", "fromRGB < 16 works" ); - t.is( Color.fromRGB({r:190/255,g:222/255,b:173/255}).toHexString(), "#bedead", "alt fromRGB works" ); - t.is( Color.fromHexString("#bedead").toHexString(), "#bedead", "round-trip hex" ); - t.is( Color.fromString("#bedead").toHexString(), "#bedead", "round-trip string(hex)" ); - t.is( Color.fromRGBString("rgb(190,222,173)").toHexString(), "#bedead", "round-trip rgb" ); - t.is( Color.fromString("rgb(190,222,173)").toHexString(), "#bedead", "round-trip rgb" ); - - var hsl = Color.redColor().asHSL(); - approx( hsl.h, 0.0, "red hsl.h" ); - approx( hsl.s, 1.0, "red hsl.s" ); - approx( hsl.l, 0.5, "red hsl.l" ); - hsl = Color.fromRGB(0, 0, 0.5).asHSL(); - approx( hsl.h, 2/3, "darkblue hsl.h" ); - approx( hsl.s, 1.0, "darkblue hsl.s" ); - approx( hsl.l, 0.25, "darkblue hsl.l" ); - hsl = Color.fromString("#4169E1").asHSL(); - approx( hsl.h, (5/8), "4169e1 h"); - approx( hsl.s, (8/11), "4169e1 s"); - approx( hsl.l, (29/51), "4169e1 l"); - hsl = Color.fromString("#555544").asHSL(); - approx( hsl.h, (1/6), "555544 h" ); - approx( hsl.s, (1/9), "555544 s" ); - approx( hsl.l, (3/10), "555544 l" ); - hsl = Color.fromRGB(0.5, 1, 0.5).asHSL(); - approx( hsl.h, 1/3, "aqua hsl.h" ); - approx( hsl.s, 1.0, "aqua hsl.s" ); - approx( hsl.l, 0.75, "aqua hsl.l" ); - t.is( - Color.fromHSL(hsl.h, hsl.s, hsl.l).toHexString(), - Color.fromRGB(0.5, 1, 0.5).toHexString(), - "fromHSL works with components" - ); - t.is( - Color.fromHSL(hsl).toHexString(), - Color.fromRGB(0.5, 1, 0.5).toHexString(), - "fromHSL alt form" - ); - t.is( - Color.fromString("hsl(120,100%,75%)").toHexString(), - "#80ff80", - "fromHSLString" - ); - t.is( - Color.fromRGB(0.5, 1, 0.5).toHSLString(), - "hsl(120,100.0%,75.00%)", - "toHSLString" - ); - t.is( Color.fromHSL(0, 0, 0).toHexString(), "#000000", "fromHSL to black" ); - hsl = Color.blackColor().asHSL(); - approx( hsl.h, 0.0, "black hsl.h" ); - approx( hsl.s, 0.0, "black hsl.s" ); - approx( hsl.l, 0.0, "black hsl.l" ); - hsl.h = 1.0; - hsl = Color.blackColor().asHSL(); - approx( hsl.h, 0.0, "asHSL returns copy" ); - var rgb = Color.brownColor().asRGB(); - approx( rgb.r, 153/255, "brown rgb.r" ); - approx( rgb.g, 102/255, "brown rgb.g" ); - approx( rgb.b, 51/255, "brown rgb.b" ); - rgb.r = 0; - rgb = Color.brownColor().asRGB(); - approx( rgb.r, 153/255, "asRGB returns copy" ); - - t.is( Color.fromName("aqua").toHexString(), "#00ffff", "aqua fromName" ); - t.is( Color.fromString("aqua").toHexString(), "#00ffff", "aqua fromString" ); - t.is( Color.fromName("transparent"), Color.transparentColor(), "transparent fromName" ); - t.is( Color.fromString("transparent"), Color.transparentColor(), "transparent fromString" ); - t.is( Color.transparentColor().toRGBString(), "rgba(0,0,0,0)", "transparent toRGBString" ); - t.is( Color.fromRGBString("rgba( 0, 255, 255, 50%)").asRGB().a, 0.5, "rgba parsing alpha correctly" ); - t.is( Color.fromRGBString("rgba( 0, 255, 255, 50%)").toRGBString(), "rgba(0,255,255,0.5)", "rgba output correctly" ); - t.is( Color.fromRGBString("rgba( 0, 255, 255, 1)").toHexString(), "#00ffff", "fromRGBString with spaces and alpha" ); - t.is( Color.fromRGBString("rgb( 0, 255, 255)").toHexString(), "#00ffff", "fromRGBString with spaces" ); - t.is( Color.fromRGBString("rgb( 0, 100%, 255)").toHexString(), "#00ffff", "fromRGBString with percents" ); - - var hsv = Color.redColor().asHSV(); - approx( hsv.h, 0.0, "red hsv.h" ); - approx( hsv.s, 1.0, "red hsv.s" ); - approx( hsv.v, 1.0, "red hsv.v" ); - t.is( Color.fromHSV(hsv).toHexString(), Color.redColor().toHexString(), "red hexstring" ); - hsv = Color.fromRGB(0, 0, 0.5).asHSV(); - approx( hsv.h, 2/3, "darkblue hsv.h" ); - approx( hsv.s, 1.0, "darkblue hsv.s" ); - approx( hsv.v, 0.5, "darkblue hsv.v" ); - t.is( Color.fromHSV(hsv).toHexString(), Color.fromRGB(0, 0, 0.5).toHexString(), "darkblue hexstring" ); - hsv = Color.fromString("#4169E1").asHSV(); - approx( hsv.h, 5/8, "4169e1 h"); - approx( hsv.s, 32/45, "4169e1 s"); - approx( hsv.v, 15/17, "4169e1 l"); - t.is( Color.fromHSV(hsv).toHexString(), "#4169e1", "4169e1 hexstring" ); - hsv = Color.fromString("#555544").asHSV(); - approx( hsv.h, 1/6, "555544 h" ); - approx( hsv.s, 1/5, "555544 s" ); - approx( hsv.v, 1/3, "555544 l" ); - t.is( Color.fromHSV(hsv).toHexString(), "#555544", "555544 hexstring" ); - hsv = Color.fromRGB(0.5, 1, 0.5).asHSV(); - approx( hsv.h, 1/3, "aqua hsv.h" ); - approx( hsv.s, 0.5, "aqua hsv.s" ); - approx( hsv.v, 1, "aqua hsv.v" ); - t.is( - Color.fromHSV(hsv.h, hsv.s, hsv.v).toHexString(), - Color.fromRGB(0.5, 1, 0.5).toHexString(), - "fromHSV works with components" - ); - t.is( - Color.fromHSV(hsv).toHexString(), - Color.fromRGB(0.5, 1, 0.5).toHexString(), - "fromHSV alt form" - ); -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DateTime.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DateTime.js deleted file mode 100755 index cc2d958e3..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DateTime.js +++ /dev/null @@ -1,45 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.DateTime'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.DateTime'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_DateTime = function (t) { - var testDate = isoDate('2005-2-3'); - t.is(testDate.getFullYear(), 2005, "isoDate year ok"); - t.is(testDate.getDate(), 3, "isoDate day ok"); - t.is(testDate.getMonth(), 1, "isoDate month ok"); - t.ok(objEqual(testDate, new Date("February 3, 2005")), "matches string date"); - t.is(toISODate(testDate), '2005-02-03', 'toISODate ok'); - - var testDate = isoDate('2005-06-08'); - t.is(testDate.getFullYear(), 2005, "isoDate year ok"); - t.is(testDate.getDate(), 8, "isoDate day ok"); - t.is(testDate.getMonth(), 5, "isoDate month ok"); - t.ok(objEqual(testDate, new Date("June 8, 2005")), "matches string date"); - t.is(toISODate(testDate), '2005-06-08', 'toISODate ok'); - - t.is(compare(new Date("February 3, 2005"), new Date(2005, 1, 3)), 0, "dates compare eq"); - t.is(compare(new Date("February 3, 2005"), new Date(2005, 2, 3)), -1, "dates compare lt"); - t.is(compare(new Date("February 3, 2005"), new Date(2005, 0, 3)), 1, "dates compare gt"); - - var testDate = isoDate('2005-2-3'); - t.is(compare(americanDate('2/3/2005'), testDate), 0, "americanDate eq"); - t.is(compare('2/3/2005', toAmericanDate(testDate)), 0, "toAmericanDate eq"); - - var testTimestamp = isoTimestamp('2005-2-3 22:01:03'); - t.is(compare(testTimestamp, new Date(2005,1,3,22,1,3)), 0, "isoTimestamp eq"); - t.is(compare(testTimestamp, isoTimestamp('2005-2-3T22:01:03')), 0, "isoTimestamp (real ISO) eq"); - t.is(compare(toISOTimestamp(testTimestamp), '2005-02-03 22:01:03'), 0, "toISOTimestamp eq"); - testTimestamp = isoTimestamp('2005-2-3T22:01:03Z'); - t.is(toISOTimestamp(testTimestamp, true), '2005-02-03T22:01:03Z', "toISOTimestamp (real ISO) eq"); - - var localTZ = Math.round((new Date(2005,1,3,22,1,3)).getTimezoneOffset()/60) - var direction = (localTZ < 0) ? "+" : "-"; - localTZ = Math.abs(localTZ); - localTZ = direction + ((localTZ < 10) ? "0" : "") + localTZ; - testTimestamp = isoTimestamp("2005-2-3T22:01:03" + localTZ); - var testDateTimestamp = new Date(2005,1,3,22,1,3); - t.is(compare(testTimestamp, testDateTimestamp), 0, "equal with local tz"); - testTimestamp = isoTimestamp("2005-2-3T17:01:03-05"); - var testDateTimestamp = new Date(Date.UTC(2005,1,3,22,1,3)); - t.is(compare(testTimestamp, testDateTimestamp), 0, "equal with specific tz"); -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DragAndDrop.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DragAndDrop.js deleted file mode 100755 index d3a3c5837..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_DragAndDrop.js +++ /dev/null @@ -1,30 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.Signal'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.Signal'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_DragAndDrop = function (t) { - - var drag1 = new MochiKit.DragAndDrop.Draggable('drag1', {'revert': true, 'ghosting': true}); - - var drop1 = new MochiKit.DragAndDrop.Droppable('drop1', {'hoverclass': 'drop-hover'}); - drop1.activate(); - t.is(hasElementClass('drop1', 'drop-hover'), true, "hoverclass ok"); - drop1.deactivate(); - t.is(hasElementClass('drop1', 'drop-hover'), false, "remove hoverclass ok"); - drop1.destroy(); - - t.is( isEmpty(MochiKit.DragAndDrop.Droppables.drops), true, "Unregister droppable ok"); - - var onhover = function (element) { - t.is(element, getElement('drag1'), 'onhover ok'); - }; - var drop2 = new MochiKit.DragAndDrop.Droppable('drop1', {'onhover': onhover}); - var pos = getElementPosition('drop1'); - pos = {"x": pos.x + 5, "y": pos.y + 5}; - MochiKit.DragAndDrop.Droppables.show({"page": pos}, getElement('drag1')); - - drag1.destroy(); - t.is( isEmpty(MochiKit.DragAndDrop.Draggables.drops), true, "Unregister draggable ok"); - -}; - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Format.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Format.js deleted file mode 100755 index 785cebf82..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Format.js +++ /dev/null @@ -1,80 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.Format'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.Format'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_Format = function (t) { - t.is( truncToFixed(0.1234, 3), "0.123", "truncToFixed truncate" ); - t.is( truncToFixed(0.12, 3), "0.120", "truncToFixed trailing zeros" ); - t.is( truncToFixed(0.15, 1), "0.1", "truncToFixed no round" ); - t.is( truncToFixed(0.15, 0), "0", "truncToFixed zero (edge case)" ); - - t.is( roundToFixed(0.1234, 3), "0.123", "roundToFixed truncate" ); - t.is( roundToFixed(0.12, 3), "0.120", "roundToFixed trailing zeros" ); - t.is( roundToFixed(0.15, 1), "0.2", "roundToFixed round" ); - t.is( roundToFixed(0.15, 0), "0", "roundToFixed zero (edge case)" ); - - t.is( twoDigitFloat(-0.1234), "-0.12", "twoDigitFloat -0.1234 correct"); - t.is( twoDigitFloat(-0.1), "-0.1", "twoDigitFloat -0.1 correct"); - t.is( twoDigitFloat(-0), "0", "twoDigitFloat -0 correct"); - t.is( twoDigitFloat(0), "0", "twoDigitFloat 0 correct"); - t.is( twoDigitFloat(1), "1", "twoDigitFloat 1 correct"); - t.is( twoDigitFloat(1.0), "1", "twoDigitFloat 1.0 correct"); - t.is( twoDigitFloat(1.2), "1.2", "twoDigitFloat 1.2 correct"); - t.is( twoDigitFloat(1.234), "1.23", "twoDigitFloat 1.234 correct"); - t.is( percentFormat(123), "12300%", "percentFormat 123 correct"); - t.is( percentFormat(1.23), "123%", "percentFormat 123 correct"); - t.is( twoDigitAverage(1, 0), "0", "twoDigitAverage dbz correct"); - t.is( twoDigitAverage(1, 1), "1", "twoDigitAverage 1 correct"); - t.is( twoDigitAverage(1, 10), "0.1", "twoDigitAverage .1 correct"); - function reprIs(a, b) { - arguments[0] = repr(a); - arguments[1] = repr(b); - t.is.apply(this, arguments); - } - reprIs( lstrip("\r\t\n foo \n\t\r"), "foo \n\t\r", "lstrip whitespace chars" ); - reprIs( rstrip("\r\t\n foo \n\t\r"), "\r\t\n foo", "rstrip whitespace chars" ); - reprIs( strip("\r\t\n foo \n\t\r"), "foo", "strip whitespace chars" ); - reprIs( lstrip("\r\n\t \r", "\r"), "\n\t \r", "lstrip custom chars" ); - reprIs( rstrip("\r\n\t \r", "\r"), "\r\n\t ", "rstrip custom chars" ); - reprIs( strip("\r\n\t \r", "\r"), "\n\t ", "strip custom chars" ); - - var nf = numberFormatter("$###,###.00 footer"); - t.is( nf(1000.1), "$1,000.10 footer", "trailing zeros" ); - t.is( nf(1000000.1), "$1,000,000.10 footer", "two seps" ); - t.is( nf(100), "$100.00 footer", "shorter than sep" ); - t.is( nf(100.555), "$100.56 footer", "rounding" ); - t.is( nf(-100.555), "$-100.56 footer", "default neg" ); - nf = numberFormatter("-$###,###.00"); - t.is( nf(-100.555), "-$100.56", "custom neg" ); - nf = numberFormatter("0000.0000"); - t.is( nf(0), "0000.0000", "leading and trailing" ); - t.is( nf(1.1), "0001.1000", "leading and trailing" ); - t.is( nf(12345.12345), "12345.1235", "no need for leading/trailing" ); - nf = numberFormatter("0000.0000"); - t.is( nf("taco"), "", "default placeholder" ); - nf = numberFormatter("###,###.00", "foo", "de_DE"); - t.is( nf("taco"), "foo", "custom placeholder" ); - t.is( nf(12345.12345), "12.345,12", "de_DE locale" ); - nf = numberFormatter("#%"); - t.is( nf(1), "100%", "trivial percent" ); - t.is( nf(0.55), "55%", "percent" ); - - var customLocale = { - separator: " apples and ", - decimal: " bagels at ", - percent: "am for breakfast"}; - var customFormatter = numberFormatter("###,###.0%", "No breakfast", customLocale); - t.is( customFormatter(23.458), "2 apples and 345 bagels at 8am for breakfast", "custom locale" ); - - nf = numberFormatter("###,###"); - t.is( nf(123), "123", "large number format" ); - t.is( nf(1234), "1,234", "large number format" ); - t.is( nf(12345), "12,345", "large number format" ); - t.is( nf(123456), "123,456", "large number format" ); - t.is( nf(1234567), "1,234,567", "large number format" ); - t.is( nf(12345678), "12,345,678", "large number format" ); - t.is( nf(123456789), "123,456,789", "large number format" ); - t.is( nf(1234567890), "1,234,567,890", "large number format" ); - t.is( nf(12345678901), "12,345,678,901", "large number format" ); - t.is( nf(123456789012), "123,456,789,012", "large number format" ); -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Iter.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Iter.js deleted file mode 100755 index d0ff146ad..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Iter.js +++ /dev/null @@ -1,176 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.Iter'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.Iter'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_Iter = function (t) { - t.is( sum([1, 2, 3, 4, 5]), 15, "sum works on Arrays" ); - t.is( compare(list([1, 2, 3]), [1, 2, 3]), 0, "list([x]) == [x]" ); - t.is( compare(list(range(6, 0, -1)), [6, 5, 4, 3, 2, 1]), 0, "list(range(6, 0, -1)"); - t.is( compare(list(range(6)), [0, 1, 2, 3, 4, 5]), 0, "list(range(6))" ); - var moreThanTwo = partial(operator.lt, 2); - t.is( sum(ifilter(moreThanTwo, range(6))), 12, "sum(ifilter(, range()))" ); - t.is( sum(ifilterfalse(moreThanTwo, range(6))), 3, "sum(ifilterfalse(, range()))" ); - - var c = count(10); - t.is( compare([c.next(), c.next(), c.next()], [10, 11, 12]), 0, "count()" ); - c = cycle([1, 2]); - t.is( compare([c.next(), c.next(), c.next()], [1, 2, 1]), 0, "cycle()" ); - c = repeat("foo", 3); - t.is( compare(list(c), ["foo", "foo", "foo"]), 0, "repeat()" ); - c = izip([1, 2], [3, 4, 5], repeat("foo")); - t.is( compare(list(c), [[1, 3, "foo"], [2, 4, "foo"]]), 0, "izip()" ); - - t.is( compare(list(range(5)), [0, 1, 2, 3, 4]), 0, "range(x)" ); - c = islice(range(10), 0, 10, 2); - t.is( compare(list(c), [0, 2, 4, 6, 8]), 0, "islice(x, y, z)" ); - - c = imap(operator.add, [1, 2, 3], [2, 4, 6]); - t.is( compare(list(c), [3, 6, 9]), 0, "imap(fn, p, q)" ); - - c = filter(partial(operator.lt, 1), iter([1, 2, 3])); - t.is( compare(c, [2, 3]), 0, "filter(fn, iterable)" ); - - c = map(partial(operator.add, -1), iter([1, 2, 3])); - t.is( compare(c, [0, 1, 2]), 0, "map(fn, iterable)" ); - - c = map(operator.add, iter([1, 2, 3]), [2, 4, 6]); - t.is( compare(c, [3, 6, 9]), 0, "map(fn, iterable, q)" ); - - c = map(operator.add, iter([1, 2, 3]), iter([2, 4, 6])); - t.is( compare(c, [3, 6, 9]), 0, "map(fn, iterable, iterable)" ); - - c = applymap(operator.add, [[1, 2], [2, 4], [3, 6]]); - t.is( compare(list(c), [3, 6, 9]), 0, "applymap()" ); - - c = applymap(function (a) { return [this, a]; }, [[1], [2]], 1); - t.is( compare(list(c), [[1, 1], [1, 2]]), 0, "applymap(self)" ); - - c = chain(range(2), range(3)); - t.is( compare(list(c), [0, 1, 0, 1, 2]), 0, "chain(p, q)" ); - - var lessThanFive = partial(operator.gt, 5); - c = takewhile(lessThanFive, count()); - t.is( compare(list(c), [0, 1, 2, 3, 4]), 0, "takewhile()" ); - - c = dropwhile(lessThanFive, range(10)); - t.is( compare(list(c), [5, 6, 7, 8, 9]), 0, "dropwhile()" ); - - c = tee(range(5), 3); - t.is( compare(list(c[0]), list(c[1])), 0, "tee(..., 3) p0 == p1" ); - t.is( compare(list(c[2]), [0, 1, 2, 3, 4]), 0, "tee(..., 3) p2 == fixed" ); - - t.is( compare(reduce(operator.add, range(10)), 45), 0, "reduce(op.add)" ); - - try { - reduce(operator.add, []); - t.ok( false, "reduce didn't raise anything with empty list and no start?!" ); - } catch (e) { - if (e instanceof TypeError) { - t.ok( true, "reduce raised TypeError correctly" ); - } else { - t.ok( false, "reduce raised the wrong exception?" ); - } - } - - t.is( reduce(operator.add, [], 10), 10, "range initial value OK empty" ); - t.is( reduce(operator.add, [1], 10), 11, "range initial value OK populated" ); - - t.is( compare(iextend([1], range(2)), [1, 0, 1]), 0, "iextend(...)" ); - - var x = []; - exhaust(imap(bind(x.push, x), range(5))); - t.is( compare(x, [0, 1, 2, 3, 4]), 0, "exhaust(...)" ); - - t.is( every([1, 2, 3, 4, 5, 4], lessThanFive), false, "every false" ); - t.is( every([1, 2, 3, 4, 4], lessThanFive), true, "every true" ); - t.is( some([1, 2, 3, 4, 4], lessThanFive), true, "some true" ); - t.is( some([5, 6, 7, 8, 9], lessThanFive), false, "some false" ); - t.is( some([5, 6, 7, 8, 4], lessThanFive), true, "some true" ); - - var rval = []; - forEach(range(2), rval.push, rval); - t.is( compare(rval, [0, 1]), 0, "forEach works bound" ); - - function foo(o) { - rval.push(o); - } - forEach(range(2), foo); - t.is( compare(rval, [0, 1, 0, 1]), 0, "forEach works unbound" ); - - t.is( compare(sorted([3, 2, 1]), [1, 2, 3]), 0, "sorted default" ); - rval = sorted(["aaa", "bb", "c"], keyComparator("length")); - t.is(compare(rval, ["c", "bb", "aaa"]), 0, "sorted custom"); - - t.is( compare(reversed(range(4)), [3, 2, 1, 0]), 0, "reversed iterator" ); - t.is( compare(reversed([5, 6, 7]), [7, 6, 5]), 0, "reversed list" ); - - var o = {lst: [1, 2, 3], iterateNext: function () { return this.lst.shift(); }}; - t.is( compare(list(o), [1, 2, 3]), 0, "iterateNext" ); - - - function except(exc, func) { - try { - func(); - t.ok(false, exc.name + " was not raised."); - } catch (e) { - if (e == exc) { - t.ok( true, "raised " + exc.name + " correctly" ); - } else { - t.ok( false, "raised the wrong exception?" ); - } - } - } - - odd = partial(operator.and, 1) - - // empty - grouped = groupby([]); - except(StopIteration, grouped.next); - - // exhaust sub-iterator - grouped = groupby([2,4,6,7], odd); - kv = grouped.next(); k = kv[0], subiter = kv[1]; - t.is(k, 0, "odd(2) = odd(4) = odd(6) == 0"); - t.is(subiter.next(), 2, "sub-iterator.next() == 2"); - t.is(subiter.next(), 4, "sub-iterator.next() == 4"); - t.is(subiter.next(), 6, "sub-iterator.next() == 6"); - except(StopIteration, subiter.next); - kv = grouped.next(); key = kv[0], subiter = kv[1]; - t.is(key, 1, "odd(7) == 1"); - t.is(subiter.next(), 7, "sub-iterator.next() == 7"); - except(StopIteration, subiter.next); - - // not consume sub-iterator - grouped = groupby([2,4,6,7], odd); - kv = grouped.next(); key = kv[0], subiter = kv[1]; - t.is(key, 0, "0 = odd(2) = odd(4) = odd(6)"); - kv = grouped.next(); key = kv[0], subiter = kv[1]; - t.is(key, 1, "1 = odd(7)"); - except(StopIteration, grouped.next); - - // consume sub-iterator partially - grouped = groupby([3,1,1,2], odd); - kv = grouped.next(); key = kv[0], subiter = kv[1]; - t.is(key, 1, "odd(1) == 1"); - t.is(subiter.next(), 3, "sub-iterator.next() == 3"); - kv = grouped.next(); key = kv[0], v = kv[1]; - t.is(key, 0, "skip (1,1), odd(2) == 0"); - except(StopIteration, grouped.next); - - // null - grouped = groupby([null,null]); - kv = grouped.next(); k = kv[0], v = kv[1]; - t.is(k, null, "null ok"); - - // groupby - array version - isEqual = (t.isDeeply || function (a, b, msg) { - return t.ok(compare(a, b) == 0, msg); - }); - isEqual(groupby_as_array([ ] ), [ ], "empty"); - isEqual(groupby_as_array([1,1,1]), [ [1,[1,1,1]] ], "[1,1,1]: [1,1,1]"); - isEqual(groupby_as_array([1,2,2]), [ [1,[1] ], [2,[2,2]] ], "[1,2,2]: [1], [2,2]"); - isEqual(groupby_as_array([1,1,2]), [ [1,[1,1] ], [2,[2 ]] ], "[1,1,2]: [1,1], [2]"); - isEqual(groupby_as_array([null,null] ), [ [null,[null,null]] ], "[null,null]: [null,null]"); - grouped = groupby_as_array([1,1,3,2,4,6,8], odd); - isEqual(grouped, [[1, [1,1,3]], [0,[2,4,6,8]]], "[1,1,3,2,4,6,7] odd: [1,1,3], [2,4,6,8]"); -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Logging.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Logging.js deleted file mode 100755 index 66f4989b0..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Logging.js +++ /dev/null @@ -1,75 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.Logging'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.Logging'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_Logging = function (t) { - - // just in case - logger.clear(); - - t.is( logLevelAtLeast('DEBUG')('INFO'), false, 'logLevelAtLeast false' ); - t.is( logLevelAtLeast('WARNING')('INFO'), false, 'logLevelAtLeast true' ); - t.ok( logger instanceof Logger, "global logger installed" ); - - var allMessages = []; - logger.addListener("allMessages", null, - bind(allMessages.push, allMessages)); - - var fatalMessages = []; - logger.addListener("fatalMessages", "FATAL", - bind(fatalMessages.push, fatalMessages)); - - var firstTwo = []; - logger.addListener("firstTwo", null, - bind(firstTwo.push, firstTwo)); - - - log("foo"); - var msgs = logger.getMessages(); - t.is( msgs.length, 1, 'global log() put one message in queue' ); - t.is( compare(allMessages, msgs), 0, "allMessages listener" ); - var msg = msgs.pop(); - t.is( compare(msg.info, ["foo"]), 0, "info matches" ); - t.is( msg.level, "INFO", "level matches" ); - - logDebug("debugFoo"); - t.is( msgs.length, 0, 'getMessages() returns copy' ); - msgs = logger.getMessages(); - t.is( compare(allMessages, msgs), 0, "allMessages listener" ); - t.is( msgs.length, 2, 'logDebug()' ); - msg = msgs.pop(); - t.is( compare(msg.info, ["debugFoo"]), 0, "info matches" ); - t.is( msg.level, "DEBUG", "level matches" ); - - logger.removeListener("firstTwo"); - - logError("errorFoo"); - msgs = logger.getMessages(); - t.is( compare(allMessages, msgs), 0, "allMessages listener" ); - t.is( msgs.length, 3, 'logError()' ); - msg = msgs.pop(); - t.is( compare(msg.info, ["errorFoo"]), 0, "info matches" ); - t.is( msg.level, "ERROR", "level matches" ); - - logWarning("warningFoo"); - msgs = logger.getMessages(); - t.is( compare(allMessages, msgs), 0, "allMessages listener" ); - t.is( msgs.length, 4, 'logWarning()' ); - msg = msgs.pop(); - t.is( compare(msg.info, ["warningFoo"]), 0, "info matches" ); - t.is( msg.level, "WARNING", "level matches" ); - - logFatal("fatalFoo"); - msgs = logger.getMessages(); - t.is( compare(allMessages, msgs), 0, "allMessages listener" ); - t.is( msgs.length, 5, 'logFatal()' ); - msg = msgs.pop(); - t.is( compare(fatalMessages, [msg]), 0, "fatalMessages listener" ); - t.is( compare(msg.info, ["fatalFoo"]), 0, "info matches" ); - t.is( msg.level, "FATAL", "level matches" ); - - logger.removeListener("allMessages"); - logger.removeListener("fatalMessages"); - - t.is( compare(firstTwo, logger.getMessages().slice(0, 2)), 0, "firstTwo" ); -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.html deleted file mode 100755 index 2f695a6ce..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - - - - - - - -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.json b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.json deleted file mode 100755 index 037e18c81..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Async.json +++ /dev/null @@ -1 +0,0 @@ -{"passed": true} diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Base.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Base.html deleted file mode 100755 index 61296f1bc..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Base.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Color.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Color.html deleted file mode 100755 index ba5e168f6..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Color.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - -
    - - -
    -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DOM.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DOM.html deleted file mode 100755 index 07fb5c0ab..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DOM.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - - - - - -
    -
    - - - - - - - - - -
    -
    - - -
    -
    - -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DateTime.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DateTime.html deleted file mode 100755 index a3550a200..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DateTime.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DragAndDrop.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DragAndDrop.html deleted file mode 100755 index 177d18311..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-DragAndDrop.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - -
    drag1
    -
    drop1
    -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Format.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Format.html deleted file mode 100755 index 3db19d6e9..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Format.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Iter.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Iter.html deleted file mode 100755 index ea2a465b4..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Iter.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-JSAN.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-JSAN.html deleted file mode 100755 index 53a0e0ed0..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-JSAN.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Logging.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Logging.html deleted file mode 100755 index 0650da1db..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Logging.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-MochiKit.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-MochiKit.html deleted file mode 100755 index b5ccf8f1d..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-MochiKit.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Signal.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Signal.html deleted file mode 100755 index 016629323..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Signal.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - -Please ignore this button:
    - -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Style.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Style.html deleted file mode 100755 index eb797cf3a..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Style.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - -
    TEST
    - -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Visual.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Visual.html deleted file mode 100755 index 5667d4eb7..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_MochiKit-Visual.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - - - - - - - - - -
    elt1
    -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Signal.js b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Signal.js deleted file mode 100755 index eb781f678..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_Signal.js +++ /dev/null @@ -1,380 +0,0 @@ -if (typeof(dojo) != 'undefined') { dojo.require('MochiKit.Signal'); } -if (typeof(JSAN) != 'undefined') { JSAN.use('MochiKit.Signal'); } -if (typeof(tests) == 'undefined') { tests = {}; } - -tests.test_Signal = function (t) { - - var submit = MochiKit.DOM.getElement('submit'); - var ident = null; - var i = 0; - var aFunction = function() { - t.ok(this === submit, "aFunction should have 'this' as submit"); - i++; - if (typeof(this.someVar) != 'undefined') { - i += this.someVar; - } - }; - - var aObject = {}; - aObject.aMethod = function() { - t.ok(this === aObject, "aMethod should have 'this' as aObject"); - i++; - }; - - ident = connect('submit', 'onclick', aFunction); - MochiKit.DOM.getElement('submit').click(); - t.is(i, 1, 'HTML onclick event can be connected to a function'); - - disconnect(ident); - MochiKit.DOM.getElement('submit').click(); - t.is(i, 1, 'HTML onclick can be disconnected from a function'); - - var submit = MochiKit.DOM.getElement('submit'); - - ident = connect(submit, 'onclick', aFunction); - submit.click(); - t.is(i, 2, 'Checking that a DOM element can be connected to a function'); - - disconnect(ident); - submit.click(); - t.is(i, 2, '...and then disconnected'); - - if (MochiKit.DOM.getElement('submit').fireEvent || - (document.createEvent && - typeof(document.createEvent('MouseEvents').initMouseEvent) == 'function')) { - - /* - - Adapted from: - http://www.devdaily.com/java/jwarehouse/jforum/tests/selenium/javascript/htmlutils.js.shtml - License: Apache - Copyright: Copyright 2004 ThoughtWorks, Inc - - */ - var triggerMouseEvent = function(element, eventType, canBubble) { - element = MochiKit.DOM.getElement(element); - canBubble = (typeof(canBubble) == 'undefined') ? true : canBubble; - if (element.fireEvent) { - var newEvt = document.createEventObject(); - newEvt.clientX = 1; - newEvt.clientY = 1; - newEvt.button = 1; - element.fireEvent('on' + eventType, newEvt); - } else if (document.createEvent && (typeof(document.createEvent('MouseEvents').initMouseEvent) == 'function')) { - var evt = document.createEvent('MouseEvents'); - evt.initMouseEvent(eventType, canBubble, true, // event, bubbles, cancelable - document.defaultView, 1, // view, # of clicks - 1, 0, 0, 0, // screenX, screenY, clientX, clientY - false, false, false, false, // ctrlKey, altKey, shiftKey, metaKey - 0, null); // buttonCode, relatedTarget - element.dispatchEvent(evt); - } - }; - - var eventTest = function(e) { - i++; - t.ok((typeof(e.event()) === 'object'), 'checking that event() is an object'); - t.ok((typeof(e.type()) === 'string'), 'checking that type() is a string'); - t.ok((e.target() === MochiKit.DOM.getElement('submit')), 'checking that target is "submit"'); - t.ok((typeof(e.modifier()) === 'object'), 'checking that modifier() is an object'); - t.ok(e.modifier().alt === false, 'checking that modifier().alt is defined, but false'); - t.ok(e.modifier().ctrl === false, 'checking that modifier().ctrl is defined, but false'); - t.ok(e.modifier().meta === false, 'checking that modifier().meta is defined, but false'); - t.ok(e.modifier().shift === false, 'checking that modifier().shift is defined, but false'); - t.ok((typeof(e.mouse()) === 'object'), 'checking that mouse() is an object'); - t.ok((typeof(e.mouse().button) === 'object'), 'checking that mouse().button is an object'); - t.ok(e.mouse().button.left === true, 'checking that mouse().button.left is true'); - t.ok(e.mouse().button.middle === false, 'checking that mouse().button.middle is false'); - t.ok(e.mouse().button.right === false, 'checking that mouse().button.right is false'); - t.ok((typeof(e.mouse().page) === 'object'), 'checking that mouse().page is an object'); - t.ok((typeof(e.mouse().page.x) === 'number'), 'checking that mouse().page.x is a number'); - t.ok((typeof(e.mouse().page.y) === 'number'), 'checking that mouse().page.y is a number'); - t.ok((typeof(e.mouse().client) === 'object'), 'checking that mouse().client is an object'); - t.ok((typeof(e.mouse().client.x) === 'number'), 'checking that mouse().client.x is a number'); - t.ok((typeof(e.mouse().client.y) === 'number'), 'checking that mouse().client.y is a number'); - - /* these should not be defined */ - t.ok((typeof(e.relatedTarget()) === 'undefined'), 'checking that relatedTarget() is undefined'); - t.ok((typeof(e.key()) === 'undefined'), 'checking that key() is undefined'); - }; - - - ident = connect('submit', 'onmousedown', eventTest); - triggerMouseEvent('submit', 'mousedown', false); - t.is(i, 3, 'Connecting an event to an HTML object and firing a synthetic event'); - - disconnect(ident); - triggerMouseEvent('submit', 'mousedown', false); - t.is(i, 3, 'Disconnecting an event to an HTML object and firing a synthetic event'); - - - - } - - // non-DOM tests - - var hasNoSignals = {}; - - var hasSignals = {someVar: 1}; - - var i = 0; - - var aFunction = function() { - i++; - if (typeof(this.someVar) != 'undefined') { - i += this.someVar; - } - }; - - var bFunction = function(someArg, someOtherArg) { - i += someArg + someOtherArg; - }; - - - var aObject = {}; - aObject.aMethod = function() { - i++; - }; - - aObject.bMethod = function() { - i++; - }; - - var bObject = {}; - bObject.bMethod = function() { - i++; - }; - - - ident = connect(hasSignals, 'signalOne', aFunction); - signal(hasSignals, 'signalOne'); - t.is(i, 2, 'Connecting function'); - i = 0; - - disconnect(ident); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'New style disconnecting function'); - i = 0; - - - ident = connect(hasSignals, 'signalOne', bFunction); - signal(hasSignals, 'signalOne', 1, 2); - t.is(i, 3, 'Connecting function'); - i = 0; - - disconnect(ident); - signal(hasSignals, 'signalOne', 1, 2); - t.is(i, 0, 'New style disconnecting function'); - i = 0; - - - connect(hasSignals, 'signalOne', aFunction); - signal(hasSignals, 'signalOne'); - t.is(i, 2, 'Connecting function'); - i = 0; - - disconnect(hasSignals, 'signalOne', aFunction); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'Old style disconnecting function'); - i = 0; - - - ident = connect(hasSignals, 'signalOne', aObject, aObject.aMethod); - signal(hasSignals, 'signalOne'); - t.is(i, 1, 'Connecting obj-function'); - i = 0; - - disconnect(ident); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'New style disconnecting obj-function'); - i = 0; - - connect(hasSignals, 'signalOne', aObject, aObject.aMethod); - signal(hasSignals, 'signalOne'); - t.is(i, 1, 'Connecting obj-function'); - i = 0; - - disconnect(hasSignals, 'signalOne', aObject, aObject.aMethod); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'Disconnecting obj-function'); - i = 0; - - - ident = connect(hasSignals, 'signalTwo', aObject, 'aMethod'); - signal(hasSignals, 'signalTwo'); - t.is(i, 1, 'Connecting obj-string'); - i = 0; - - disconnect(ident); - signal(hasSignals, 'signalTwo'); - t.is(i, 0, 'New style disconnecting obj-string'); - i = 0; - - - connect(hasSignals, 'signalTwo', aObject, 'aMethod'); - signal(hasSignals, 'signalTwo'); - t.is(i, 1, 'Connecting obj-string'); - i = 0; - - disconnect(hasSignals, 'signalTwo', aObject, 'aMethod'); - signal(hasSignals, 'signalTwo'); - t.is(i, 0, 'Old style disconnecting obj-string'); - i = 0; - - - var shouldRaise = function() { return undefined.attr; }; - - try { - connect(hasSignals, 'signalOne', shouldRaise); - signal(hasSignals, 'signalOne'); - t.ok(false, 'An exception was not raised'); - } catch (e) { - t.ok(true, 'An exception was raised'); - } - disconnect(hasSignals, 'signalOne', shouldRaise); - t.is(i, 0, 'Exception raised, signal should not have fired'); - i = 0; - - - connect(hasSignals, 'signalOne', aObject, 'aMethod'); - connect(hasSignals, 'signalOne', aObject, 'bMethod'); - signal(hasSignals, 'signalOne'); - t.is(i, 2, 'Connecting one signal to two slots in one object'); - i = 0; - - disconnect(hasSignals, 'signalOne', aObject, 'aMethod'); - disconnect(hasSignals, 'signalOne', aObject, 'bMethod'); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'Disconnecting one signal from two slots in one object'); - i = 0; - - - connect(hasSignals, 'signalOne', aObject, 'aMethod'); - connect(hasSignals, 'signalOne', bObject, 'bMethod'); - signal(hasSignals, 'signalOne'); - t.is(i, 2, 'Connecting one signal to two slots in two objects'); - i = 0; - - disconnect(hasSignals, 'signalOne', aObject, 'aMethod'); - disconnect(hasSignals, 'signalOne', bObject, 'bMethod'); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'Disconnecting one signal from two slots in two objects'); - i = 0; - - - try { - connect(nothing, 'signalOne', aObject, 'aMethod'); - signal(nothing, 'signalOne'); - t.ok(false, 'An exception was not raised when connecting undefined'); - } catch (e) { - t.ok(true, 'An exception was raised when connecting undefined'); - } - - try { - disconnect(nothing, 'signalOne', aObject, 'aMethod'); - t.ok(false, 'An exception was not raised when disconnecting undefined'); - } catch (e) { - t.ok(true, 'An exception was raised when disconnecting undefined'); - } - - - try { - connect(hasSignals, 'signalOne', nothing); - signal(hasSignals, 'signalOne'); - t.ok(false, 'An exception was not raised when connecting an undefined function'); - } catch (e) { - t.ok(true, 'An exception was raised when connecting an undefined function'); - } - - try { - disconnect(hasSignals, 'signalOne', nothing); - t.ok(false, 'An exception was not raised when disconnecting an undefined function'); - } catch (e) { - t.ok(true, 'An exception was raised when disconnecting an undefined function'); - } - - - try { - connect(hasSignals, 'signalOne', aObject, aObject.nothing); - signal(hasSignals, 'signalOne'); - t.ok(false, 'An exception was not raised when connecting an undefined method'); - } catch (e) { - t.ok(true, 'An exception was raised when connecting an undefined method'); - } - - try { - connect(hasSignals, 'signalOne', aObject, 'nothing'); - signal(hasSignals, 'signalOne'); - t.ok(false, 'An exception was not raised when connecting an undefined method (as string)'); - } catch (e) { - t.ok(true, 'An exception was raised when connecting an undefined method (as string)'); - } - - t.is(i, 0, 'Signals should not have fired'); - - connect(hasSignals, 'signalOne', aFunction); - connect(hasSignals, 'signalOne', aObject, 'aMethod'); - disconnectAll(hasSignals, 'signalOne'); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'disconnectAll works with single explicit signal'); - i = 0; - - connect(hasSignals, 'signalOne', aFunction); - connect(hasSignals, 'signalOne', aObject, 'aMethod'); - connect(hasSignals, 'signalTwo', aFunction); - connect(hasSignals, 'signalTwo', aObject, 'aMethod'); - disconnectAll(hasSignals, 'signalOne'); - signal(hasSignals, 'signalOne'); - t.is(i, 0, 'disconnectAll works with single explicit signal'); - signal(hasSignals, 'signalTwo'); - t.is(i, 3, 'disconnectAll does not disconnect unrelated signals'); - i = 0; - - connect(hasSignals, 'signalOne', aFunction); - connect(hasSignals, 'signalOne', aObject, 'aMethod'); - connect(hasSignals, 'signalTwo', aFunction); - connect(hasSignals, 'signalTwo', aObject, 'aMethod'); - disconnectAll(hasSignals, 'signalOne', 'signalTwo'); - signal(hasSignals, 'signalOne'); - signal(hasSignals, 'signalTwo'); - t.is(i, 0, 'disconnectAll works with two explicit signals'); - i = 0; - - connect(hasSignals, 'signalOne', aFunction); - connect(hasSignals, 'signalOne', aObject, 'aMethod'); - connect(hasSignals, 'signalTwo', aFunction); - connect(hasSignals, 'signalTwo', aObject, 'aMethod'); - disconnectAll(hasSignals, ['signalOne', 'signalTwo']); - signal(hasSignals, 'signalOne'); - signal(hasSignals, 'signalTwo'); - t.is(i, 0, 'disconnectAll works with two explicit signals as a list'); - i = 0; - - connect(hasSignals, 'signalOne', aFunction); - connect(hasSignals, 'signalOne', aObject, 'aMethod'); - connect(hasSignals, 'signalTwo', aFunction); - connect(hasSignals, 'signalTwo', aObject, 'aMethod'); - disconnectAll(hasSignals); - signal(hasSignals, 'signalOne'); - signal(hasSignals, 'signalTwo'); - t.is(i, 0, 'disconnectAll works with implicit signals'); - i = 0; - - var toggle = function() { - disconnectAll(hasSignals, 'signalOne'); - connect(hasSignals, 'signalOne', aFunction); - i++; - }; - - connect(hasSignals, 'signalOne', aFunction); - connect(hasSignals, 'signalTwo', function() { i++; }); - connect(hasSignals, 'signalTwo', toggle); - connect(hasSignals, 'signalTwo', function() { i++; }); // #147 - connect(hasSignals, 'signalTwo', function() { i++; }); - signal(hasSignals, 'signalTwo'); - t.is(i, 4, 'disconnectAll fired in a signal loop works'); - i = 0; - disconnectAll('signalOne'); - disconnectAll('signalTwo'); - -}; diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug100533.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug100533.html deleted file mode 100755 index 6d9280f19..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug100533.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - Test for Bug 100533 - - - - - -Mozilla Bug 100533 -

    -
    - - - - -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1297.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1297.html deleted file mode 100755 index 41b9bffba..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1297.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - Test for Bug 1297 - - - - - -Mozilla Bug 1297 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1366.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1366.html deleted file mode 100755 index a66fa94fe..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1366.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Test for Bug 1366 - - - - - -Mozilla Bug 1366 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1400.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1400.html deleted file mode 100755 index 355844881..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1400.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - Test for Bug 1400 - - - - - -Mozilla Bug 1400 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1682.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1682.html deleted file mode 100755 index 57edbc9bc..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1682.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - Test for Bug 1682 - - - - - -Mozilla Bug 1682 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug172261.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug172261.html deleted file mode 100755 index d47de4159..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug172261.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - Test for Bug 172261 - - - - - -Mozilla Bug 172261 -

    - -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1823.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1823.html deleted file mode 100755 index c319f98bf..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug1823.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Test for Bug 1823 - - - - - -Mozilla Bug 1823 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug2082.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug2082.html deleted file mode 100755 index f429ce754..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug2082.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Test for Bug 2082 - - - - - -Mozilla Bug 2082 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218236.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218236.html deleted file mode 100755 index 0e9303930..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218236.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - Test for Bug 218236 - - - - - -Mozilla Bug 218236 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218277.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218277.html deleted file mode 100755 index e63f0188e..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug218277.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Test for Bug 218277 - - - - - -Mozilla Bug 218277 -

    -
    - -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug237071.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug237071.html deleted file mode 100755 index ceb7ebd9f..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug237071.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Test for Bug 237071 - - - - - -Mozilla Bug 237071 -

    -
    -
      -
    1. should be 22
    2. -
    3. should be 23
    4. -
    -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug238409.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug238409.html deleted file mode 100755 index c9b4f25a0..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug238409.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Test for Bug 238409 - - - - - -Mozilla Bug 238409 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug24958.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug24958.html deleted file mode 100755 index 3cd04d1c5..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug24958.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Test for Bug 24958 - - - - - - -Mozilla Bug 24958 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug277724.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug277724.html deleted file mode 100755 index ace086776..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug277724.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - Test for Bug 277724 - - - - - -Mozilla Bug 277724 -

    -
    -
    -
    - - - - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-1.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-1.html deleted file mode 100755 index 39d63e57a..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-1.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - Test for Bug 300691 - - - - - - -Mozilla Bug 300691 -

    - -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-2.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-2.html deleted file mode 100755 index e2a4e4986..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-2.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - Test for Bug 300691 - - - - - -Mozilla Bug 300691 -

    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-3.xhtml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-3.xhtml deleted file mode 100755 index df20ff992..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug300691-3.xhtml +++ /dev/null @@ -1,51 +0,0 @@ - - - - Test for Bug 300691 - - - - - -Mozilla Bug 300691 -

    - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug302186.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug302186.html deleted file mode 100755 index e6de785db..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug302186.html +++ /dev/null @@ -1,423 +0,0 @@ - - - - - Test for Bug 302186 - - - - - - - -Mozilla Bug 302186 -

    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - - There should be no red. -
    -
    - There should be no red. - -
    -
    - - -
    -
    - - There should be no red. -
    -
    - There should be no red. -
    -
    - - -
    -
    - - There should be no red. -
    -
    - There should be no red. - -
    -
    - - - - -
    -
    - There should be no red. -
    -
    - - -
    -
    - There should be no red. -
    -
    - -
    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308484.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308484.html deleted file mode 100755 index 014a570cc..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308484.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - Test for Bug 308484 - - - - - -Mozilla Bug 308484 -

    - -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308856.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308856.html deleted file mode 100755 index 9c2034188..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug308856.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - Test for Bug 308856 - - - - - -Mozilla Bug 308856 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.html deleted file mode 100755 index 46fb7908c..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - Test for Bug 311681 - - - - - -Mozilla Bug 311681 - -

    - -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xhtml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xhtml deleted file mode 100755 index d869cc3b3..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xhtml +++ /dev/null @@ -1,105 +0,0 @@ - - - - Test for Bug 311681 - - - - - -Mozilla Bug 311681 - -

    - -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xml deleted file mode 100755 index 9e3dadede..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xml +++ /dev/null @@ -1,106 +0,0 @@ - - - - Test for Bug 311681 - - - - - -Mozilla Bug 311681 - -

    - -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xul b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xul deleted file mode 100755 index 9c7f5af87..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug311681.xul +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - Test for Bug 311681 - - - - -Mozilla Bug 311681 - -

    - -
    -
    - - -
    diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug319381.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug319381.html deleted file mode 100755 index 8ed87f863..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug319381.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - Test for Bug 319381 - - - - - -Mozilla Bug 319381 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug332848.xhtml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug332848.xhtml deleted file mode 100755 index 108745586..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug332848.xhtml +++ /dev/null @@ -1,71 +0,0 @@ - - - - Test for Bug 332848 - - - - - -Mozilla Bug 332848 -

    - -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug333983.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug333983.html deleted file mode 100755 index 947ac1c73..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug333983.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Test for Bug 333983 - - - - - -Mozilla Bug 333983 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug3348.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug3348.html deleted file mode 100755 index 19968c02d..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug3348.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Test for Bug 3348 - - - - - -Mozilla Bug 3348 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337124.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337124.html deleted file mode 100755 index 99cc5c741..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337124.html +++ /dev/null @@ -1,33 +0,0 @@ - -Test for Bug 337124 - - - - - -Mozilla Bug 337124 - - - - -
    - -
    - -
    -
    - - -
    - 
    -
    - - \ No newline at end of file diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337631.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337631.html deleted file mode 100755 index b8e7bc415..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug337631.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - Test for Bug 337631 - - - - - -Mozilla Bug 337631 -

    -
    - -foo - -

    adsfasdf

    - -
    -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338541.xhtml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338541.xhtml deleted file mode 100755 index fb61249dc..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338541.xhtml +++ /dev/null @@ -1,50 +0,0 @@ - - - - Test for Bug 338541 - - - - - -Mozilla Bug 338541 -

    -
    -
    -
    - - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338679.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338679.html deleted file mode 100755 index 9f76beb72..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug338679.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - -Testcase bug 338679 - - - - - -Mozilla Bug 338679 -
    -
    -
    Actual result:
    -
    -
    -    
    -
    - -
    Expected result:
    - -
    -
    -Previous:       width: 20em;
    -New:            width: auto;
    -    
    -
    -
    -
    -
    -
    -
    - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339350.xhtml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339350.xhtml deleted file mode 100755 index e856e45e9..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339350.xhtml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.html b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.html deleted file mode 100755 index 5a65c21fa..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - Test for Bug 339494 - - - - - -Mozilla Bug 339494 -

    - -
    -
    -
    - - - diff --git a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.xhtml b/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.xhtml deleted file mode 100755 index 92894e607..000000000 --- a/com.ibm.wala.cast.js.test/examples-src/pages/mochitest/tests/test_bug339494.xhtml +++ /dev/null @@ -1,61 +0,0 @@ - - - - Test for Bug 339494 - - - - - -Mozilla Bug 339494 -

    -