annotate src/main/webapp/pages/books.jsp @ 95:b27a99201cbe

New feature: new full text search with MySQL ngram parser (5.7.6 above)
author Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
date Mon, 03 Jul 2017 23:48:53 +0200
parents 85e27da9b18a
children 6a508b605b5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
1 <%@page import="de.mpiwg.gazetteer.bo.LGBranch"%>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
2 <%@page import="org.apache.commons.lang.StringUtils"%>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
3 <%@page import="de.mpiwg.gazetteer.db.DBSection"%>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
4 <%@page import="de.mpiwg.gazetteer.db.DBBook"%>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
5 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
6
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
7 <jsp:useBean id="sessionBean" class="de.mpiwg.web.jsp.SessionBean" scope="session" />
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
8
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
9 <html>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
11 <head>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
12
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
13 <jsp:include page="../componentes/headContent.jsp"/>
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
14
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
15 <script>
22
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
16
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
17 function setComment(t) {
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
18 var notes = t.value;
22
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
19 //var bookId = t.name;
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
20
22
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
21 var theForm = document.forms['booksForm'];
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
22 var input = document.createElement('input');
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
23 input.type = 'hidden';
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
24 input.name = 'bookComment';
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
25 input.value = notes;
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
26 theForm.appendChild(input);
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
27 }
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
28
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
29 </script>
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
30 </head>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
31
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
32 <body>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 89
diff changeset
33 <jsp:include page="../componentes/template2.jsp"/>
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
34 <div id="page">
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
35 <form name="booksForm"
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
36 action="<%=sessionBean.getApplicationBean().getRootServer()%>/proxy.jsp"
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
37 method="post"
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
38 class="contentForm">
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
39 <input name="bean" type="hidden" value="booksBean" />
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
40
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
41 <% if(sessionBean.getUser() == null) { %>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 89
diff changeset
42 <label class="subTitel">Please login or create a new account above</label>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
43 <% } else {
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
44 if (sessionBean.getBooksPage().getCompleteBookList() == null){
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
45 sessionBean.getBooksPage().loadParameters(request, response);
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
46 sessionBean.getBooksPage().loadBooks();
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
47 }
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
48
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
49 %>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
50
13
9c6e74761f60 new: link to Edit Toc page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 12
diff changeset
51 <div class="subTitel">List of Books
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
52 <input type="image"
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
53 onclick="setAction('forceReloadBooks', 'booksForm');"
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
54 src="<%=sessionBean.getApplicationBean().getRefreshImage()%>" width="20" height="20"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
55
32
74fe1518bc5c new: sorting and filters in homepage for branch list
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 26
diff changeset
56 <p class="label"><%= sessionBean.getBooksPage().getBookNumber() %> books in Chinese Local Gazetteers </p>
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
57 <p class="label"><%= (StringUtils.isNotEmpty(sessionBean.getBooksPage().getFilteringMessage())) ? sessionBean.getBooksPage().getFilteringMessage() : ""%> </p>
13
9c6e74761f60 new: link to Edit Toc page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 12
diff changeset
58 </div>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
59
36
eab47936591a apply scrollbar to other tables as well
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 32
diff changeset
60 <jsp:include page="../componentes/paginator.jsp">
eab47936591a apply scrollbar to other tables as well
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 32
diff changeset
61 <jsp:param name="formName" value="booksForm"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
62 </jsp:include>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
63
36
eab47936591a apply scrollbar to other tables as well
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 32
diff changeset
64 <div class="tableDiv double-scroll">
eab47936591a apply scrollbar to other tables as well
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 32
diff changeset
65 <table class="pageTable">
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
66 <tr>
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
67 <td>
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
68 <table class="sortTable">
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
69 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
70 <td><label class="tableTitle">Book ID</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
71 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
72 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
73 <tr><td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
74 <input type="image"
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
75 onclick="setAction('sortByBookIdUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
76 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
77 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
78 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
79 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
80 onclick="setAction('sortByBookIdDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
81 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
82 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
83 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
84 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
85 </tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
86 </table>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
87
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
88 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
89 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
90 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
91 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
92 <td><label class="tableTitle">Book Name</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
93 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
94 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
95 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
96 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
97 onclick="setAction('sortByBookNameUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
98 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
99 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
100 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
101 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
102 onclick="setAction('sortByBookNameDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
103 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
104 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
105 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
106 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
107 </tr>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
108 <tr>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
109 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
110 <input type="text" name="bookNameFilter" value="<%= sessionBean.getBooksPage().getBookNameFilter()%>" size="10"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
111 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
112 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
113 <input type="image"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
114 onclick="setAction('filter', 'booksForm');"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
115 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
116 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
117 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
118 </table>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
119 </td>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
120 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
121 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
122 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
123 <td><label class="tableTitle">Edition</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
124 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
125 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
126 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
127 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
128 onclick="setAction('sortByEditionUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
129 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
130 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
131 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
132 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
133 onclick="setAction('sortByEditionDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
134 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
135 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
136 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
137 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
138 </tr>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
139 <tr>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
140 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
141 <input type="text" name="editionFilter" value="<%= sessionBean.getBooksPage().getEditionFilter()%>" size="10"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
142 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
143 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
144 <input type="image"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
145 onclick="setAction('filter', 'booksForm');"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
146 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
147 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
148 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
149 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
150 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
151 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
152 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
153 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
154 <td><label class="tableTitle">Level 1</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
155 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
156 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
157 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
158 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
159 onclick="setAction('sortByLevel1Up', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
160 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
161 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
162 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
163 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
164 onclick="setAction('sortByLevel1Down', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
165 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
166 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
167 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
168 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
169 </tr>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
170 <tr>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
171 <td>
18
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
172 <input type="text" name="level1Filter" value="<%= sessionBean.getBooksPage().getLevel1Filter()%>" size="5"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
173 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
174 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
175 <input type="image"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
176 onclick="setAction('filter', 'booksForm');"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
177 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
178 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
179 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
180 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
181 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
182 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
183 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
184 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
185 <td><label class="tableTitle">Level 2</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
186 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
187 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
188 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
189 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
190 onclick="setAction('sortByLevel2Up', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
191 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
192 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
193 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
194 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
195 onclick="setAction('sortByLevel2Down', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
196 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
197 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
198 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
199 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
200 </tr>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
201 <tr>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
202 <td>
18
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
203 <input type="text" name="level2Filter" value="<%= sessionBean.getBooksPage().getLevel2Filter()%>" size="5"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
204 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
205 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
206 <input type="image"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
207 onclick="setAction('filter', 'booksForm');"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
208 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
209 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
210 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
211 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
212 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
213 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
214 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
215 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
216 <td><label class="tableTitle">Period</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
217 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
218 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
219 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
220 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
221 onclick="setAction('sortByPeriodUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
222 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
223 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
224 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
225 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
226 onclick="setAction('sortByPeriodDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
227 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
228 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
229 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
230 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
231 </tr>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
232 <tr>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
233 <td>
18
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
234 <input type="text" name="periodFilter" value="<%= sessionBean.getBooksPage().getPeriodFilter()%>" size="5"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
235 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
236 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
237 <input type="image"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
238 onclick="setAction('filter', 'booksForm');"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
239 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
240 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
241 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
242 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
243 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
244 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
245 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
246 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
247 <td><label class="tableTitle">Dynasty</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
248 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
249 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
250 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
251 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
252 onclick="setAction('sortByDynastyUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
253 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
254 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
255 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
256 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
257 onclick="setAction('sortByDynastyDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
258 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
259 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
260 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
261 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
262 </tr>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
263 <tr>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
264 <td>
18
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
265 <input type="text" name="dynastyFilter" value="<%= sessionBean.getBooksPage().getDynastyFilter()%>" size="5"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
266 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
267 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
268 <input type="image"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
269 onclick="setAction('filter', 'booksForm');"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
270 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
271 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
272 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
273 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
274 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
275 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
276 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
277 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
278 <td><label class="tableTitle">Admin Type</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
279 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
280 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
281 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
282 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
283 onclick="setAction('sortByAdminTypeUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
284 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
285 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
286 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
287 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
288 onclick="setAction('sortByAdminTypeDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
289 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
290 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
291 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
292 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
293 </tr>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
294 <tr>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
295 <td>
18
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
296 <input type="text" name="adminTypeFilter" value="<%= sessionBean.getBooksPage().getAdminTypeFilter()%>" size="5"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
297 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
298 <td>
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
299 <input type="image"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
300 onclick="setAction('filter', 'booksForm');"
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
301 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
302 </td>
17
372dab740f15 new: filters in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 15
diff changeset
303 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
304 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
305 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
306 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
307 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
308 <tr>
89
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
309 <td><label class="tableTitle">Book Year</label></td>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
310 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
311 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
312 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
313 <input type="image"
89
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
314 onclick="setAction('sortByBookYearUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
315 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
316 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
317 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
318 <input type="image"
89
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
319 onclick="setAction('sortByBookYearDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
320 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
321 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
322 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
323 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
324 </tr>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
325 <tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
326 <td>
89
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
327 <input type="text" name="bookYearFilter" value="<%= sessionBean.getBooksPage().getBookYearFilter()%>" size="5"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
328 </td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
329 <td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
330 <input type="image"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
331 onclick="setAction('filter', 'booksForm');"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
332 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
333 </td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
334 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
335 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
336 </td>
89
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
337 <td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
338 <table class="sortTable">
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
339 <tr>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
340 <td><label class="tableTitle">Edition Year</label></td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
341 <td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
342 <table>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
343 <tr><td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
344 <input type="image"
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
345 onclick="setAction('sortByEditionYearUp', 'booksForm');"
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
346 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
347 </td></tr>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
348 <tr><td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
349 <input type="image"
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
350 onclick="setAction('sortByEditionYearDown', 'booksForm');"
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
351 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
352 </td></tr>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
353 </table>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
354 </td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
355 </tr>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
356 <tr>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
357 <td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
358 <input type="text" name="editionYearFilter" value="<%= sessionBean.getBooksPage().getEditionYearFilter()%>" size="5"/>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
359 </td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
360 <td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
361 <input type="image"
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
362 onclick="setAction('filter', 'booksForm');"
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
363 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
364 </td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
365 </tr>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
366 </table>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
367 </td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
368 <td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
369 <table class="sortTable">
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
370 <tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
371 <td><label class="tableTitle">Source</label></td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
372 <td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
373 <table>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
374 <tr><td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
375 <input type="image"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
376 onclick="setAction('sortBySourceUp', 'booksForm');"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
377 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
378 </td></tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
379 <tr><td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
380 <input type="image"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
381 onclick="setAction('sortBySourceDown', 'booksForm');"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
382 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
383 </td></tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
384 </table>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
385 </td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
386 </tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
387 <tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
388 <td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
389 <input type="text" name="sourceFilter" value="<%= sessionBean.getBooksPage().getSourceFilter()%>" size="5"/>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
390 </td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
391 <td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
392 <input type="image"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
393 onclick="setAction('filter', 'booksForm');"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
394 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
395 </td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
396 </tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
397 </table>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
398 </td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
399
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
400 <td><label class="tableTitle">Edit TOC</label></td> <!-- go to toc page -->
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
401 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
402 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
403 <tr>
18
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
404 <td><label class="tableTitle">TOC Done
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
405
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
406 </label>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
407 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
408 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
409 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
410 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
411 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
412 onclick="setAction('sortByTocCorrectionUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
413 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
414 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
415 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
416 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
417 onclick="setAction('sortByTocCorrectionDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
418 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
419 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
420 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
421 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
422 </tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
423 </table>
14
3387d855a194 new: toc status in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 13
diff changeset
424 </td> <!-- finished or not -->
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
425 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
426 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
427 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
428 <td><label class="tableTitle">Last Editor</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
429 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
430 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
431 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
432 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
433 onclick="setAction('sortByEditorUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
434 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
435 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
436 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
437 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
438 onclick="setAction('sortByEditorDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
439 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
440 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
441 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
442 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
443 </tr>
24
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
444 <tr>
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
445 <td>
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
446 <input type="text" name="lastEditorFilter" value="<%= sessionBean.getBooksPage().getLastEditorFilter()%>" size="7"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
447 </td>
24
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
448 <td>
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
449 <input type="image"
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
450 onclick="setAction('filter', 'booksForm');"
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
451 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
452 </td>
24
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
453 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
454 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
455 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
456 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
457 <table class="sortTable">
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
458 <tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
459 <td><label class="tableTitle">Edit Time</label></td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
460 <td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
461 <table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
462 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
463 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
464 onclick="setAction('sortByDateUp', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
465 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
466 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
467 <tr><td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
468 <input type="image"
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
469 onclick="setAction('sortByDateDown', 'booksForm');"
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
470 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
471 </td></tr>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
472 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
473 </td>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
474 </tr>
24
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
475 <tr>
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
476 <td>
26
ce2e3f2814c0 new: check userGroup when login
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 24
diff changeset
477 <input type="text" name="editTimeFilter" value="<%= sessionBean.getBooksPage().getEditTimeFilter()%>" size="9"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
478 </td>
24
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
479 <td>
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
480 <input type="image"
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
481 onclick="setAction('filter', 'booksForm');"
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
482 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
483 </td>
24
07f7594ba56e add filters to lastEditor and editTime in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 22
diff changeset
484 </tr>
15
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
485 </table>
d81a5401b9af new: sorting in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 14
diff changeset
486 </td>
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
487 <td>
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
488 <table class="sortTable">
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
489 <tr>
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
490 <td><label class="tableTitle">Comments</label></td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
491
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
492 </tr>
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
493 </table>
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
494 </td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
495
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
496
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
497 </tr>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
498
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
499
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
500 <% for (DBBook book : sessionBean.getBooksPage().getDisplayBookList() ) {%>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
501
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
502 <tr>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
503 <!-- books info -->
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
504 <td><%=book.getId() %></td>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
505 <td><%=book.getName() %></td>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
506 <td><%=book.getEdition() %></td>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
507 <td><%=book.getLevel1()%></td>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
508 <td><%=book.getLevel2() %></td>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
509 <td><%=book.getPeriod() %></td>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
510 <td><%=book.getDynasty() %></td>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
511 <td><%=book.getAdmin_type() %></td>
89
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
512 <td><%=book.getBookYear() %></td>
85e27da9b18a New feature : add book_year and edition_year in Books page
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 78
diff changeset
513 <td><%=book.getEditionYear() %></td>
78
141fa833d126 Bug fixed : Display columns named "source"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 75
diff changeset
514 <td><%=book.getSource() %></td>
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
515 <td><a href="<%=sessionBean.getApplicationBean().getTocInterfaceUrl()%>/check_sections_details.php?book_id=<%=book.getId() %>&amp;count=10000&amp;sessionId=<%= session.getId()%>" target="blank">
13
9c6e74761f60 new: link to Edit Toc page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 12
diff changeset
516 Edit TOC</a></td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
517
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
518 <td>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
519
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
520 <% if ( book.getTocCorrection().equals("1") ) { %>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
521 <input type="image" onclick="setAction0('unSetTocCorrection', 'booksForm', 'tocBookId', '<%=book.getId() %>');"
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
522 src="<%=sessionBean.getApplicationBean().getCheckboxCheckedImage()%>" width="20" height="20"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
523
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
524 <% } else { %>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
525 <input type="image" onclick="setAction0('setTocCorrection', 'booksForm', 'tocBookId', '<%=book.getId() %>');"
14
3387d855a194 new: toc status in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 13
diff changeset
526 src="<%=sessionBean.getApplicationBean().getCheckboxUncheckedImage()%>" width="20" height="20"/>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
527
14
3387d855a194 new: toc status in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 13
diff changeset
528 <% } %>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
529
14
3387d855a194 new: toc status in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 13
diff changeset
530 </td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
531
12
d57fe2179f61 Improvement of book page
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents: 10
diff changeset
532 <td><%= (book.getCurrentSectionVersion() == null) ? "" : book.getCurrentSectionVersion().getEditor() %></td>
d57fe2179f61 Improvement of book page
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents: 10
diff changeset
533 <td><%= (book.getCurrentSectionVersion() == null) ? "" : book.getCurrentSectionVersion().getDate() %></td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
534
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
535 <td>
22
2c6f44ef34ab new: add comment textarea
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 21
diff changeset
536 <textarea rows="2" cols="15" maxlength="100" name='<%=book.getId()%>' onchange="setComment(this)" ><%=book.getComments()%></textarea>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
537 <input type="image" alt="save comment"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
538 onclick="setAction0('saveComment', 'booksForm', 'currentBookId', '<%=book.getId()%>');"
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
539 src="<%=sessionBean.getApplicationBean().getSaveImage()%>" width="20" height="20"/>
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
540
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
541 </td>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
542
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
543 </tr>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
544
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
545 <% } %>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
546 </table>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
547
18
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
548 <jsp:include page="../componentes/paginator.jsp">
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
549 <jsp:param name="formName" value="booksForm"/>
881e7591f3e4 new: adding paginator in books page
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 17
diff changeset
550 </jsp:include>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
551
36
eab47936591a apply scrollbar to other tables as well
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 32
diff changeset
552 </div>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
553
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
554
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
555 <% } %>
21
5b1856cd6b4f bug fixed: 1.TOC Done display issue 2.issue in firefox
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 20
diff changeset
556 </form>
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
557 </div>
75
e5697f7775b2 Display columns named "source" and "year" and implement filter & sorting on them. Hide the column "Start Year"
Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
558
10
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
559 </body>
efe0e7174139 add BooksPage
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents:
diff changeset
560 </html>