forked from feliperazeek/playframework-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'org_elastic/master'
* org_elastic/master: (28 commits) 0.4 release Add MapperTransformer Use AbstractFieldMapper#getFieldValue() Some refactoring; Mapper prefix folded into AbstractFieldMapper feliperazeek#32 Added a transformer which uses a mapper Make sure the user has not requested unknown fields Minor restructuring Made AFM#addField() non-static so we can access meta directly Log json for index operation Fix for feliperazeek#36 (Class references not cleaned up on hot reload) Fix for feliperazeek#38 (@onetomany causes "Type not allowed" exception) Fix for feliperazeek#34 (cannot parse indexed date on record retrieval) Upgrade to ES 0.18.5 Fix for feliperazeek#37 (do not index @transient fields) Fixed elasticSearch tag path (fixes bug in _at least_ 1.2.4-RC3) Fixed route indentation to make file more readable Add support for Float conversion to ReflectionUtil Releasing 0.3 setQuery(QueryBuilder) is available from es-0.17.0 (See ES issue 994) Log type mapping ... Conflicts: conf/routes
- Loading branch information
Showing
36 changed files
with
2,583 additions
and
555 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
# This file defines all module routes (Higher priority routes first) | ||
# | ||
# import these routes in the main app as : | ||
# import these routes in the main app as: | ||
# * / module:elasticsearch | ||
# | ||
# ~~~~ | ||
|
||
GET /? elasticsearch.ElasticSearchAdmin.index | ||
GET /? elasticsearch.ElasticSearchAdmin.index | ||
|
||
* /admin/ module:crud | ||
GET /public/ staticDir:public | ||
* /admin/ module:crud | ||
GET /public staticDir:public | ||
|
||
#{elasticSearch.types} | ||
GET /? ${type.controllerClass.name.substring(12).replace('$','')}.index | ||
GET /${type.controllerName}/search ${type.controllerClass.name.substring(12).replace('$','')}.search | ||
POST /${type.controllerName}/search ${type.controllerClass.name.substring(12).replace('$','')}.search | ||
GET /? ${type.controllerClass.name.substring(12).replace('$','')}.index | ||
GET /${type.controllerName}/search ${type.controllerClass.name.substring(12).replace('$','')}.search | ||
POST /${type.controllerName}/search ${type.controllerClass.name.substring(12).replace('$','')}.search | ||
#{/elasticSearch.types} | ||
|
||
|
||
GET /es-admin elasticsearch.ElasticSearchAdmin.index | ||
GET /es-admin/ elasticsearch.ElasticSearchAdmin.index | ||
GET /es-admin elasticsearch.ElasticSearchAdmin.index | ||
GET /es-admin/ elasticsearch.ElasticSearchAdmin.index | ||
|
||
* /{controller}/{action} {controller}.{action} | ||
* /{controller}/{action} {controller}.{action} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.