403 |
04 Aug 06 |
gregory |
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
403 |
04 Aug 06 |
gregory |
2 |
"http://www.w3.org/TR/html4/loose.dtd"> |
403 |
04 Aug 06 |
gregory |
3 |
<%-- |
403 |
04 Aug 06 |
gregory |
4 |
$Id$ |
403 |
04 Aug 06 |
gregory |
5 |
|
1916 |
31 Aug 07 |
jari |
Copyright (C) 2006, 2007 Gregory Vincic |
403 |
04 Aug 06 |
gregory |
7 |
|
403 |
04 Aug 06 |
gregory |
8 |
Files are copyright by their respective authors. The contributions to |
403 |
04 Aug 06 |
gregory |
9 |
files where copyright is not explicitly stated can be traced with the |
403 |
04 Aug 06 |
gregory |
10 |
source code revision system. |
403 |
04 Aug 06 |
gregory |
11 |
|
403 |
04 Aug 06 |
gregory |
12 |
This file is part of Proteios. |
403 |
04 Aug 06 |
gregory |
13 |
Available at http://www.proteios.org/ |
403 |
04 Aug 06 |
gregory |
14 |
|
403 |
04 Aug 06 |
gregory |
15 |
Proteios is free software; you can redistribute it and/or |
403 |
04 Aug 06 |
gregory |
16 |
modify it under the terms of the GNU General Public License |
403 |
04 Aug 06 |
gregory |
17 |
as published by the Free Software Foundation; either version 2 |
403 |
04 Aug 06 |
gregory |
18 |
of the License, or (at your option) any later version. |
403 |
04 Aug 06 |
gregory |
19 |
|
403 |
04 Aug 06 |
gregory |
20 |
Proteios is distributed in the hope that it will be useful, |
403 |
04 Aug 06 |
gregory |
21 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
403 |
04 Aug 06 |
gregory |
22 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
403 |
04 Aug 06 |
gregory |
23 |
GNU General Public License for more details. |
403 |
04 Aug 06 |
gregory |
24 |
|
403 |
04 Aug 06 |
gregory |
25 |
You should have received a copy of the GNU General Public License |
403 |
04 Aug 06 |
gregory |
26 |
along with this program; if not, write to the Free Software |
403 |
04 Aug 06 |
gregory |
27 |
Foundation, Inc., 59 Temple Place - Suite 330, |
403 |
04 Aug 06 |
gregory |
28 |
Boston, MA 02111-1307, USA. |
403 |
04 Aug 06 |
gregory |
29 |
--%> |
403 |
04 Aug 06 |
gregory |
30 |
|
403 |
04 Aug 06 |
gregory |
31 |
<html> |
403 |
04 Aug 06 |
gregory |
32 |
<head> |
403 |
04 Aug 06 |
gregory |
33 |
<title>Proteios - Warning</title> |
403 |
04 Aug 06 |
gregory |
34 |
<%@ include file="/view/fragments/global_css.jspf"%> |
403 |
04 Aug 06 |
gregory |
35 |
</head> |
403 |
04 Aug 06 |
gregory |
36 |
<body> |
403 |
04 Aug 06 |
gregory |
37 |
<div id="container" style="width: 42em; margin: 10% auto"> |
403 |
04 Aug 06 |
gregory |
38 |
<div class="appRow sectionTitle">Warning</div> |
403 |
04 Aug 06 |
gregory |
39 |
<div class="appRow yellow"> |
403 |
04 Aug 06 |
gregory |
40 |
<table style="margin: auto auto"> |
403 |
04 Aug 06 |
gregory |
41 |
<tr><td> |
403 |
04 Aug 06 |
gregory |
42 |
<img src="<%=(String) request.getContextPath()%>/static/img/dialog-warning_003.png" style="margin: 3px 3px"/> |
403 |
04 Aug 06 |
gregory |
43 |
</td><td> |
403 |
04 Aug 06 |
gregory |
44 |
|
403 |
04 Aug 06 |
gregory |
45 |
<% |
403 |
04 Aug 06 |
gregory |
46 |
if(request.getAttribute("error") != null) |
403 |
04 Aug 06 |
gregory |
47 |
{ |
403 |
04 Aug 06 |
gregory |
48 |
%> |
403 |
04 Aug 06 |
gregory |
49 |
<%=request.getAttribute("error")%> |
403 |
04 Aug 06 |
gregory |
50 |
<% |
403 |
04 Aug 06 |
gregory |
51 |
} |
403 |
04 Aug 06 |
gregory |
52 |
else |
403 |
04 Aug 06 |
gregory |
53 |
{ |
672 |
22 Sep 06 |
gregory |
54 |
%>Insuffiecient permissions to access this resource.<% |
403 |
04 Aug 06 |
gregory |
55 |
} |
403 |
04 Aug 06 |
gregory |
56 |
%> |
403 |
04 Aug 06 |
gregory |
57 |
</td></tr></table> |
403 |
04 Aug 06 |
gregory |
58 |
</div> |
403 |
04 Aug 06 |
gregory |
59 |
<div class="appRow sectionTitle">Request permission</div> |
403 |
04 Aug 06 |
gregory |
60 |
<div class="appRow appContent padded text"> |
403 |
04 Aug 06 |
gregory |
61 |
Contact your facility administrator about extending your permissions.<br/> |
403 |
04 Aug 06 |
gregory |
62 |
<a href="javascript:history.back()">Go back</a> |
403 |
04 Aug 06 |
gregory |
63 |
</div> |
403 |
04 Aug 06 |
gregory |
64 |
<%@ include file="/view/fragments/footer.jspf" %> |
403 |
04 Aug 06 |
gregory |
65 |
</div> |
403 |
04 Aug 06 |
gregory |
66 |
</body> |
403 |
04 Aug 06 |
gregory |
67 |
</html> |
403 |
04 Aug 06 |
gregory |
68 |
|
403 |
04 Aug 06 |
gregory |
69 |
|