1794 |
19 Jan 06 |
nicklas |
1 |
<%-- $Id$ |
1794 |
19 Jan 06 |
nicklas |
2 |
------------------------------------------------------------------ |
5425 |
23 Sep 10 |
nicklas |
Copyright (C) 2006 Jari Häkkinen, Nicklas Nordborg |
3675 |
16 Aug 07 |
jari |
Copyright (C) 2007 Johan Enell |
1794 |
19 Jan 06 |
nicklas |
5 |
|
2304 |
22 May 06 |
jari |
6 |
This file is part of BASE - BioArray Software Environment. |
2304 |
22 May 06 |
jari |
7 |
Available at http://base.thep.lu.se/ |
1794 |
19 Jan 06 |
nicklas |
8 |
|
1794 |
19 Jan 06 |
nicklas |
9 |
BASE is free software; you can redistribute it and/or |
1794 |
19 Jan 06 |
nicklas |
10 |
modify it under the terms of the GNU General Public License |
4476 |
05 Sep 08 |
jari |
11 |
as published by the Free Software Foundation; either version 3 |
1794 |
19 Jan 06 |
nicklas |
12 |
of the License, or (at your option) any later version. |
1794 |
19 Jan 06 |
nicklas |
13 |
|
1794 |
19 Jan 06 |
nicklas |
14 |
BASE is distributed in the hope that it will be useful, |
1794 |
19 Jan 06 |
nicklas |
15 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
1794 |
19 Jan 06 |
nicklas |
16 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
1794 |
19 Jan 06 |
nicklas |
17 |
GNU General Public License for more details. |
1794 |
19 Jan 06 |
nicklas |
18 |
|
1794 |
19 Jan 06 |
nicklas |
19 |
You should have received a copy of the GNU General Public License |
4510 |
11 Sep 08 |
jari |
20 |
along with BASE. If not, see <http://www.gnu.org/licenses/>. |
1794 |
19 Jan 06 |
nicklas |
21 |
------------------------------------------------------------------ |
1794 |
19 Jan 06 |
nicklas |
22 |
|
1794 |
19 Jan 06 |
nicklas |
23 |
@author Nicklas |
1794 |
19 Jan 06 |
nicklas |
24 |
@version 2.0 |
1794 |
19 Jan 06 |
nicklas |
25 |
--%> |
5426 |
24 Sep 10 |
nicklas |
26 |
<%@ page pageEncoding="UTF-8" session="false" |
1794 |
19 Jan 06 |
nicklas |
27 |
import="net.sf.basedb.core.*" |
1794 |
19 Jan 06 |
nicklas |
28 |
import="net.sf.basedb.clients.web.*" |
2753 |
20 Oct 06 |
nicklas |
29 |
import="net.sf.basedb.util.Values" |
1794 |
19 Jan 06 |
nicklas |
30 |
%> |
1794 |
19 Jan 06 |
nicklas |
31 |
<%@ taglib |
1794 |
19 Jan 06 |
nicklas |
32 |
prefix="base" uri="/WEB-INF/base.tld" |
1794 |
19 Jan 06 |
nicklas |
33 |
%> |
1794 |
19 Jan 06 |
nicklas |
34 |
<% |
1794 |
19 Jan 06 |
nicklas |
35 |
SessionControl sc = Base.getExistingSessionControl(pageContext, Permission.DENIED, Item.FILE); |
1794 |
19 Jan 06 |
nicklas |
36 |
String ID = sc.getId(); |
2432 |
27 Jun 06 |
nicklas |
37 |
int fileId = Values.getInt(request.getParameter("item_id")); |
1794 |
19 Jan 06 |
nicklas |
38 |
|
1794 |
19 Jan 06 |
nicklas |
39 |
%> |
1794 |
19 Jan 06 |
nicklas |
40 |
<base:page title="Files and directories"> |
7983 |
22 Jun 21 |
nicklas |
41 |
<base:head scripts="~manager.js"/> |
5938 |
27 Jan 12 |
nicklas |
42 |
<base:body> |
5938 |
27 Jan 12 |
nicklas |
43 |
<h1>Files and directories</h1> |
5938 |
27 Jan 12 |
nicklas |
44 |
<div class="content"> |
6137 |
19 Sep 12 |
nicklas |
45 |
<div class="absolutefull"><iframe class="absolutefull" |
6137 |
19 Sep 12 |
nicklas |
46 |
name="manager" id="idManager" src="frameset.jsp?ID=<%=ID%>&file_id=<%=fileId%>" |
5938 |
27 Jan 12 |
nicklas |
47 |
style="width: 100%; height: 100%;"></iframe></div> |
5938 |
27 Jan 12 |
nicklas |
48 |
</div> |
1794 |
19 Jan 06 |
nicklas |
49 |
</base:body> |
1794 |
19 Jan 06 |
nicklas |
50 |
</base:page> |