summaryrefslogtreecommitdiffstats
path: root/sandbox/kgoodson/jagg/Attic/jagg.html
diff options
context:
space:
mode:
authorkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-01-27 14:48:52 +0000
committerkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-01-27 14:48:52 +0000
commitcf11dd62a0dbdcd025d7805b32eef32e8c4534f8 (patch)
tree988c076e796a2146fbffc21fc90ae78885918214 /sandbox/kgoodson/jagg/Attic/jagg.html
parent8286c4263ebaed641316a76e72341428a94bb29e (diff)
remove unnecessary items
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@903665 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/kgoodson/jagg/Attic/jagg.html73
1 files changed, 0 insertions, 73 deletions
diff --git a/sandbox/kgoodson/jagg/Attic/jagg.html b/sandbox/kgoodson/jagg/Attic/jagg.html
deleted file mode 100644
index 05e42492e7..0000000000
--- a/sandbox/kgoodson/jagg/Attic/jagg.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
--->
-<html>
-<head>
-<title>jagg</title>
-
-<script type="text/javascript" src="/dojo/dojo.js"></script>
-<script type="text/javascript" src="plan.js"></script>
-
-<script language="JavaScript">
-
- //@Reference
- var plan = new tuscany.sca.Reference("plan");
-
- var milestones;
-
- function plan_getResponse(items,exception) {
- if(exception){
- alert(exception.message);
- return;
- }
- var mslist = "";
-
- for (var i=0; i<items.length; i++) {
- //mslist+= items[i].jira.jiraTitle +"</br/>\n";
- mslist +="+";
- }
- document.getElementById('jagg').innerHTML='<h2>' +
- 'Thanks for Looking!</h2>' + mslist;
- return;
-
- }
-
-
-function init()
-{
- plan.get().addCallback(plan_getResponse); /*1*/
-}
-
-
-</script>
-
-</head>
-
-<body onload="init()">
-<h1>JIRA Aggregator</h1>
- <div id="milestones">
- <h2>Milestones</h2>
- <form name="msForm">
- <div id="jiras" ></div>
- <br>
- <input type="button" onClick="signal_click()" value="Click Me">
- </form>
- <br>
- </div>
-</body>
-</html> \ No newline at end of file