You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2006/01/18 17:09:28 UTC

svn commit: r370175 - in /incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout: mini-howto.tag overview.tag

Author: lofwyr
Date: Wed Jan 18 08:09:24 2006
New Revision: 370175

URL: http://svn.apache.org/viewcvs?rev=370175&view=rev
Log:
replace unneeded tc:include with  jsp:include

Modified:
    incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/mini-howto.tag
    incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.tag

Modified: incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/mini-howto.tag
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/mini-howto.tag?rev=370175&r1=370174&r2=370175&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/mini-howto.tag (original)
+++ incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/mini-howto.tag Wed Jan 18 08:09:24 2006
@@ -22,7 +22,7 @@
   <tc:page label="#{miniHowtoBundle.pageTitle}" id="page"
       width="750px" height="600px">
 
-    <tc:include value="mini-howto/menubar.jsp"/>
+    <jsp:include page="/mini-howto/menubar.jsp"/>
 
     <f:facet name="layout">
       <tc:gridLayout border="0" columns="1*;4*"
@@ -30,11 +30,11 @@
     </f:facet>
 
     <tc:cell spanX="2">
-      <tc:include value="overview/header.jsp"/>
+      <jsp:include page="/overview/header.jsp"/>
     </tc:cell>
 
     <tc:cell spanY="2" >
-      <tc:include value="mini-howto/navigator.jsp"/>
+      <jsp:include page="/mini-howto/navigator.jsp"/>
     </tc:cell>
 
     <tc:cell>
@@ -42,7 +42,7 @@
     </tc:cell>
 
     <tc:cell>
-      <tc:include value="mini-howto/footer.jsp"/>
+      <jsp:include page="/mini-howto/footer.jsp"/>
     </tc:cell>
 
   </tc:page>

Modified: incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.tag
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.tag?rev=370175&r1=370174&r2=370175&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.tag (original)
+++ incubator/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.tag Wed Jan 18 08:09:24 2006
@@ -21,7 +21,7 @@
   <tc:page label="#{overviewBundle.pageTitle}" id="page"
       width="750px" height="600px">
 
-    <tc:include value="overview/menubar.jsp" />
+    <jsp:include page="/overview/menubar.jsp" />
 
     <f:facet name="layout">
       <tc:gridLayout border="0" columns="1*;4*"
@@ -29,11 +29,11 @@
     </f:facet>
 
     <tc:cell spanX="2">
-      <tc:include value="overview/header.jsp"/>
+      <jsp:include page="/overview/header.jsp"/>
     </tc:cell>
 
     <tc:cell spanY="2" >
-      <tc:include value="overview/navigator.jsp"/>
+      <jsp:include page="/overview/navigator.jsp"/>
     </tc:cell>
 
     <tc:cell>
@@ -41,7 +41,7 @@
     </tc:cell>
 
     <tc:cell>
-      <tc:include value="overview/footer.jsp" />
+      <jsp:include page="/overview/footer.jsp" />
     </tc:cell>
 
   </tc:page>