source: trunk/www/views/experiments/explorer/view/index.jsp @ 5426

Last change on this file since 5426 was 5426, checked in by Nicklas Nordborg, 13 years ago

References #1514: Fix character encoding of jsp files

  • Add pageEncoding="UTF-8" to all JSP files.
  • Add @charset="UTF-8"; to all CSS files.
  • Add charset="UTF-8" to all <script> tags

This should at least make Eclipse happy and hopefully allow other editors to automatically select the correct encoding.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 3.9 KB
Line 
1<%-- $Id: index.jsp 5426 2010-09-24 09:18:50Z nicklas $
2  ------------------------------------------------------------------
3  Copyright (C) 2006 Nicklas Nordborg
4
5  This file is part of BASE - BioArray Software Environment.
6  Available at http://base.thep.lu.se/
7
8  This file is part of BASE.
9
10  BASE is free software; you can redistribute it and/or
11  modify it under the terms of the GNU General Public License
12  as published by the Free Software Foundation; either version 3
13  of the License, or (at your option) any later version.
14
15  BASE is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License
21  along with BASE. If not, see <http://www.gnu.org/licenses/>.
22  ------------------------------------------------------------------
23
24  @author Nicklas
25  @version 2.0
26--%>
27<%@ page pageEncoding="UTF-8" session="false"
28  import="net.sf.basedb.core.SessionControl"
29  import="net.sf.basedb.core.DbControl"
30  import="net.sf.basedb.core.Item"
31  import="net.sf.basedb.core.ItemContext"
32  import="net.sf.basedb.core.BioAssaySet"
33  import="net.sf.basedb.clients.web.Base"
34  import="net.sf.basedb.clients.web.ExperimentExplorer"
35  import="net.sf.basedb.clients.web.WebException"
36  import="net.sf.basedb.util.Values"
37  import="net.sf.basedb.clients.web.util.HTML"
38  import="java.util.Set"
39  import="java.util.Arrays"
40%>
41<%
42final int bioAssaySetId = Values.getInt(request.getParameter("bioassayset_id"));
43final SessionControl sc = Base.getExistingSessionControl(pageContext, true);
44final String ID = sc.getId();
45final String cmd = request.getParameter("cmd");
46final String root = request.getContextPath()+"/";
47
48final String viewPage = "view.jsp?ID="+ID+"&bioassayset_id="+bioAssaySetId;
49
50String forward = null;
51String redirect = null;
52String message = null;
53
54DbControl dc = null;
55try
56{
57  dc = sc.newDbControl();
58  BioAssaySet bioAssaySet = BioAssaySet.getById(dc, bioAssaySetId);
59  ExperimentExplorer explorer = ExperimentExplorer.getExplorer(bioAssaySet);
60  if (cmd == null || "Explore".equals(cmd))
61  {
62    redirect = viewPage;
63  }
64  else if ("UpdateContext".equals(cmd))
65  {
66    ItemContext cc = explorer.getAndSetSpotContext(sc, pageContext);
67    redirect = viewPage;
68  }
69  else if ("SetReporterColumns".equals(cmd))
70  {
71    ItemContext cc = explorer.getAndSetSpotContext(sc, null);
72    cc.setSetting("reporter-columns", Values.getString(request.getParameter("columns"), cc.getSetting("reporter-columns")));
73    redirect = viewPage;
74  }
75  else if ("SetReporterIndex".equals(cmd))
76  {
77    explorer.setReporterIndex(Values.getInt(request.getParameter("reporterIndex")));
78    redirect = viewPage;
79  }
80  else if ("SetSpotIndex".equals(cmd))
81  {
82    explorer.setPositionIndex(Values.getInt(request.getParameter("spotIndex")));
83    redirect = viewPage;
84  }
85  else if ("SetAnnotationType".equals(cmd))
86  {
87    Integer[] annotationTypes = Values.getInt(request.getParameter("annotationtype_id").split("\\|"));
88    explorer.setAnnotationTypeIds(Arrays.asList(annotationTypes));
89   
90    // If an annotation type is selected the annotation column must be visible as the first column
91    ItemContext cc = explorer.getAndSetSpotContext(sc, null);
92    String columns = cc.getSetting("columns");
93    columns = columns.replaceAll("annotation\\.\\d+,", "");
94    for (Integer atId : annotationTypes)
95    {
96      columns = "annotation." + atId + "," + columns;
97    }
98    cc.setSetting("columns", columns);
99    redirect = viewPage;
100  }
101  else
102  {
103    throw new WebException("popup", "Invalid command", "The command {1} is not recognised as a valid command.", cmd);
104  }
105}
106finally
107{
108  if (dc != null) dc.close();
109}
110if (forward != null)
111{
112  pageContext.forward(forward);
113}
114else if (redirect != null)
115{
116  response.sendRedirect(redirect);
117}
118else if (message == null)
119{
120  response.sendRedirect(root + "common/close_popup.jsp?refresh_opener=1&wait=0");
121}
122else
123{
124  response.sendRedirect(root + "common/close_popup.jsp?refresh_opener=1&message="+HTML.urlEncode(message));
125}
126
127%>
128
129
130
131
Note: See TracBrowser for help on using the repository browser.