| ASF |
#451484 |
Fri Sep 29 22:41:29 UTC 2006 |
craigmcc |
First step at refactoring the functionality of shale-core, pulling out
all of the view controller functionality. As of this change, web
applications wanting to use this feature should make two changes:
* Add a dependency on shale-view-xxx.jar. For Maven2 users, that
means adding the following dependency:
<dependency>
<groupId>org.apache.shale</groupId>
<artifactId>shale-view</artifactId>
<version>${version}</version>
</dependency>
* If you are using the <s:subview> tag in JSP pages, declare a new
tag library, and switch to the new (vc:) version of the subview tag.
The new taglib declaration you need is:
<%@ taglib prefix="vc" uri="http://shale.apache.org/view" %>
(as with all tag libraries, the prefix is arbitrary, but "vc"
is the default.)
SHALE-299
|