comparison src/main/webapp/pages/topicPage.jsp @ 54:a00efd5d9e77

new: adding delete saved table function
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Thu, 04 Feb 2016 11:30:46 +0100
parents 89d1076df1c3
children 95bf4ac726e6
comparison
equal deleted inserted replaced
53:db2088ac1f50 54:a00efd5d9e77
129 </tr> 129 </tr>
130 <tr> 130 <tr>
131 <td><label>Description</label></td> 131 <td><label>Description</label></td>
132 <td> 132 <td>
133 <input type="text" name="description" size="60" maxlength="250" value="<%=sessionBean.getTopicPage().getTopic().getDescription() %>" /> 133 <input type="text" name="description" size="60" maxlength="250" value="<%=sessionBean.getTopicPage().getTopic().getDescription() %>" />
134 <input type="image" alt="edit description" onclick="setAction('updateDescription', 'topicForm');" 134 <input type="image" title="edit description" onclick="setAction('updateDescription', 'topicForm');"
135 src="<%=sessionBean.getApplicationBean().getSaveImage()%>" width="15" height="15"/> 135 src="<%=sessionBean.getApplicationBean().getSaveImage()%>" width="15" height="15"/>
136 136
137 </td> 137 </td>
138 </tr> 138 </tr>
139 <tr> 139 <tr>
140 <td><label>Searching Keywords(separated by ",")</label></td> 140 <td><label>Searching Keywords(separated by ",")</label></td>
141 <td> 141 <td>
142 <input type="text" name="keywords" size="60" maxlength="250" value="<%=sessionBean.getTopicPage().getTopic().getKeywords() %>" /> 142 <input type="text" name="keywords" size="60" maxlength="250" value="<%=sessionBean.getTopicPage().getTopic().getKeywords() %>" />
143 <input type="image" alt="edit keywords" onclick="setAction('updateKeywords', 'topicForm');" 143 <input type="image" title="edit keywords" onclick="setAction('updateKeywords', 'topicForm');"
144 src="<%=sessionBean.getApplicationBean().getSaveImage()%>" width="15" height="15"/> 144 src="<%=sessionBean.getApplicationBean().getSaveImage()%>" width="15" height="15"/>
145 145
146 </td> 146 </td>
147 </tr> 147 </tr>
148 <tr> 148 <tr>
560 <!-- view text in Ext-Interface --> 560 <!-- view text in Ext-Interface -->
561 <td> 561 <td>
562 <a href="#" 562 <a href="#"
563 title="Show Section in Extraction Interface" 563 title="Show Section in Extraction Interface"
564 onclick="sectionInExtractionInterface('<%=section.getId() %>', '<%=section.getName() %>', '<%=section.getBookId() %>', '<%=section.getBook().getName() %>', '<%=sessionBean.getUser().getId() %>', '<%=sessionBean.getApplicationBean().getExtractionInterfaceUrl()%>');"> 564 onclick="sectionInExtractionInterface('<%=section.getId() %>', '<%=section.getName() %>', '<%=section.getBookId() %>', '<%=section.getBook().getName() %>', '<%=sessionBean.getUser().getId() %>', '<%=sessionBean.getApplicationBean().getExtractionInterfaceUrl()%>');">
565 <img alt="Show Section in Extraction Interface" src="<%=sessionBean.getApplicationBean().getShowImage()%>"> 565 <img title="Show Section in Extraction Interface" src="<%=sessionBean.getApplicationBean().getShowImage()%>">
566 </a> 566 </a>
567 </td> 567 </td>
568 568
569 <!-- existing branches (tasks) --> 569 <!-- existing branches (tasks) -->
570 <td style="max-width:300px;"> 570 <td style="max-width:300px;">
579 </table> 579 </table>
580 </td> 580 </td>
581 <td style="max-width:150px"> 581 <td style="max-width:150px">
582 <% if (branch.hasContributor(sessionBean.getUser().getId())) { %> 582 <% if (branch.hasContributor(sessionBean.getUser().getId())) { %>
583 <a href="<%=sessionBean.getApplicationBean().getRootServer() %>/pages/branchPage.jsp?branchId=<%=branch.getId() %>" > 583 <a href="<%=sessionBean.getApplicationBean().getRootServer() %>/pages/branchPage.jsp?branchId=<%=branch.getId() %>" >
584 <img alt="Manage Branch" src="<%=sessionBean.getApplicationBean().getEditBranchImage()%>"/> 584 <img title="Manage Branch" src="<%=sessionBean.getApplicationBean().getEditBranchImage()%>"/>
585 </a> 585 </a>
586 <% } else { %> 586 <% } else { %>
587 <label>Contributors: <%=branch.getContributorsNameList() %></label> 587 <label>Contributors: <%=branch.getContributorsNameList() %></label>
588 <% } %> 588 <% } %>
589 </td> 589 </td>