]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman/WebContent/study/displayKnowledge.jsp
Salome HOME
Tool bar is improved.
[tools/siman.git] / Workspace / Siman / WebContent / study / displayKnowledge.jsp
1 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
2     pageEncoding="ISO-8859-1"
3 %><%@
4     taglib prefix="s" uri="/struts-tags"
5 %>
6 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
7 <html>
8
9   <head>
10     <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
11     <title><s:text name="name.module"/></title>
12     <link href=<s:url value="/skin/default.css"/> rel="stylesheet" type="text/css">
13   </head>
14
15   <body>
16 <!-- Menu-bar
17      =============================================================================================================================
18   -->
19     <jsp:include page="/jsp/menubar.jsp" />
20
21 <!-- Title-bar
22      =============================================================================================================================
23   -->
24     <jsp:include page="/jsp/titlebar.jsp" />
25
26 <!-- Left pane
27      =============================================================================================================================
28   -->
29     <div id=left-pane>
30       <jsp:include page="/jsp/toolbar.jsp" />
31       <div id=top-spacer></div>
32       <jsp:include page="/jsp/menuitem.jsp">
33         <jsp:param name="menu" value="knowledge" />
34       </jsp:include>
35       <jsp:include page="/jsp/knowledgeProperties.jsp" />
36     </div>
37
38     <div id=main-pane>
39
40 <!-- Description and simulation context sections
41      =============================================================================================================================
42
43      Display of tabs
44   -->
45       <div id="tab-bar">
46       <div id="tab-description">
47           <span id="tab-front">&nbsp;&nbsp;<s:text name="title.description"/>&nbsp;&nbsp;</span>
48       </div>
49       <div id="tab-context">
50           <span id="tab-front">&nbsp;&nbsp;<s:text name="title.context"/>&nbsp;&nbsp;</span>
51       </div>
52       </div>
53
54 <!-- Display of contents
55   -->
56       <div id="article-box">
57         <table width=100% border=0 cellspacing=0 cellpadding=0>
58           <tr valign=top>
59
60 <!--      Description of the knowledge element -->
61           <td width=38%>     <!-- Must conform to the width of above tab-description -->
62             <div id="top-spacer"></div>
63             <div id=article-body class=text>
64               <jsp:include page="/jsp/readDescription.jsp">
65                 <jsp:param name="entity" value="knowledge" />
66               </jsp:include>
67             </div>
68           </td>
69
70 <!--      Separator                            -->
71           <td width=1 bgcolor=#AAAAAA></td>
72
73 <!--      Simulation contexts                  -->
74           <td width=62%>
75             <div id="top-spacer"></div>
76             <div id=article-body class=text>
77               <jsp:include page="/jsp/readContext.jsp" />
78             </div>
79           </td>
80           </tr>
81         </table>
82       </div>
83
84 <!-- Knowledge elements section
85      =============================================================================================================================
86   -->
87       <s:if test="knowledges != null">
88       <div id=article-box>
89         <div id=section><s:text name="title.otherknowledge"/></div>
90         <div id=article-body class=text>
91           <jsp:include page="/jsp/readKnowledge.jsp">
92             <jsp:param name="entity" value="knowledge" />
93           </jsp:include>
94         </div>
95       </div>
96       </s:if>
97
98 <!-- Documents section
99      =============================================================================================================================
100   -->
101       <s:if test="documents != null">
102       <div id=article-box>
103         <div id=section><s:text name="title.document"/></div>
104         <div id=article-body class=text>
105           <jsp:include page="/jsp/readContents.jsp">
106             <jsp:param name="entity" value="knowledge" />
107           </jsp:include>
108         </div>
109       </div>
110       </s:if>
111     </div>
112
113   </body>
114 </html>