summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/1.2.1/modules/workspace-admin/src/main/resources/composite.html
blob: 96cf59c7c2d3008bd4672cef5df827c148ffdd5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!--
    * 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>SCA Domain - Domain Composite</title>

<script type="text/javascript" src="composite.js"></script>
<script type="text/javascript" src="utils.js"></script>

<script language="JavaScript">

	//@Reference
	var domainComposite = new Reference("domainComposite");
	
	function getComposites() {
		domainComposite.get("", getCompositesResponse);
	}
	
	function contributionURI(id) {
	       var i = id.indexOf(';');
	       return id.substring(10, i);
	}
	
	function compositeName(id) {
	       var i = id.indexOf(';');
	       return id.substring(i + 1);
	}
		
	function getCompositesResponse(feed) {
		if (feed != null) {
			var entries = feed.getElementsByTagName("entry");              
			var composites = "";
			composites += '<table width="100%">';
			composites += '<tr><th>Composite</th>' +
			'<th>Contribution</th>' +
			'<th>Components</th>' +
			'</tr>';
			//'<th>Composite Install Image</th>' +
			
			for (var i=0; i<entries.length; i++) {
				var id = entries[i].getElementsByTagName("id")[0].firstChild.nodeValue;
				var link = entries[i].getElementsByTagName("link")[0].getAttribute("href");
				var uri = contributionURI(id);
				var qname = compositeName(id);

				var content = "";
				if (entries[i].getElementsByTagName("content")[0].firstChild != null) {
					content = entries[i].getElementsByTagName("content")[0].firstChild.nodeValue;
				}
				var components = '';
				var bs = content.indexOf('<span id="components">');
				if (bs != -1) {
					var es = content.indexOf('</span>', bs); 
					components = content.substring(bs, es + 7);
				} else {
					bs = content.indexOf('<span id="problem"');
					if (bs != -1) {
						var es = content.indexOf('</span>', bs); 
						components = content.substring(bs, es + 7);
					}
				}
				
				composites += '<tr>'
				composites += '<td><input name="composites" type="checkbox" value="' + id + '">';
				composites += '<a href=\"' + link + '\">' + qname + '</a></td>';
				composites += '<td><a href="/contribution/' + uri + '">' + uri + '</a></td>';
				composites += '<td class=tdw>' + components + '</td>';
				//composites += '<td><a href="/composite-image/?composite=' + id + '"><img src="icons/feed-icon.png" border="0"></a></td>';
				composites += '</tr>';
			}
			composites += '</table>';
			document.getElementById("composites").innerHTML = composites;
		}
	}

	function deleteComposite() {
		var composites  = array(document.domainCompositeForm.composites);
		for (var i = 0; i < composites.length; i++) {
			if (composites[i].checked) {
			    var id = composites[i].value;
				domainComposite.del(id, deleteCompositeResponse);
			}
		}
	}

	function deleteCompositeResponse() {
	    getComposites();
	}	

	function addComposite() {
		var id  = 'composite:' +
			document.newCompositeForm.contributionURI.value + ';' +
			document.newCompositeForm.compositeNamespace.value + ';' +
			document.newCompositeForm.compositeName.value;
		var entry = '<entry xmlns="http://www.w3.org/2005/Atom">' +
				'<title>' + id +'</title>' +
              	'<id>' + id + '</id>' +
               	'</entry>';
		domainComposite.post(entry, addCompositeResponse);
	}

	function addCompositeResponse() {
		document.newCompositeForm.compositeNamespace.value = "";
		document.newCompositeForm.compositeName.value = "";
		document.newCompositeForm.contributionURI.value = "";
	    getComposites();
	}	

	function init() {
		toolbar();
		getComposites();
	}
		
</script>

<link rel="stylesheet" type="text/css" href="admin.css">
</head>

<body onload="init()">
  <div id="toolbar"></div>

  <div id="domainComposite">
  <br>
  <span class=hd1>
  SCA Domain<br><br>
  Domain Composite&nbsp;<a href="/composite/"><img src="icons/feed-icon.png" border="0"></a>
  </span>
  <br><br>
  Here is the list of SCA composites currently included as top-level composites in your SCA domain.
  <br><br>
  
  <form name="domainCompositeForm">
    <div id="composites" ></div>
    <br>
    <input type="button" onClick="deleteComposite()"  value="Delete" />
  </form>
  
  <br><br>
  
  <form name="newCompositeForm">
    <table width="100%">
    <tr><th>Add Composite</th></tr>
    <tr><td>Add an SCA composite describing your SCA service components.</td></tr>
    </table>
    <br>
	<table>    
    <tr><td>Composite namespace:</td><td><input type="text" name="compositeNamespace" size="50"/></td><td>e.g. http://my/namespace</td></tr> 
    <tr><td>Composite name:</td><td><input type="text" name="compositeName" size="50"/></td><td>e.g. mycomposite</td></tr>
    <tr><td>Contribution URI:</td><td><input type="text" name="contributionURI" size="50"/></td><td>e.g. mycontrib, http://mycontrib</td></tr>
    </table>
    <input type="button" onClick="addComposite()" value="Add" />
  </form>
  
  </div>
</body>
</html>