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