Skip to content

Commit

Permalink
fix documentation after feedback from Emi Lu.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsembwever committed Nov 7, 2013
1 parent 5192836 commit d391ba1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/site/apt/tutorial/advanced/list-attributes.apt
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ List Attributes

---------------------------------------
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://tiles.apache.org/tags-tiles-extras" prefix="tilesx" %>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<tiles:useAttribute id="list" name="items" classname="java.util.List" />
<tilesx:useAttribute id="list" name="items" classname="java.util.List" />
<c:forEach var="item" items="${list}">
<tiles:insertAttribute value="${item}" flush="true" />
<br/>
Expand Down Expand Up @@ -93,4 +94,3 @@ List Attributes
* /tiles/credits.jsp

* /tiles/greetings.jsp

22 changes: 12 additions & 10 deletions src/site/apt/tutorial/integration/frameworks.apt
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,19 @@ Integration with other web Frameworks

Tiles can be integrated with other web frameworks. Usually this kind of
integration is made through extensions/plugins to Tiles.

* {{{http://struts.apache.org/1.x/index.html}Struts 1}}: Currently under
development. A Struts 1 plugin is available in the SVN trunk, that presumably
will be released along with Struts 1.4.
* {{{http://struts.apache.org/2.x/docs/tiles-plugin.html}Struts 2}}: at the time of this

* {{{http://struts.apache.org/development/2.x/struts2-plugins/struts2-tiles-plugin/apidocs/index.html}Struts 2}}: at the time of this
writing, the Struts 2 Tiles plugin still uses Tiles version 2.

* {{{http://static.springsource.org/spring/docs/current/spring-framework-reference/html/view.html#view-tiles}Spring MVC}}:
At the time of this writing, Spring uses Tiles version 2.

* {{{http://shale.apache.org/shale-tiles/index.html}Shale}}: An integration
layer is provided, but it needs to be updated to the latest released version
of Tiles.

* {{{http://docs.spring.io/spring/docs/3.2.x/spring-framework-reference/html/view.html#view-tiles}Spring MVC}}:
Spring-3.2 can integration up to Tiles-2 and Tiles-3.



For a closer look at custom integrations the
{{{https://github.com/spring-projects/spring-framework/tree/master/spring-webmvc-tiles3/src/main/java/org/springframework/web/servlet/view/tiles3}spring code}}:
forms a good example.

0 comments on commit d391ba1

Please sign in to comment.