You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/02/25 14:33:47 UTC

svn commit: r511508 - in /webservices/axis2/trunk/java/modules/webapp: ./ include/

Author: sandakith
Date: Sun Feb 25 05:33:45 2007
New Revision: 511508

URL: http://svn.apache.org/viewvc?view=rev&rev=511508
Log:
Made the JSP pages compile with out errors in new JSP syntax validator from Eclipse.
1) Remove the incomplete adminfooter.jsp and add it as a adminfooter.inc file. Made changes to other JSP s to include new adminfooter.inc
2) Remove the nested <ol>..</ol> inside <p></p>, include all <ol>..</ol> after <p></p>
	

Added:
    webservices/axis2/trunk/java/modules/webapp/include/adminfooter.inc
Removed:
    webservices/axis2/trunk/java/modules/webapp/include/adminfooter.jsp
Modified:
    webservices/axis2/trunk/java/modules/webapp/ActivateService.jsp
    webservices/axis2/trunk/java/modules/webapp/EngageToServiceGroup.jsp
    webservices/axis2/trunk/java/modules/webapp/InActivateService.jsp
    webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp
    webservices/axis2/trunk/java/modules/webapp/SelectService.jsp
    webservices/axis2/trunk/java/modules/webapp/ServiceParaEdit.jsp
    webservices/axis2/trunk/java/modules/webapp/ViewContexts.jsp
    webservices/axis2/trunk/java/modules/webapp/ViewGlobalHandlers.jsp
    webservices/axis2/trunk/java/modules/webapp/ViewServiceHandlers.jsp
    webservices/axis2/trunk/java/modules/webapp/admin.jsp
    webservices/axis2/trunk/java/modules/webapp/disengage.jsp
    webservices/axis2/trunk/java/modules/webapp/engagingglobally.jsp
    webservices/axis2/trunk/java/modules/webapp/engagingtoanoperation.jsp
    webservices/axis2/trunk/java/modules/webapp/engagingtoaservice.jsp
    webservices/axis2/trunk/java/modules/webapp/error.jsp
    webservices/axis2/trunk/java/modules/webapp/errorModule.jsp
    webservices/axis2/trunk/java/modules/webapp/globalModules.jsp
    webservices/axis2/trunk/java/modules/webapp/listGroupService.jsp
    webservices/axis2/trunk/java/modules/webapp/listModules.jsp
    webservices/axis2/trunk/java/modules/webapp/listService.jsp
    webservices/axis2/trunk/java/modules/webapp/listSingleService.jsp
    webservices/axis2/trunk/java/modules/webapp/upload.jsp
    webservices/axis2/trunk/java/modules/webapp/viewServiceContext.jsp
    webservices/axis2/trunk/java/modules/webapp/viewServiceGroupContext.jsp
    webservices/axis2/trunk/java/modules/webapp/viewphases.jsp

Modified: webservices/axis2/trunk/java/modules/webapp/ActivateService.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/ActivateService.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/ActivateService.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/ActivateService.jsp Sun Feb 25 05:33:45 2007
@@ -3,25 +3,25 @@
                  java.util.Collection,
                  java.util.HashMap,
                  java.util.Iterator"%>
-<%@ page contentType="text/html;charset=UTF-8" language="java" %>
-<%
- /*
-  * Copyright 2004,2005 The Apache Software Foundation.
-  *
-  * Licensed 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.
-  *
-  *
-  */
+<%@ page contentType="text/html;charset=UTF-8" language="java" %>
+<%
+ /*
+  * Copyright 2004,2005 The Apache Software Foundation.
+  *
+  * Licensed 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.
+  *
+  *
+  */
 %>
 <jsp:include page="include/adminheader.jsp"></jsp:include>
 <h1>Turn On Service</h1>
@@ -32,29 +32,29 @@
      <p>The services that are inactive are listed below. Although you can activate the services from this page, once system is restarted the services will be inactive again</p>
   </td>
   </tr>
-  <tr>
-  <%
-HashMap services = (HashMap)request.getSession().getAttribute(Constants.SERVICE_MAP);
-Collection col = services.values();
-String html = "";
-int count = 0;
-
-for (Iterator iterator = col.iterator(); iterator.hasNext();) {
-	AxisService axisServices = (AxisService) iterator.next();
-	if(!axisServices.isActive()){
-		count++;
-		html += "<option value='" + axisServices.getName() + "'>";
-		html += axisServices.getName() + "</option>";
-	}
-}
-request.getSession().setAttribute(Constants.SERVICE_MAP,null);
-if (count > 0) {
-%>
+  <tr>
+  <%
+HashMap services = (HashMap)request.getSession().getAttribute(Constants.SERVICE_MAP);
+Collection col = services.values();
+String html = "";
+int count = 0;
+
+for (Iterator iterator = col.iterator(); iterator.hasNext();) {
+	AxisService axisServices = (AxisService) iterator.next();
+	if(!axisServices.isActive()){
+		count++;
+		html += "<option value='" + axisServices.getName() + "'>";
+		html += axisServices.getName() + "</option>";
+	}
+}
+request.getSession().setAttribute(Constants.SERVICE_MAP,null);
+if (count > 0) {
+%>
   
     <td width="20%"> Select Service : </td>
     <td width="80%">
-       <select name="axisService" class="selectBoxes">
-		<%=html%>
+       <select name="axisService" class="selectBoxes">
+		<%=html%>
 		</select>
   </tr>
   <tr>
@@ -67,16 +67,16 @@
   <td>
     <input name="submit" type="submit" value=" Activate " >
    <input name="reset" type="reset" value=" Clear " >
-  </td>
-<%
-} else {
-	%>
-	<td colspan="2">No inactive services present.</td>
-	<%
-}
+  </td>
+<%
+} else {
+	%>
+	<td colspan="2">No inactive services present.</td>
+	<%
+}
 %>
   </tr>
 
 </table>
 </form>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/EngageToServiceGroup.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/EngageToServiceGroup.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/EngageToServiceGroup.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/EngageToServiceGroup.jsp Sun Feb 25 05:33:45 2007
@@ -33,7 +33,7 @@
     request.getSession().setAttribute(Constants.SERVICE_GROUP_MAP,null);
 %>
 <h1>Engage Module for a Service Group</h1>
-<p>To engage a module for a set of services grouped as an axis service group,
+<p>To engage a module for a set of services grouped as an axis service group,</p>
 
     <ol>
         <li>select the module you want to engage </li>
@@ -41,7 +41,7 @@
         <li>click "Engage".</li>
     </ol>
 
-    </p>
+
 <%
 	if (!moduleCol.iterator().hasNext()) {%>
 		<p>No modules are present to be engaged.</p>
@@ -133,5 +133,5 @@
 		}
 	}
 %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>
 

Modified: webservices/axis2/trunk/java/modules/webapp/InActivateService.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/InActivateService.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/InActivateService.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/InActivateService.jsp Sun Feb 25 05:33:45 2007
@@ -3,25 +3,25 @@
                  java.util.Collection,
                  java.util.HashMap,
                  java.util.Iterator"%>
-<%@ page contentType="text/html;charset=UTF-8" language="java" %>
-<%
- /*
-  * Copyright 2004,2005 The Apache Software Foundation.
-  *
-  * Licensed 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.
-  *
-  *
-  */
+<%@ page contentType="text/html;charset=UTF-8" language="java" %>
+<%
+ /*
+  * Copyright 2004,2005 The Apache Software Foundation.
+  *
+  * Licensed 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.
+  *
+  *
+  */
 %>
 <jsp:include page="include/adminheader.jsp"></jsp:include>
 <h1>Deactivate Service</h1>
@@ -32,30 +32,30 @@
      <p>Only the services that are active are listed below. Note that although you can activate a service from this page, once system is restarted the service will be active again</p>
   </td>
   </tr>
-  <tr>
-<%
-HashMap services = (HashMap)request.getSession().getAttribute(Constants.SERVICE_MAP);
-Collection col = services.values();
-String html = "";
-int count = 0;
-
-for (Iterator iterator = col.iterator(); iterator.hasNext();) {
-	AxisService axisServices = (AxisService) iterator.next();
-	if(axisServices.isActive()){
-		count++;
-		html += "<option value='" + axisServices.getName() + "'>";
-		html += axisServices.getName() + "</option>";
-	}
-}
-request.getSession().setAttribute(Constants.SERVICE_MAP,null);
-if (count > 0) {
-%>
+  <tr>
+<%
+HashMap services = (HashMap)request.getSession().getAttribute(Constants.SERVICE_MAP);
+Collection col = services.values();
+String html = "";
+int count = 0;
+
+for (Iterator iterator = col.iterator(); iterator.hasNext();) {
+	AxisService axisServices = (AxisService) iterator.next();
+	if(axisServices.isActive()){
+		count++;
+		html += "<option value='" + axisServices.getName() + "'>";
+		html += axisServices.getName() + "</option>";
+	}
+}
+request.getSession().setAttribute(Constants.SERVICE_MAP,null);
+if (count > 0) {
+%>
 
     <td width="20%"> Select Service : </td>
     <td width="80%">
        <select name="axisService" class="selectBoxes">
-<%=html%>
-		</select>
+<%=html%>
+		</select>
 	</td>
   </tr>
   <tr>
@@ -68,16 +68,16 @@
   <td>
     <input name="submit" type="submit" value=" Deactivate " >
    <input name="reset" type="reset" value=" Clear " >
-  </td>
-<%
-} else {
-	%>
-	<td colspan="2">No active services present.</td>
-	<%
-}
+  </td>
+<%
+} else {
+	%>
+	<td colspan="2">No active services present.</td>
+	<%
+}
 %>
   </tr>
 
 </table>
 </form>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp Sun Feb 25 05:33:45 2007
@@ -63,4 +63,4 @@
         }
     }
 %>
-<jsp:include page="include/adminfooter.jsp"/>
+<jsp:include page="include/adminfooter.inc"/>

Modified: webservices/axis2/trunk/java/modules/webapp/SelectService.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/SelectService.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/SelectService.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/SelectService.jsp Sun Feb 25 05:33:45 2007
@@ -76,4 +76,4 @@
          </tr>
       </table>
    </form>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/ServiceParaEdit.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/ServiceParaEdit.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/ServiceParaEdit.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/ServiceParaEdit.jsp Sun Feb 25 05:33:45 2007
@@ -113,4 +113,4 @@
 
        %>
        <form>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/ViewContexts.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/ViewContexts.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/ViewContexts.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/ViewContexts.jsp Sun Feb 25 05:33:45 2007
@@ -4,25 +4,25 @@
 <%@ page import="org.apache.axis2.context.ServiceGroupContext"%>
 <%@ page import="java.util.Hashtable"%>
 <%@ page import="java.util.Iterator"%>
-<%@ page contentType="text/html;charset=UTF-8" language="java" %>
-<%
- /*
-  * Copyright 2004,2005 The Apache Software Foundation.
-  *
-  * Licensed 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.
-  *
-  *
-  */
+<%@ page contentType="text/html;charset=UTF-8" language="java" %>
+<%
+ /*
+  * Copyright 2004,2005 The Apache Software Foundation.
+  *
+  * Licensed 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.
+  *
+  *
+  */
 %>
 <jsp:include page="include/adminheader.jsp"></jsp:include>
 <h1>Running Context Hierarchy</h1>
@@ -62,4 +62,4 @@
 	<p>No running contexts were found on the system.</p>
             <%}
 %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/ViewGlobalHandlers.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/ViewGlobalHandlers.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/ViewGlobalHandlers.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/ViewGlobalHandlers.jsp Sun Feb 25 05:33:45 2007
@@ -135,4 +135,4 @@
 
              }
               %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/ViewServiceHandlers.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/ViewServiceHandlers.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/ViewServiceHandlers.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/ViewServiceHandlers.jsp Sun Feb 25 05:33:45 2007
@@ -143,4 +143,4 @@
                  }
 
               %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
\ No newline at end of file
+<jsp:include page="include/adminfooter.inc"></jsp:include>
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/admin.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/admin.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/admin.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/admin.jsp Sun Feb 25 05:33:45 2007
@@ -20,12 +20,12 @@
 %>
 <jsp:include page="include/adminheader.jsp"></jsp:include>
 <h1>Welcome to Axis2 Web Admin Module !!</h1>
-<p>You are now logged into the Axis2 administration console from inside
-the console you will be able to
+<p>You are now logged into the Axis2 administration console from inside
+the console you will be able to</p>
     <ul>
         <li>to check on the health of your Axis2 deployment.</li>
         <li>to change any parameters at run time.</li>
         <li>to upload new services into Axis2 [Service hot-deployment].</li>
     </ul>
-</p>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/disengage.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/disengage.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/disengage.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/disengage.jsp Sun Feb 25 05:33:45 2007
@@ -28,4 +28,4 @@
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 <jsp:include page="include/adminheader.jsp"/>
 <%=request.getSession().getAttribute("status")%>
-<jsp:include page="include/adminfooter.jsp" />
\ No newline at end of file
+<jsp:include page="include/adminfooter.inc" />
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/engagingglobally.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/engagingglobally.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/engagingglobally.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/engagingglobally.jsp Sun Feb 25 05:33:45 2007
@@ -67,4 +67,4 @@
 <p><font color="blue"><%=status%></font></p>
 <%
     } %>
-<jsp:include page="include/adminfooter.jsp"/>
+<jsp:include page="include/adminfooter.inc"/>

Modified: webservices/axis2/trunk/java/modules/webapp/engagingtoanoperation.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/engagingtoanoperation.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/engagingtoanoperation.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/engagingtoanoperation.jsp Sun Feb 25 05:33:45 2007
@@ -4,37 +4,37 @@
                                                                              java.util.Collection,
                                                                              java.util.HashMap,
                                                                              java.util.Iterator"%>
-<%
- /*
-  * Copyright 2004,2005 The Apache Software Foundation.
-  *
-  * Licensed 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.
-  *
-  *
-  */
-%>
+<%
+ /*
+  * Copyright 2004,2005 The Apache Software Foundation.
+  *
+  * Licensed 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.
+  *
+  *
+  */
+%>
 <jsp:include page="include/adminheader.jsp"></jsp:include>
 <%
     String status = (String)request.getSession().getAttribute(Constants.ENGAGE_STATUS);
 %>
 <h1>Engage Module for an Operation</h1>
-<p>To engage a module for an  axis operation,
+<p>To engage a module for an  axis operation,</p>
     <ol>
             <li>select the module you want to engage </li>
             <li>select the axis operation you like the module to be engaged.</li>
             <li>click "Engage".</li>
         </ol>
-</p>
+
 <form method="get" name="selectModuleForm" action="axis2-admin/listOperations">
 <table border="0" width="100%" cellspacing="1" cellpadding="1">
     <tr>
@@ -122,4 +122,4 @@
            </tr>
       </table>
    </form>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Modified: webservices/axis2/trunk/java/modules/webapp/engagingtoaservice.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/engagingtoaservice.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/engagingtoaservice.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/engagingtoaservice.jsp Sun Feb 25 05:33:45 2007
@@ -30,14 +30,14 @@
 %>
 <h1>Engage Module for a Service</h1>
 
-<p>To engage a module for a axis service,
+<p>To engage a module for a axis service,</p>
 
     <ol>
         <li>select the module you want to engage</li>
         <li>select the axis service you like the module to be engaged.</li>
         <li>click "Engage".</li>
     </ol>
-</p>
+
 <form method="get" name="selectModuleForm" action="axis2-admin/engageToService">
     <table border="0" width="100%" cellspacing="1" cellpadding="1">
         <tr>
@@ -139,5 +139,5 @@
         </tr>
     </table>
 </form>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>
 

Modified: webservices/axis2/trunk/java/modules/webapp/error.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/error.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/error.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/error.jsp Sun Feb 25 05:33:45 2007
@@ -29,4 +29,4 @@
   <td align="center"><%=exception.getMessage()%></td>
   </tr>
   </table>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
\ No newline at end of file
+<jsp:include page="include/adminfooter.inc"></jsp:include>
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/errorModule.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/errorModule.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/errorModule.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/errorModule.jsp Sun Feb 25 05:33:45 2007
@@ -27,4 +27,4 @@
   %> <h3>The Module has deployment faults</h3><%
   %><font color="red" ><%=(String)errornessModules.get(moduleName) %></font><%
   %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
\ No newline at end of file
+<jsp:include page="include/adminfooter.inc"></jsp:include>
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/globalModules.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/globalModules.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/globalModules.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/globalModules.jsp Sun Feb 25 05:33:45 2007
@@ -54,4 +54,4 @@
                  <%
          }
                  %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>

Added: webservices/axis2/trunk/java/modules/webapp/include/adminfooter.inc
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/include/adminfooter.inc?view=auto&rev=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/include/adminfooter.inc (added)
+++ webservices/axis2/trunk/java/modules/webapp/include/adminfooter.inc Sun Feb 25 05:33:45 2007
@@ -0,0 +1,5 @@
+</td></tr>
+</table>
+<jsp:include page="footer.inc"></jsp:include>
+</body>
+</html>
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/listGroupService.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/listGroupService.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/listGroupService.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/listGroupService.jsp Sun Feb 25 05:33:45 2007
@@ -6,25 +6,25 @@
 <%@ page import="java.util.HashMap" %>
 <%@ page import="java.util.Iterator" %>
 <%@ page import="org.apache.axis2.transport.http.AxisServlet"%>
-<%@ page contentType="text/html;charset=UTF-8" language="java" %>
-<%
- /*
-  * Copyright 2004,2005 The Apache Software Foundation.
-  *
-  * Licensed 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.
-  *
-  *
-  */
+<%@ page contentType="text/html;charset=UTF-8" language="java" %>
+<%
+ /*
+  * Copyright 2004,2005 The Apache Software Foundation.
+  *
+  * Licensed 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>
@@ -102,7 +102,7 @@
 <%
   }
 %>
-<jsp:include page="include/adminfooter.jsp">
+<jsp:include page="include/adminfooter.inc">
 </jsp:include>
 </body>
 </html>

Modified: webservices/axis2/trunk/java/modules/webapp/listModules.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/listModules.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/listModules.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/listModules.jsp Sun Feb 25 05:33:45 2007
@@ -80,4 +80,4 @@
                  <%
              }
      %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
\ No newline at end of file
+<jsp:include page="include/adminfooter.inc"></jsp:include>
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/listService.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/listService.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/listService.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/listService.jsp Sun Feb 25 05:33:45 2007
@@ -153,4 +153,4 @@
 %> No services listed! Try hitting refresh. <%
     }
 %>
-<jsp:include page="include/adminfooter.jsp" />
+<jsp:include page="include/adminfooter.inc" />

Modified: webservices/axis2/trunk/java/modules/webapp/listSingleService.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/listSingleService.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/listSingleService.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/listSingleService.jsp Sun Feb 25 05:33:45 2007
@@ -104,4 +104,4 @@
 
     }
 %>
-<jsp:include page="include/adminfooter.jsp"/>
+<jsp:include page="include/adminfooter.inc"/>

Modified: webservices/axis2/trunk/java/modules/webapp/upload.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/upload.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/upload.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/upload.jsp Sun Feb 25 05:33:45 2007
@@ -17,18 +17,18 @@
   */
 %>
 
-<jsp:include page="include/adminheader.jsp"/>
-<script type="text/javascript">
-<!--
-	function checkFileUpload(){
-		if (document.getElementById('serviceUpload').value == '') {
-			alert('Please select a file before clicking the upload button.');
-			return false;
-		} else {
-			document.Axis2upload.submit();
-		}
-	}
-//-->
+<jsp:include page="include/adminheader.jsp"/>
+<script type="text/javascript">
+<!--
+	function checkFileUpload(){
+		if (document.getElementById('serviceUpload').value == '') {
+			alert('Please select a file before clicking the upload button.');
+			return false;
+		} else {
+			document.Axis2upload.submit();
+		}
+	}
+//-->
 </script>
 <h1>Upload an Axis Service Archive File</h1>
 
@@ -59,9 +59,9 @@
       <td><input name="upload" type="button" onclick="javascript:checkFileUpload();" value=" Upload "/></td>
     </tr>
   </table>
-</form>
-<blockquote>
-<p>Hot deployment of new service archives is <%=request.getAttribute("hotDeployment") %></p>
-<p>Hot update of existing service archives is <%=request.getAttribute("hotUpdate") %></p>
+</form>
+<blockquote>
+<p>Hot deployment of new service archives is <%=request.getAttribute("hotDeployment") %></p>
+<p>Hot update of existing service archives is <%=request.getAttribute("hotUpdate") %></p>
 </blockquote>
-<jsp:include page="include/adminfooter.jsp"/>
+<jsp:include page="include/adminfooter.inc"/>

Modified: webservices/axis2/trunk/java/modules/webapp/viewServiceContext.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/viewServiceContext.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/viewServiceContext.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/viewServiceContext.jsp Sun Feb 25 05:33:45 2007
@@ -67,4 +67,4 @@
         }
     }
 %>
-<jsp:include page="include/adminfooter.jsp"/>
\ No newline at end of file
+<jsp:include page="include/adminfooter.inc"/>
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/viewServiceGroupContext.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/viewServiceGroupContext.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/viewServiceGroupContext.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/viewServiceGroupContext.jsp Sun Feb 25 05:33:45 2007
@@ -68,4 +68,4 @@
 %> <h4>No service group context found</h4><%
     }
 %>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
\ No newline at end of file
+<jsp:include page="include/adminfooter.inc"></jsp:include>
\ No newline at end of file

Modified: webservices/axis2/trunk/java/modules/webapp/viewphases.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/viewphases.jsp?view=diff&rev=511508&r1=511507&r2=511508
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/viewphases.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/viewphases.jsp Sun Feb 25 05:33:45 2007
@@ -110,4 +110,4 @@
              }
          %>
          </blockquote>
-<jsp:include page="include/adminfooter.jsp"></jsp:include>
+<jsp:include page="include/adminfooter.inc"></jsp:include>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org