|
Home / Java Luca Passani WURFL Java API Java API - Javadocs Download & Installation (includes WALL) Examples How to Submit bug reports License the Wireless Abstraction Library WALL Tutorial (PDF) Reference (PDF) NEW: Cool Menus Demos: - Body - Menu - Coolmenu - Simple Forms - Forms in WML Compatibility Mode JSTL integration - Portal Useful Trick Credits Source Code CVS at SourceForge Other Java/WURFL efforts Murray Brandon: Modified WALL Nicholas Albion: More Modified WALL Bill Ray: MyWURFL |
WALL Integration with JSTL
<%@ taglib uri="/WEB-INF/tld/wall.tld" prefix="wall" %>
<%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
:
<wall:load_capabilities />
:
<c:if test="${capabilities.midp_10} && ${capabilities.j2me_colors > 8}">
Your device supports color Java games!
</c:if>
the Expression Language (EL) lets you use $expressions to refer to values without nesting Java code:
<c:url var="url2" value="http://someurl">
<c:param name="usr" value="lp"/>
<c:param name="passwd" value="secret"/>
</c:url>
:
<wall:a href="${url2}" title="Login">Auto-login</wall:a>
|