Mercurial > hg > LGServices
annotate src/main/webapp/pages/fullTextSearch2.jsp @ 95:b27a99201cbe
New feature: new full text search with MySQL ngram parser (5.7.6 above)
author | Calvin Yeh <cyeh@mpipw-berlin.mpg.com> |
---|---|
date | Mon, 03 Jul 2017 23:48:53 +0200 |
parents | |
children | 8ba79fb4286e |
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) { %> |
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
|
16 <div id="root"></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
|
17 </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
|
18 <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
|
19 <% } |
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 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
|
21 <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
|
22 </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
|
23 <% } %> |
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 </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
|
25 </html> |