blob: bb51a25b5c3fb6dc5ae6b37ccfe5d709e50313db [file] [log] [blame]
<%-----------------------------------------------------------------------------
Copyright (c) 2004 Actuate Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Actuate Corporation - Initial implementation.
-----------------------------------------------------------------------------%>
<%@ page contentType="text/html; charset=utf-8" %>
<%@ page session="false" buffer="none" %>
<%@ page import="org.eclipse.birt.report.resource.BirtResources" %>
<%-----------------------------------------------------------------------------
Progress page
-----------------------------------------------------------------------------%>
<%
boolean rtl = false;
String rtlParam = request.getParameter("__rtl");
if ( rtlParam != null )
{
rtl = Boolean.getBoolean(rtlParam);
}
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<LINK REL="stylesheet" HREF="<%= request.getContextPath( ) + "/webcontent/birt/styles/style.css" %>" TYPE="text/css">
</HEAD>
<BODY STYLE="background-color: #ECE9D8;">
<DIV ID="progressBar" ALIGN="center">
<TABLE WIDTH="250px" CLASS="birtviewer_progresspage" CELLSPACING="10px">
<TR>
<TD ALIGN="center">
<B>
<%= BirtResources.getMessage( "birt.viewer.progressbar.prompt" )%>
</B>
</TD>
</TR>
<TR>
<TD ALIGN="center">
<IMG SRC="<%= request.getContextPath( ) + "/webcontent/birt/images/" + (rtl?"Loading_rtl":"Loading") + ".gif" %>" ALT="Progress Bar Image"/>
</TD>
</TR>
</TABLE>
</DIV>
</BODY>
</HTML>