From ef7c2424929d86cd59c0197729901bee89d67221 Mon Sep 17 00:00:00 2001 From: antelder Date: Mon, 18 Aug 2008 12:01:31 +0000 Subject: TUSCANY-2391: apply latest patch from Thilina for Tuscany SCA support in the Geronimo Admin Console git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@686733 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/webapp/pages/Standalone.jsp | 107 +++++++++++++++++---- 1 file changed, 86 insertions(+), 21 deletions(-) (limited to 'sandbox/thilina/geronimo_ACE/src/main/webapp/pages/Standalone.jsp') diff --git a/sandbox/thilina/geronimo_ACE/src/main/webapp/pages/Standalone.jsp b/sandbox/thilina/geronimo_ACE/src/main/webapp/pages/Standalone.jsp index 120d7583eb..feaf41d156 100644 --- a/sandbox/thilina/geronimo_ACE/src/main/webapp/pages/Standalone.jsp +++ b/sandbox/thilina/geronimo_ACE/src/main/webapp/pages/Standalone.jsp @@ -1,25 +1,90 @@ <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ include file="header.jsp" %> - Simple jsp page - -
- - - - - - - - - - - - - -
Contribution Location :
Name of the node :
Composite :
- -
- - +Simple jsp page + + + +
+ + + + + + + + + + + + + + + + +

+
Contribution Location :
Name of the node :
Composite :
+ + + +
+ +
+ + Manage Nodes + + + + + + + + + <% ManageNodes mNodes = (ManageNodes) application.getAttribute("managenodes"); + List nodeSet = mNodes.getNodeSet(); + Iterator iterator = nodeSet.iterator(); + if (iterator.hasNext() == false) { %> + + + + + + <% + } + while (iterator.hasNext()) { + LocalNode temp = iterator.next(); + + %> + + + + + + + + + <% + } + %> + +
NodeContributionsStart Nodestop Node
+ +
+ <%= + temp.getName() + %> + + + <% Iterator contributionList = temp.getContributionList().iterator(); + while (contributionList.hasNext()) { %> + + + <%=contributionList.next().getLocation()%> + +
+ <% + } %>
+
/>
+
+ \ No newline at end of file -- cgit v1.2.3