cedric 2002/12/29 14:37:33
Modified: web/tiles-documentation/WEB-INF web.xml
web/tiles-documentation/test testController.jsp
Log:
Change package names
org.apache.struts.example.tiles to
org.apache.struts.webapp.tiles to be standard.
This should close bug report #15601
Revision Changes Path
1.6 +1 -1 jakarta-struts/web/tiles-documentation/WEB-INF/web.xml
Index: web.xml
===================================================================
RCS file: /home/cvs/jakarta-struts/web/tiles-documentation/WEB-INF/web.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- web.xml 29 Dec 2002 21:20:06 -0000 1.5
+++ web.xml 29 Dec 2002 22:37:33 -0000 1.6
@@ -66,7 +66,7 @@
<!-- Added as a trick for a bug in Struts -->
<init-param>
<param-name>application</param-name>
-
<param-value>org.apache.struts.example.tiles.dev1-1.ApplicationResources</param-value>
+
<param-value>org.apache.struts.webapp.tiles.dev1-1.ApplicationResources</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
1.2 +2 -2 jakarta-struts/web/tiles-documentation/test/testController.jsp
Index: testController.jsp
===================================================================
RCS file: /home/cvs/jakarta-struts/web/tiles-documentation/test/testController.jsp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- testController.jsp 6 Jul 2002 01:13:51 -0000 1.1
+++ testController.jsp 29 Dec 2002 22:37:33 -0000 1.2
@@ -12,7 +12,7 @@
<strong>Test controller set in insert</strong>
<br>
<tiles:insert template="layout.jsp"
-
controllerClass="org.apache.struts.example.tiles.test.TestTileController" >
+ controllerClass="org.apache.struts.webapp.tiles.test.TestTileController"
>
<tiles:put name="title" value="Test controller set in insert" />
<tiles:put name="header" value="header.jsp" />
<tiles:put name="body" value="body.jsp" />
@@ -22,7 +22,7 @@
<strong>Test controller set in insert, and attribute from definition</strong>
<br>
<tiles:insert definition="test.layout.test1"
-
controllerClass="org.apache.struts.example.tiles.test.TestTileController" >
+ controllerClass="org.apache.struts.webapp.tiles.test.TestTileController"
>
<tiles:put name="title" value="Test controller set in insert, and attribute from
definition" />
</tiles:insert>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>