5048 |
17 Aug 09 |
nicklas |
1 |
<%-- $Id$ |
5048 |
17 Aug 09 |
nicklas |
2 |
------------------------------------------------------------------ |
5048 |
17 Aug 09 |
nicklas |
Copyright (C) 2009 Nicklas Nordborg |
5048 |
17 Aug 09 |
nicklas |
4 |
|
5048 |
17 Aug 09 |
nicklas |
5 |
This file is part of BASE - BioArray Software Environment. |
5048 |
17 Aug 09 |
nicklas |
6 |
Available at http://base.thep.lu.se/ |
5048 |
17 Aug 09 |
nicklas |
7 |
|
5048 |
17 Aug 09 |
nicklas |
8 |
BASE is free software; you can redistribute it and/or |
5048 |
17 Aug 09 |
nicklas |
9 |
modify it under the terms of the GNU General Public License |
5048 |
17 Aug 09 |
nicklas |
10 |
as published by the Free Software Foundation; either version 3 |
5048 |
17 Aug 09 |
nicklas |
11 |
of the License, or (at your option) any later version. |
5048 |
17 Aug 09 |
nicklas |
12 |
|
5048 |
17 Aug 09 |
nicklas |
13 |
BASE is distributed in the hope that it will be useful, |
5048 |
17 Aug 09 |
nicklas |
14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
5048 |
17 Aug 09 |
nicklas |
15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
5048 |
17 Aug 09 |
nicklas |
16 |
GNU General Public License for more details. |
5048 |
17 Aug 09 |
nicklas |
17 |
|
5048 |
17 Aug 09 |
nicklas |
18 |
You should have received a copy of the GNU General Public License |
5048 |
17 Aug 09 |
nicklas |
19 |
along with BASE. If not, see <http://www.gnu.org/licenses/>. |
5048 |
17 Aug 09 |
nicklas |
20 |
------------------------------------------------------------------ |
5048 |
17 Aug 09 |
nicklas |
21 |
--%> |
5426 |
24 Sep 10 |
nicklas |
22 |
<%@ page pageEncoding="UTF-8" session="false" |
5048 |
17 Aug 09 |
nicklas |
23 |
import="net.sf.basedb.core.SessionControl" |
5048 |
17 Aug 09 |
nicklas |
24 |
import="net.sf.basedb.core.DbControl" |
5048 |
17 Aug 09 |
nicklas |
25 |
import="net.sf.basedb.core.Permission" |
5048 |
17 Aug 09 |
nicklas |
26 |
import="net.sf.basedb.core.Item" |
5048 |
17 Aug 09 |
nicklas |
27 |
import="net.sf.basedb.core.SystemItems" |
5048 |
17 Aug 09 |
nicklas |
28 |
import="net.sf.basedb.clients.web.Base" |
5048 |
17 Aug 09 |
nicklas |
29 |
import="net.sf.basedb.util.Values" |
5048 |
17 Aug 09 |
nicklas |
30 |
%> |
5048 |
17 Aug 09 |
nicklas |
31 |
<%@ taglib |
5048 |
17 Aug 09 |
nicklas |
32 |
prefix="base" uri="/WEB-INF/base.tld" |
5048 |
17 Aug 09 |
nicklas |
33 |
%> |
5048 |
17 Aug 09 |
nicklas |
34 |
<% |
5048 |
17 Aug 09 |
nicklas |
35 |
final SessionControl sc = Base.getExistingSessionControl(pageContext, true); |
5048 |
17 Aug 09 |
nicklas |
36 |
final String ID = sc.getId(); |
5048 |
17 Aug 09 |
nicklas |
37 |
final String root = request.getContextPath(); |
6244 |
25 Feb 13 |
nicklas |
38 |
Item sourceType = Item.valueOf(request.getParameter("item_type")); |
6244 |
25 Feb 13 |
nicklas |
39 |
int sourceId = Values.getInt(request.getParameter("item_id")); |
7952 |
12 May 21 |
nicklas |
40 |
int transactId = Values.getInt(request.getParameter("transact_id")); |
5048 |
17 Aug 09 |
nicklas |
41 |
%> |
5048 |
17 Aug 09 |
nicklas |
42 |
<base:page type="include"> |
6402 |
29 Jan 14 |
nicklas |
43 |
<base:head scripts="/common/history/history.js" /> |
5048 |
17 Aug 09 |
nicklas |
44 |
<base:body> |
6244 |
25 Feb 13 |
nicklas |
45 |
<div id="history-data" class="datacontainer" |
6244 |
25 Feb 13 |
nicklas |
46 |
data-source-type="<%=sourceType.name() %>" |
6244 |
25 Feb 13 |
nicklas |
47 |
data-source-id="<%=sourceId %>" |
7952 |
12 May 21 |
nicklas |
48 |
data-transact-id="<%=transactId%>" |
6244 |
25 Feb 13 |
nicklas |
49 |
></div> |
6307 |
15 Aug 13 |
nicklas |
50 |
<div class="absolutefull"><iframe name="history-frame" id="idHistory" |
6244 |
25 Feb 13 |
nicklas |
51 |
src="<%=root%>/common/history/wait.jsp" |
6244 |
25 Feb 13 |
nicklas |
52 |
class="absolutefull" style="width: 100%; height: 100%;"></iframe></div> |
5048 |
17 Aug 09 |
nicklas |
53 |
</base:body> |
5048 |
17 Aug 09 |
nicklas |
54 |
</base:page> |