annotate src/main/webapp/pages/home.jsp @ 105:16a0796e3871 default tip

remove "console.log" from general.js
author Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
date Fri, 29 Sep 2017 16:18:02 +0200
parents 2ac9b2e3fb57
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
1 <%@page import="de.mpiwg.gazetteer.bo.LGBranch"%>
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
2 <%@page import="de.mpiwg.gazetteer.bo.LGTopicSectionRelation"%>
0
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
3 <%@page import="org.apache.commons.lang.StringUtils"%>
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
4 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
5
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
6 <jsp:useBean id="sessionBean" class="de.mpiwg.web.jsp.SessionBean"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
7 scope="session" />
0
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
8
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
9 <html>
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
10
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
11 <head>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
12 <jsp:include page="../componentes/headContent.jsp" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
13 <script>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
14
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
15 $(function() {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
16
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
17
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
18 $( ".addSectionToTopic" ).click(function() {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
19 var sectionId = $( this ).data('section-id');
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
20 console.log("addSectionToTopic. sectionId = " + sectionId);
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
21
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
22 var url0 = "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/addSectionToTopic.jsp?sectionId=" + sectionId + "&sourceBean=home";
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
23
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
24 $.ajax( url0 )
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
25 .done(function(data) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
26 $( "#dialogAddSectionToTopicTable" ).replaceWith(data);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
27 dialogAddSectionToTopic.dialog( "open" );
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
28 })
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
29 .fail(function() {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
30 console.error("Error calling: " + query);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
31 })
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
32
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
33 });
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
34
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
35
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
36 var dialogAddSectionToTopic = $("#dialogAddSectionToTopic").dialog({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
37 position: { my: "center", at: "top+400", of: window }, // TODO show dialog at cursor position?
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
38 autoOpen: false
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
39 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
40
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
41
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
42
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
43 $("#level1Filter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
44 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
45 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
46 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskLevel1Autocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
47 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
48 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
49 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
50 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
51 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
52 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
53
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
54 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
55 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
56 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
57 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
58 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
59 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
60 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
61 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
62 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
63 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
64 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
65 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
66 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
67 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
68
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
69 $("#level2Filter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
70 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
71 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
72 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskLevel2Autocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
73 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
74 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
75 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
76 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
77 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
78 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
79
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
80 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
81 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
82 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
83 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
84 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
85 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
86 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
87 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
88 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
89 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
90 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
91 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
92 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
93 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
94
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
95
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
96 $("#bookNameFilter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
97 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
98 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
99 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskBookNameAutocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
100 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
101 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
102 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
103 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
104 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
105 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
106
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
107 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
108 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
109 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
110 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
111 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
112 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
113 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
114 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
115 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
116 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
117 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
118 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
119 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
120 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
121
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
122
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
123 $("#dynastyFilter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
124 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
125 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
126 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskDynastyAutocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
127 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
128 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
129 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
130 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
131 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
132 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
133
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
134 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
135 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
136 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
137 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
138 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
139 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
140 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
141 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
142 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
143 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
144 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
145 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
146 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
147 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
148
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
149 $("#periodFilter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
150 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
151 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
152 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskPeriodAutocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
153 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
154 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
155 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
156 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
157 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
158 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
159
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
160 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
161 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
162 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
163 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
164 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
165 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
166 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
167 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
168 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
169 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
170 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
171 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
172 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
173 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
174
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
175 $("#adminTypeFilter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
176 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
177 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
178 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskAdminTypeAutocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
179 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
180 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
181 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
182 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
183 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
184 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
185
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
186 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
187 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
188 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
189 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
190 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
191 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
192 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
193 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
194 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
195 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
196 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
197 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
198 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
199 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
200
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
201 $("#sectionNameFilter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
202 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
203 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
204 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskSectionNameAutocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
205 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
206 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
207 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
208 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
209 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
210 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
211
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
212 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
213 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
214 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
215 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
216 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
217 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
218 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
219 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
220 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
221 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
222 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
223 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
224 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
225 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
226
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
227 $("#labelFilter").autocomplete({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
228 source : function(request, response) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
229 $.ajax({
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
230 url : "<%=sessionBean.getApplicationBean().getRootServer()%>/methods/taskLabelAutocomplete.jsp",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
231 type : "POST",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
232 dataType : "json",
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
233 data : {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
234 term : request.term
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
235 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
236 success : function(data) {
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
237
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
238 response($.map(data, function(item) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
239 return {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
240 label : item.name,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
241 value : item.value,
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
242 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
243 }));
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
244 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
245 error : function(error) {
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
246 alert('error: ' + error);
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
247 }
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
248 });
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
249 },
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
250 minLength : 0
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
251 });
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
252
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
253 });
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
254
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
255
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
256 function updatePage() {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
257 var text = getCookie();
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
258
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
259 if (text == "1") {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
260 setCookie("0");
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
261 setAction('forceReloadBranches', 'homeForm');
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
262
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
263 document.forms['homeForm'].submit();
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
264 }
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
265
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
266 setTimeout(updatePage, 1000);
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
267 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
268 updatePage();
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
269
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
270
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
271
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
272
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
273 </script>
0
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
274 </head>
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
275
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
276 <body>
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
277
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
278 <jsp:include page="../componentes/template2.jsp" />
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
279
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
280 <div id="dialogAddSectionToTopic" title="Add Section(s) into Topic:">
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
281 <div id="dialogAddSectionToTopicTable"></div>
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
282 </div>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
283
0
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
284 <div id="page">
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
285
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
286 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
287 if (sessionBean.getUser() == null) {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
288 %>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
289 <label class="subTitel">Please login or create a new account above</label>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
290 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
291 } else {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
292
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
293 if (sessionBean.getHomePage().getCompleteBranchList() == null) {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
294 sessionBean.getHomePage().loadParameters(request, response);
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
295 //sessionBean.getHomePage().reloadBranches();
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
296 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
297 sessionBean.getHomePage().reloadBranches();
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
298 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
299
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
300 <form name="homeForm" method="post"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
301 action="<%=sessionBean.getApplicationBean().getRootServer()%>/proxy.jsp">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
302 <input name="bean" type="hidden" value="homeBean" />
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
303
63
fc5116de601f config to SBB server
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 62
diff changeset
304 <label class="subTitel">
fc5116de601f config to SBB server
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 62
diff changeset
305 <input type="image"
fc5116de601f config to SBB server
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 62
diff changeset
306 onclick="setAction('forceReloadBranches', 'homeForm');"
fc5116de601f config to SBB server
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 62
diff changeset
307 src="<%=sessionBean.getApplicationBean()
fc5116de601f config to SBB server
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 62
diff changeset
308 .getRefreshImage()%>"
fc5116de601f config to SBB server
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 62
diff changeset
309 width="20" height="20" />
fc5116de601f config to SBB server
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 62
diff changeset
310 </label>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
311
62
824b808a7481 improvements and bug fixed
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 60
diff changeset
312 <% if (sessionBean.getHomePage().getCompleteBranchList().isEmpty()) { %>
824b808a7481 improvements and bug fixed
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 60
diff changeset
313 <label class="subTitel">You have no task!</label>
824b808a7481 improvements and bug fixed
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 60
diff changeset
314 <% } else { %>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
315
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
316 <div class="subTitel">
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
317 Your Tasks
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
318
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
319 <p class="label">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
320 You have
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
321 <%=sessionBean.getHomePage().getBranchNumber()%>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
322 tasks.
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
323 </p>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
324 <p class="label"><%=(StringUtils.isNotEmpty(sessionBean.getHomePage()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
325 .getFilteringMessage())) ? sessionBean
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
326 .getHomePage().getFilteringMessage() : ""%>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
327 </p>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
328 </div>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
329 <jsp:include page="../componentes/paginator.jsp">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
330 <jsp:param name="formName" value="homeForm" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
331 </jsp:include>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
332
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
333 <div class="tableDiv double-scroll">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
334 <table class="pageTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
335 <tr>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
336 <!-- remove this to save space
35
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
337 <td>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
338 <table class="sortTable">
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
339 <tr>
54
a00efd5d9e77 new: adding delete saved table function
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 41
diff changeset
340 <td><label class="tableTitle">Task ID</label></td>
35
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
341 <td>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
342 <table>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
343 <tr><td>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
344 <input type="image"
35
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
345 onclick="setAction('sortByBranchIdUp', 'homeForm');"
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
346 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
35
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
347 </td></tr>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
348 <tr><td>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
349 <input type="image"
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
350 onclick="setAction('sortByBranchIdDown', 'homeForm');"
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
351 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
35
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
352 </td></tr>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
353 </table>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
354 </td>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
355 </tr>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
356 </table>
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
357 </td>
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
358 -->
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
359 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
360 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
361 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
362 <td><label class="tableTitle">Book ID</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
363 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
364 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
365 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
366 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
367 onclick="setAction('sortByBookIdUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
368 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
369 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
370 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
371 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
372 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
373 onclick="setAction('sortByBookIdDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
374 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
375 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
376 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
377 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
378 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
379 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
380 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
381 <td><input type="text" name="bookIdFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
382 value="<%=sessionBean.getHomePage().getBookIdFilter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
383 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
384 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
385 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
386 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
387 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
388 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
389 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
390 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
391 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
392 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
393 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
394 <td><label class="tableTitle">Book Name</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
395 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
396 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
397 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
398 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
399 onclick="setAction('sortByBookNameUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
400 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
401 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
402 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
403 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
404 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
405 onclick="setAction('sortByBookNameDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
406 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
407 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
408 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
409 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
410 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
411 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
412 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
413 <td><input type="text" name="bookNameFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
414 id="bookNameFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
415 value="<%=sessionBean.getHomePage().getBookNameFilter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
416 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
417 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
418 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
419 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
420 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
421 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
422 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
423 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
424
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
425 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
426 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
427 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
428 <td><label class="tableTitle">Level 1</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
429 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
430 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
431 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
432 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
433 onclick="setAction('sortByLevel1Up', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
434 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
435 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
436 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
437 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
438 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
439 onclick="setAction('sortByLevel1Down', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
440 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
441 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
442 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
443 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
444 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
445 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
446 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
447 <td><input type="text" class="filterInput"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
448 name="level1Filter" id="level1Filter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
449 value="<%=sessionBean.getHomePage().getLevel1Filter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
450 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
451 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
452 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
453 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
454 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
455 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
456 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
457 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
458 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
459 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
460 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
461 <td><label class="tableTitle">Level 2</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
462 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
463 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
464 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
465 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
466 onclick="setAction('sortByLevel2Up', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
467 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
468 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
469 </tr>
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
470 <tr>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
471 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
472 onclick="setAction('sortByLevel2Down', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
473 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
474 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
475 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
476 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
477 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
478 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
479 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
480 <td><input type="text" name="level2Filter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
481 id="level2Filter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
482 value="<%=sessionBean.getHomePage().getLevel2Filter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
483 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
484 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
485 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
486 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
487 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
488 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
489 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
490 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
491 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
492 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
493 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
494 <td><label class="tableTitle">Dynasty</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
495 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
496 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
497 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
498 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
499 onclick="setAction('sortByDynastyUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
500 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
501 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
502 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
503 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
504 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
505 onclick="setAction('sortByDynastyDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
506 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
507 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
508 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
509 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
510 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
511 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
512 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
513 <td><input type="text" name="dynastyFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
514 id="dynastyFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
515 value="<%=sessionBean.getHomePage().getDynastyFilter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
516 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
517 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
518 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
519 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
520 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
521 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
522 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
523 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
524 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
525 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
526 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
527 <td><label class="tableTitle">Period</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
528 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
529 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
530 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
531 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
532 onclick="setAction('sortByPeriodUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
533 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
534 </td>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
535 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
536 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
537 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
538 onclick="setAction('sortByPeriodDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
539 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
540 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
541 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
542 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
543 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
544 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
545 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
546 <td><input type="text" name="periodFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
547 id="periodFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
548 value="<%=sessionBean.getHomePage().getPeriodFilter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
549 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
550 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
551 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
552 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
553 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
554 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
555 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
556 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
557 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
558 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
559 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
560 <td><label class="tableTitle">Admin Type</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
561 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
562 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
563 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
564 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
565 onclick="setAction('sortByAdminTypeUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
566 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
567 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
568 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
569 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
570 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
571 onclick="setAction('sortByAdminTypeDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
572 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
573 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
574 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
575 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
576 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
577 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
578 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
579 <td><input type="text" name="adminTypeFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
580 id="adminTypeFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
581 value="<%=sessionBean.getHomePage().getAdminTypeFilter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
582 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
583 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
584 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
585 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
586 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
587 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
588 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
589 </td>
97
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
590
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
591
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
592 <th>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
593 <table class="sortTable">
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
594 <tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
595 <td><label class="tableTitle">Book Year</label></td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
596 <td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
597 <table>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
598 <tr><td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
599 <input type="image"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
600 onclick="setAction('sortByBookYearUp', 'homeForm');"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
601 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
602 </td></tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
603 <tr><td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
604 <input type="image"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
605 onclick="setAction('sortByBookYearDown', 'homeForm');"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
606 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
607 </td></tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
608 </table>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
609 </td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
610 </tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
611 <tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
612 <td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
613 <input type="text" class="filterInput" name="bookYearFilter" id="bookYearFilter" value="<%= sessionBean.getHomePage().getBookYearFilter()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
614 </td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
615 <td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
616 <input type="image"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
617 onclick="setAction('filter', 'searchForm');"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
618 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
619 </td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
620 </tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
621 </table>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
622 </th>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
623 <th>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
624 <table class="sortTable">
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
625 <tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
626 <td><label class="tableTitle">Edition Year</label></td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
627 <td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
628 <table>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
629 <tr><td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
630 <input type="image"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
631 onclick="setAction('sortByEditionYearUp', 'homeForm');"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
632 src="<%=sessionBean.getApplicationBean().getUpImage()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
633 </td></tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
634 <tr><td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
635 <input type="image"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
636 onclick="setAction('sortByEditionYearDown', 'homeForm');"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
637 src="<%=sessionBean.getApplicationBean().getDownImage()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
638 </td></tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
639 </table>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
640 </td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
641 </tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
642 <tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
643 <td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
644 <input type="text" class="filterInput" name="editionYearFilter" id="editionYearFilter" value="<%= sessionBean.getHomePage().getEditionYearFilter()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
645 </td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
646 <td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
647 <input type="image"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
648 onclick="setAction('filter', 'searchForm');"
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
649 src="<%=sessionBean.getApplicationBean().getFilterImage()%>"/>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
650 </td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
651 </tr>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
652 </table>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
653 </th>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
654
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
655 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
656 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
657 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
658 <td><label class="tableTitle">Section Name</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
659 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
660 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
661 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
662 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
663 onclick="setAction('sortBySectionNameUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
664 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
665 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
666 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
667 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
668 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
669 onclick="setAction('sortBySectionNameDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
670 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
58
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
671 </td>
b8ad346e39a0 new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 57
diff changeset
672 </tr>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
673 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
674 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
675 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
676 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
677 <td><input type="text" name="sectionNameFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
678 id="sectionNameFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
679 value="<%=sessionBean.getHomePage().getSectionNameFilter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
680 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
681 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
682 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
683 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
684 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
685 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
686 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
687 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
688 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
689 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
690 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
691 <td><label class="tableTitle">Pages</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
692 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
693 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
694 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
695 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
696 onclick="setAction('sortBySectionStartPageUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
697 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
698 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
699 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
700 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
701 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
702 onclick="setAction('sortBySectionStartPageDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
703 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
704 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
705 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
706 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
707 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
708 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
709 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
710 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
711 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
712 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
713 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
714 <td><label class="tableTitle">Label</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
715 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
716 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
717 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
718 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
719 onclick="setAction('sortByLabelUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
720 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
721 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
722 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
723 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
724 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
725 onclick="setAction('sortByLabelDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
726 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
727 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
728 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
729 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
730 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
731 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
732 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
733 <td><input type="text" name="labelFilter" id="labelFilter"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
734 size="20"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
735 value="<%=sessionBean.getHomePage().getLabelFilter()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
736 size="8" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
737 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
738 onclick="setAction('filter', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
739 src="<%=sessionBean.getApplicationBean().getFilterImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
740 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
741 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
742 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
743 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
744 <td><label class="tableTitle">Contributors</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
745 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
746 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
747 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
748 <td><label class="tableTitle">Last Saved</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
749 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
750 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
751 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
752 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
753 onclick="setAction('sortByLastModifiedUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
754 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
755 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
756 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
757 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
758 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
759 onclick="setAction('sortByLastModifiedDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
760 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
761 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
762 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
763 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
764 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
765 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
766
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
767 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
768 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
769 <td><label class="tableTitle">Load Text</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
770 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
771 <table class="sortTable">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
772 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
773 <td><label class="tableTitle">Published in
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
774 Dataverse</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
775 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
776 <table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
777 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
778 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
779 onclick="setAction('sortByPublishedInDataverseUp', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
780 src="<%=sessionBean.getApplicationBean().getUpImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
781 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
782 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
783 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
784 <td><input type="image"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
785 onclick="setAction('sortByPublishedInDataverseDown', 'homeForm');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
786 src="<%=sessionBean.getApplicationBean().getDownImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
787 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
788 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
789 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
790 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
791 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
792
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
793 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
794
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
795 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
796
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
797 <td><label class="tableTitle">Manage</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
798 <td><label class="tableTitle">Add to Topic</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
799 <td><label class="tableTitle">Delete</label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
800 </tr>
35
89a5ca7d44f7 new: rename branch to task, add fields in task table, add scroll bar
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 34
diff changeset
801
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
802 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
803 for (LGBranch branch : sessionBean.getHomePage()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
804 .getDisplayBranchList()) {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
805 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
806 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
807 <td><%=branch.getBook().getId()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
808 <td><%=branch.getBook().getName()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
809 <td><%=branch.getBook().getLevel1()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
810 <td><%=branch.getBook().getLevel2()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
811 <td><%=branch.getBook().getDynasty()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
812 <td><%=branch.getBook().getPeriod()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
813 <td><%=branch.getBook().getAdmin_type()%></td>
97
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
814 <td><%=branch.getBook().getBookYear()%></td>
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
815 <td><%=branch.getBook().getEditionYear()%></td>
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
816 <td><%=branch.getSection().getName()%> <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
817 if (branch.isDeprecated()) {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
818 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
819 <label style="color: red">*** This is a deprecated
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
820 section ***</label> <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
821 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
822 %></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
823 <td><%=branch.getSection().getPages()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
824
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
825 <td><%=branch.getLabel()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
826 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
827 <table style="width: 120px;">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
828 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
829 for (String contributor : branch
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
830 .getContributorsNameList()) {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
831 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
832 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
833 <td><label><%=contributor%></label></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
834 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
835 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
836 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
837 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
838 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
839 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
840 <td><%=branch.getFomattedLastChange()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
841 <td><a
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
842 onclick="branchInExtractionInterface('<%=branch.getId()%>', '<%=branch.getCurrentLastFileId()%>', '<%=branch.getSectionId()%>', '<%=branch.getSection().getName()%>', '<%=branch.getBook().getId()%>', '<%=branch.getBook().getName()%>', '<%=sessionBean.getUser().getId()%>', '<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
843 .getExtractionInterfaceUrl()%>');">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
844 <img title="Show Task in Extraction Interface"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
845 src="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
846 .getShowImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
847 </a></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
848 <!-- Dataverse -->
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
849 <td><%=(branch.isPublished()) ? "V" : ""%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
850
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
851 <!-- Manage -->
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
852 <td><a
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
853 href="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
854 .getRootServer()%>/pages/branchPage.jsp?branchId=<%=branch.getId()%>">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
855 <img title="Manage the task"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
856 src="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
857 .getEditBranchImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
858 </a></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
859
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
860 <!-- Add to Topic -->
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
861 <td style="max-width: 300px;">
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
862 <!-- existing topic -->
62
824b808a7481 improvements and bug fixed
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 60
diff changeset
863 <% if (branch.getSection().getTopicSectionRelation() != null && !branch.getSection().getTopicSectionRelation().isEmpty()) { %>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
864
60
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
865 <lable>Already in topic: </lable>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
866 <table style="width: 100%">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
867 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
868 for (LGTopicSectionRelation relation : branch
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
869 .getSection().getTopicSectionRelation()) {
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
870 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
871 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
872 <td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
873 <table style="width: 100%; min-width: 100px">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
874 <tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
875 <td><%=relation.getTopic().info()%></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
876 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
877 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
878 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
879 <td style="max-width: 150px"><a
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
880 href="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
881 .getRootServer()%>/pages/topicPage.jsp?topicId=<%=relation.getTopicId()%>">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
882 <img title="Manage Topic"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
883 src="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
884 .getEditBranchImage()%>" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
885 </a></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
886 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
887 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
888 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
889 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
890 </table> <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
891 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
892 %> <img width="10" height="10"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
893 title="Add the section to Topic"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
894 src="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
895 .getPlusImage()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
896 data-section-id="<%=branch.getSection().getId()%>"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
897 class="addSectionToTopic">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
898
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
899 </td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
900
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
901 <!-- Delete -->
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
902 <td><input type="image" title="Delete it"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
903 onclick="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
904 .getJSConfirmationDelete()%> deleteBranch('deleteBranch', 'homeForm', '<%=branch.getId()%>');"
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
905 src="<%=sessionBean.getApplicationBean()
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
906 .getDeleteImage()%>" /></td>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
907
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
908
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
909 </tr>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
910
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
911 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
912 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
913 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
914
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
915 </table>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
916
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
917 </div>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
918
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
919
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
920 <jsp:include page="../componentes/paginator.jsp">
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
921 <jsp:param name="formName" value="homeForm" />
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
922 </jsp:include>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
923
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
924 </form>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
925 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
926 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
927 %>
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
928 <%
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
929 }
90d5e86c157d new: auto refresh page when there's new version saved from Ext-Interface
Zoe Hong <zhong@mpiwg-berlin.mpg.de>
parents: 58
diff changeset
930 %>
0
3e62083dbcbf First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
"jurzua <jurzua@mpiwg-berlin.mpg.de>"
parents:
diff changeset
931 </div>
97
2ac9b2e3fb57 1. add new columns : book year and edition year in Topic page.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
932 <jsp:include page="../componentes/footer.jsp"/>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 63
diff changeset
933 </body>