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