]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/Siman/study/importError.jsp
Salome HOME
SIMAN Eclipse workspace first version
[tools/siman.git] / Workspace / .metadata / .plugins / org.eclipse.wst.server.core / tmp0 / wtpwebapps / Siman / study / importError.jsp
1 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
2     pageEncoding="ISO-8859-1"
3 %>
4 <%@
5     taglib prefix="s" uri="/struts-tags"
6 %>
7 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
8
9 <!-- Initialization of the message
10      =============================================================================================================================
11   -->
12 <%  String  message = request.getParameter("message");
13     String  value   = request.getParameter("value");
14 %>
15 <s:set var="code"><%=message%></s:set>
16 <html>
17
18   <head>
19     <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
20     <title><s:text name="name.module"/></title>
21     <link href=<s:url value="/skin/default.css"/> rel="stylesheet" type="text/css">
22   </head>
23
24   <body>
25 <!-- Menu-bar
26      =============================================================================================================================
27   -->
28     <jsp:include page="/jsp/menubar.jsp">
29       <jsp:param name="menu" value="study" />
30     </jsp:include>
31
32 <!-- Title-bar
33      =============================================================================================================================
34   -->
35     <jsp:include page="/jsp/titlebar.jsp">
36       <jsp:param name="entity" value="study" />
37       <jsp:param name="disable" value="true" />
38     </jsp:include>
39
40 <!-- Left pane
41      =============================================================================================================================
42   -->
43     <div id=left-pane>
44       <jsp:include page="/jsp/toolbar.jsp">
45         <jsp:param name="tools" value="none" />
46       </jsp:include>
47       <div id=top-spacer></div>
48       <jsp:include page="/jsp/menuitem.jsp">
49         <jsp:param name="menu" value="study" />
50       </jsp:include>
51       <jsp:include page="/jsp/studyProperties.jsp" />
52     </div>
53
54 <!-- Message pane
55      =============================================================================================================================
56   -->
57     <div id=main-pane>
58       <div id=article-box>
59         <div id=section><s:text name="title.import"/></div>
60         <div id=article-body>
61           <table width=100% cellpadding=0 cellspacing=0 border=0 class=text>
62             <tr height=25 valign=middle>
63               <td>
64                 <s:text name="message.upload">
65                   <s:param><s:property value="%{fileName}"/></s:param>
66                 </s:text>
67               </td>
68             </tr>
69             <tr height=1 bgcolor=#AAAAAA><td></td></tr>
70           </table>
71           <table width=100% cellpadding=0 cellspacing=0 border=0 class=error>
72             <tr height=5><td></td></tr>
73             <tr>
74               <td>
75                 <s:text name="message.error.%{#code}">
76 <%  if (value != null) {
77 %>                <s:param><%=value%></s:param>
78 <%  }
79 %>              </s:text>
80               </td>
81             </tr>
82             <tr height=10><td></td></tr>
83             <tr>
84               <td align=center>
85                 <s:url id="back" namespace="/study" action="step-study" />
86                 <s:a href="%{#back}">
87                   <input type=button style='width: 100px;' value="<s:text name="button.ok"/>">
88                 </s:a>
89               </td>
90             </tr>
91           </table>
92         </div>
93       </div>
94     </div>
95
96   </body>
97