%--
* Copyright by Intland Software
*
* All rights reserved.
*
* This software is the confidential and proprietary information
* of Intland Software. ("Confidential Information"). You
* shall not disclose such Confidential Information and shall use
* it only in accordance with the terms of the license agreement
* you entered into with Intland.
*
* $Revision$ $Date$
--%>
<%@ taglib uri="jstl-c" prefix="c" %>
<%@ taglib uri="struts-html" prefix="html" %>
<%@ taglib uri="taglib" prefix="tag" %>
<%@ taglib uri="uitaglib" prefix="ui" %>
<%@page import="com.intland.codebeamer.remoting.ReportType"%>
<%
pageContext.setAttribute("EXPORT_TYPE_EXCEL", new Integer(ReportType.EXCEL));
pageContext.setAttribute("EXPORT_TYPE_PDF", new Integer(ReportType.PDF));
pageContext.setAttribute("EXPORT_TYPE_CSV", new Integer(ReportType.CSV));
pageContext.setAttribute("EXPORT_TYPE_XML", new Integer(ReportType.XML));
pageContext.setAttribute("EXPORT_TYPE_WIKI", new Integer(ReportType.WIKI));
pageContext.setAttribute("EXPORT_OPTION_COMMENTS", ReportType.EXPORT_OPTION_COMMENTS);
pageContext.setAttribute("EXPORT_OPTION_HISTORY", ReportType.EXPORT_OPTION_HISTORY);
pageContext.setAttribute("EXPORT_OPTION_DESCRIPTIONS", ReportType.EXPORT_OPTION_DESCRIPTIONS);
pageContext.setAttribute("EXPORT_OPTION_ASSOCIATIONS", ReportType.EXPORT_OPTION_ASSOCIATIONS);
pageContext.setAttribute("EXPORT_OPTION_CHILDREN", ReportType.EXPORT_OPTION_CHILDREN);
%>