1 <%--  Don't include this more than once per actual JSP.  --%>
2<%@ page import="org.unicode.cldr.web.*"
3 %><%@ page import="org.unicode.cldr.util.*"
4 %><%@ page import="org.unicode.cldr.tool.*"
5 %><%@ page import="java.util.*"
6 %><%@ page import="com.ibm.icu.text.*"
7 %><%@ page import="com.ibm.icu.util.*"
8 %><%@ taglib prefix="st" tagdir="/WEB-INF/tags/st" %>
9<%
10	JspWebContext ctx = WebContext.fromRequest(request,response,out);
11
12// may not be set
13    DataSection dataSection = (DataSection)ctx.get(WebContext.DATA_SECTION);
14    DataSection.DataRow dataRow = (DataSection.DataRow)ctx.get(WebContext.DATA_ROW);
15    Boolean zoomedIn = (Boolean)ctx.get(WebContext.ZOOMED_IN);
16    Boolean canModify = (Boolean)ctx.get(WebContext.CAN_MODIFY);
17    WebContext.HTMLDirection htmlDirection = ctx.getDirectionForLocale(); // ltr or rtl
18
19
20%>