comparison src/main/webapp/pages/topicPage.jsp @ 58:b8ad346e39a0

new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 02 May 2016 12:03:30 +0200
parents 95bf4ac726e6
children 90d5e86c157d
comparison
equal deleted inserted replaced
57:5cbe567a9c52 58:b8ad346e39a0
211 <th><label class="tableTitle">Dynasty</label></th> 211 <th><label class="tableTitle">Dynasty</label></th>
212 <th><label class="tableTitle">Period</label></th> 212 <th><label class="tableTitle">Period</label></th>
213 <th><label class="tableTitle">Admin Type</label></th> 213 <th><label class="tableTitle">Admin Type</label></th>
214 <th><label class="tableTitle">Section Name</label></th> 214 <th><label class="tableTitle">Section Name</label></th>
215 <th><label class="tableTitle">Section Pages</label></th> 215 <th><label class="tableTitle">Section Pages</label></th>
216 <th><label class="tableTitle">View Text</label></th> 216 <th><label class="tableTitle">Load Text (Plain)</label></th>
217 <th><label class="tableTitle">Existing Tasks</label></th> 217 <th><label class="tableTitle">Load tagged text in Extraction Interface</label></th>
218 <th><label class="tableTitle">Remove</label></th> 218 <th><label class="tableTitle">Remove</label></th>
219 </tr> 219 </tr>
220 220
221 <!-- pending book list --> 221 <!-- pending book list -->
222 <% for(DBBook book : sessionBean.getTopicPage().getPendingBookList() ) { %> 222 <% for(DBBook book : sessionBean.getTopicPage().getPendingBookList() ) { %>
534 </td> 534 </td>
535 </tr> 535 </tr>
536 </table> 536 </table>
537 </th> 537 </th>
538 538
539 <th><label class="tableTitle">View Text</label></th> 539 <th><label class="tableTitle">Load Text (Plain)</label></th>
540 <th><label class="tableTitle">Existing Tasks</label></th> 540 <th><label class="tableTitle">Load tagged text in Extraction Interface</label></th>
541 <th><label class="tableTitle">Remove</label></th> 541 <th><label class="tableTitle">Remove</label></th>
542 </tr> 542 </tr>
543 543
544 <% for(DBSection section : sessionBean.getTopicPage().getDisplaySectionList() ) { %> 544 <% for(DBSection section : sessionBean.getTopicPage().getDisplaySectionList() ) { %>
545 <tr> 545 <tr>
579 <tr><td><%=branch.getLabel() %></td></tr> 579 <tr><td><%=branch.getLabel() %></td></tr>
580 </table> 580 </table>
581 </td> 581 </td>
582 <td style="max-width:150px"> 582 <td style="max-width:150px">
583 <% if (branch.hasContributor(sessionBean.getUser().getId())) { %> 583 <% if (branch.hasContributor(sessionBean.getUser().getId())) { %>
584 <a href="<%=sessionBean.getApplicationBean().getRootServer() %>/pages/branchPage.jsp?branchId=<%=branch.getId() %>" > 584
585 <img title="Manage Branch" src="<%=sessionBean.getApplicationBean().getEditBranchImage()%>"/> 585 <table style="width:100%">
586 </a> 586 <tr><td>
587 <a href="<%=sessionBean.getApplicationBean().getRootServer() %>/pages/branchPage.jsp?branchId=<%=branch.getId() %>" >
588 <img title="Manage Branch" src="<%=sessionBean.getApplicationBean().getEditBranchImage()%>"/>
589 </a>
590 </td></tr>
591 <tr><td>
592 <!-- view text for the latest version -->
593 <a onclick="branchInExtractionInterface('<%=branch.getId() %>', '<%=branch.getCurrentLastFileId() %>', '<%=branch.getSectionId() %>', '<%=branch.getSection().getName() %>', '<%=branch.getBook().getId() %>', '<%=branch.getBook().getName() %>', '<%=sessionBean.getUser().getId() %>', '<%=sessionBean.getApplicationBean().getExtractionInterfaceUrl() %>');">
594 <img title="Show Task in Extraction Interface" src="<%=sessionBean.getApplicationBean().getShowImage()%>"/>
595 </a>
596
597 </td></tr>
598 </table>
599
587 <% } else { %> 600 <% } else { %>
588 <label>Contributors: <%=branch.getContributorsNameList() %></label> 601 <label>Contributors: <%=branch.getContributorsNameList() %></label>
589 <% } %> 602 <% } %>
590 </td> 603 </td>
591 </tr> 604 </tr>