aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/sitemesh/standalone.jsp
diff options
context:
space:
mode:
authortknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2009-03-26 14:16:11 +0000
committertknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2009-03-26 14:16:11 +0000
commitb03eb7594abac17f1a0d77dde67940f8ab133e11 (patch)
tree26a28c9cb8cb765b785ec2995effa2139fa28da7 /src/main/webapp/sitemesh/standalone.jsp
parent9cd6db562ef3a19837feb1b5d0b2892c9c1b41d1 (diff)
downloadpdf-as-3-b03eb7594abac17f1a0d77dde67940f8ab133e11.tar.gz
pdf-as-3-b03eb7594abac17f1a0d77dde67940f8ab133e11.tar.bz2
pdf-as-3-b03eb7594abac17f1a0d77dde67940f8ab133e11.zip
Layout for webapplication adjusted for IE.
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@335 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'src/main/webapp/sitemesh/standalone.jsp')
-rw-r--r--src/main/webapp/sitemesh/standalone.jsp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/webapp/sitemesh/standalone.jsp b/src/main/webapp/sitemesh/standalone.jsp
index add7185..d4813c2 100644
--- a/src/main/webapp/sitemesh/standalone.jsp
+++ b/src/main/webapp/sitemesh/standalone.jsp
@@ -5,20 +5,28 @@
<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator"%>
<%@ page import="at.knowcenter.wag.egov.egiz.web.LocalRequestHelper" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
+
<html>
+ <%
+ boolean testMode = request.getContextPath().startsWith("/test-");
+ %>
+
<head>
<decorator:head/>
<link rel="stylesheet" type="text/css" href="<%=LocalRequestHelper.getLocalContextAddress(request,response)%>/css/pdfas-styles.css" />
+ <title><fmt:message key="<%= testMode ? "test.common.title" : "common.title" %>"/></title>
+ <link rel="stylesheet" type="text/css" href="<%=LocalRequestHelper.getLocalContextAddress(request,response)%>/css/pdfas-standalone-styles.css" />
</head>
<body>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td align="center" valign="middle">
- <table cellpadding="0" cellspacing="0" border="0">
+ <table cellpadding="0" cellspacing="0" border="0" width="700px">
<tr>
- <td><decorator:body/></td>
+ <td align="left"><decorator:body/></td>
</tr>
</table>
</td>