annotate src/main/webapp/pages/fullTextSearch2.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 6a508b605b5f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
1
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
2 <jsp:useBean id="sessionBean" class="de.mpiwg.web.jsp.SessionBean" scope="session" />
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
3
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
4 <html>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
5
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
6 <head>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
7 <jsp:include page="../componentes/headContent.jsp"/>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
8 <link rel="stylesheet" href="index.css" />
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
9 </head>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
10 <body>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
11
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
12 <jsp:include page="../componentes/template2.jsp"/>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
13
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
14 <div id="page">
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
15 <% if(sessionBean.getUser() != null) { %>
101
8ba79fb4286e add a new link which can launch previous edition of full text search.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
16 <div style="text-align:right;"><a href="fullTextSearch.jsp" target="_blank">Previous edition</a></div>
8ba79fb4286e add a new link which can launch previous edition of full text search.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 95
diff changeset
17 <div id="root" style="padding: 5px 20px;"></div>
95
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
18 </div>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
19 <script src="index.js"></script>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
20 <% }
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
21 else { %>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
22 <label class="subTitel">Please login or create a new account above</label>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
23 </div>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
24 <% } %>
102
6a508b605b5f 1. add new page : footer.jsp.
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents: 101
diff changeset
25 <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:
diff changeset
26 </body>
b27a99201cbe New feature: new full text search with MySQL ngram parser (5.7.6 above)
Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
parents:
diff changeset
27 </html>