[cvs] expresso commit by rimovm: Made it so that JBuilder would stop

JCorporate Ltd jcorp at jcorporate.com
Tue Mar 15 00:27:17 UTC 2005


Log Message:
-----------
Made it so that JBuilder would stop complaining about unterminated tag (compiler bug, not JSP bug)

Modified Files:
--------------
    expresso/expresso-web/expresso/jsp/configuration:
        index.jsp

Revision Data
-------------
Index: index.jsp
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/expresso/jsp/configuration/index.jsp,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lexpresso-web/expresso/jsp/configuration/index.jsp -Lexpresso-web/expresso/jsp/configuration/index.jsp -u -r1.2 -r1.3
--- expresso-web/expresso/jsp/configuration/index.jsp
+++ expresso-web/expresso/jsp/configuration/index.jsp
@@ -1,4 +1,4 @@
-<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
+<%@ page language="java" contentType="text/html; charset=iso-8859-1" %>
 <%@ taglib uri="/WEB-INF/tld/tiles.tld" prefix="tiles" %>
 <%@ taglib uri="/WEB-INF/tld/struts-bean.tld" prefix="struts-bean" %>
 <%@ taglib uri="/WEB-INF/tld/expresso-bean.tld" prefix="bean" %>
@@ -7,8 +7,8 @@
 <struts-bean:define id="theTitle" property="title" name="controllerResponse" type="java.lang.String"/>
 
 <tiles:insert page="config-tile-definition.jsp" flush="true">
-	<tiles:put name="title" value="<%=theTitle%>"/>
-	<tiles:put name="upperLeft" value="title-tile.jsp"/>
-	<tiles:put name="listing" value="<%=request.getContextPath()%>/Configuration.do?state=showContainerTree"/>
-	<tiles:put name="content" value=""/>
+    <tiles:put name="title" value="<%=theTitle%>"/>
+    <tiles:put name="upperLeft" value="title-tile.jsp"/>
+    <tiles:put name="listing" value="<%=request.getContextPath() +"/Configuration.do?state=showContainerTree" %>"/>
+    <tiles:put name="content" value=""/>
 </tiles:insert>


More information about the cvs mailing list