Project

General

Profile

1
<%@ taglib prefix="s" uri="/struts-tags"%>
2
<%@ page contentType="text/html; charset=UTF-8"%>
3

    
4
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7

    
8
<head>
9
	<title>DRIVER Redirect Page</title>
10
	
11
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
12
	
13
	<link rel="shortcut icon" href="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/images/favicon.ico" />
14
	<link href='<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/assets/<s:property value="#application['webInterfaceLayoutManager'].cssFileName" />' rel="stylesheet" type="text/css" />
15

    
16
	<meta http-equiv="PRAGMA" content="NO-CACHE"/>
17
	<meta http-equiv="Expires" content="-1"/>
18
	<meta http-equiv="CACHE-CONTROL" content="NO-STORE"/>
19

    
20
	<script type="text/javascript">
21
		function delayer(){
22
		    window.location = '<s:property value="url" escape="false"/>';
23
		}
24
	</script>
25
</head>
26

    
27
<body onLoad="setTimeout('delayer()', 600)">
28
	<script language="javascript">
29
		window.history.forward(1);
30
	</script>
31

    
32
	<div id="center">
33
		<div id="wrapper">
34
			<div class="wrapper_shadowleft">
35
				<div class="wrapper_shadowright">
36
					<div id="container">
37
						<jsp:include page="/pages/banner.jsp" /> 
38
						<jsp:include page="/pages/menu.jsp" />
39
				
40
						<div id="leftcolumn">
41
							<div class="search">
42
								
43
							</div>
44
						</div>
45
						
46
						<div id="genericColumnNH" style="width: 100%; text-align: center;">
47
							<h2  style="text-align:center;">  
48
								You are redirected to: 
49
								<a href='<s:property value="#parameters['url'][0]" />'>
50
									<s:property value="#parameters['url'][0]" />
51
								</a>
52
								 <p>&nbsp;</p>
53
								<p style="text-align:center;">
54
									<img src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/images/icons/driver-loader1.gif" width="70" height="70" alt="redirecting..." />
55
								</p>
56
                                <p>&nbsp;</p>
57
                                <p style="text-align:center;">
58
									<span class="comments">
59
                                    	If this takes too long, it is very probable that the hosting repository is offline.
60
                                    </span>
61
								</p>
62
                                <p>&nbsp;</p>
63
							</h2>		
64

    
65
						</div>
66
					</div>
67
				</div>
68
				<s:action name="FooterPage" executeResult="true"/>
69
			</div>
70
		</div>
71
	</div>
72
</body>
73
</html>
(6-6/8)