You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by de...@apache.org on 2005/12/20 10:59:27 UTC

svn commit: r357944 - /webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp

Author: deepal
Date: Tue Dec 20 01:59:22 2005
New Revision: 357944

URL: http://svn.apache.org/viewcvs?rev=357944&view=rev
Log:
fixing jsp errors

Modified:
    webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp

Modified: webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp?rev=357944&r1=357943&r2=357944&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp Tue Dec 20 01:59:22 2005
@@ -6,8 +6,12 @@
 <%@ page import="java.util.HashMap" %>
 <%@ page import="java.util.Iterator" %>
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
-<jsp:include page="include/adminheader.jsp">
-</jsp:include>
+<html>
+<head><title>List Services</title>
+    <link href="css/axis-style.css" rel="stylesheet" type="text/css">
+</head>
+<body>
+<jsp:include page="include/adminheader.jsp"></jsp:include>
 <h1>Available services</h1>
 <%String IP = request.getRequestURL().toString();
     int lastindex = IP.lastIndexOf('/');
@@ -33,8 +37,8 @@
     <h4>Service Description : <font color="black"><%=axisService.getServiceDescription()%></h4>
     <%
         Collection engagdeModules = axisService.getEngagedModules();
-        String moduleName ;
-        if(engagdeModules.size() >0){
+        String moduleName;
+        if (engagdeModules.size() > 0) {
     %>
     <i>Engaged Modules for the axisService</i><ul>
     <%
@@ -55,7 +59,6 @@
     for (Iterator iterator1 = operationsList.iterator(); iterator1.hasNext();) {
         AxisOperation axisOperation = (AxisOperation) iterator1.next();
 %><li><%=axisOperation.getName().getLocalPart()%></li>
-    <%--                 <br>Operation EPR : <%=prifix + axisService.getName().getLocalPart() + "/"+ axisOperation.getName().getLocalPart()%>--%>
     <%
         engagdeModules = axisOperation.getEngagedModules();
         if (engagdeModules.size() > 0) {
@@ -76,3 +79,5 @@
         }
     %>
     <jsp:include page="include/adminfooter.jsp"></jsp:include>
+</body>
+</html>
\ No newline at end of file