--- a/.hgtags Sun Dec 30 18:08:03 2018 +0100
+++ b/.hgtags Sun Dec 30 18:08:28 2018 +0100
@@ -22,3 +22,4 @@
0baf6315d8387724e85fcfa60289f904975364f3 0.1.17
17bc8afd7e4adf81450af3da73de7a3b2e6e477d 0.1.18
e7c1926fb3f8c6d29959dd9647ba447bb1458cc7 0.1.19
+6d725a84f3ff6382880865c5c2d111dd60ccb1ea 0.1.20
--- a/buildout.cfg Sun Dec 30 18:08:03 2018 +0100
+++ b/buildout.cfg Sun Dec 30 18:08:28 2018 +0100
@@ -76,4 +76,4 @@
eggs = pyams_content_es [test]
[versions]
-pyams_content_es = 0.1.19
+pyams_content_es = 0.1.20
--- a/docs/HISTORY.txt Sun Dec 30 18:08:03 2018 +0100
+++ b/docs/HISTORY.txt Sun Dec 30 18:08:28 2018 +0100
@@ -1,6 +1,10 @@
History
=======
+0.1.20
+------
+ - updated resources attributes
+
0.1.19
------
- added resource index info
--- a/docs/README.txt Sun Dec 30 18:08:03 2018 +0100
+++ b/docs/README.txt Sun Dec 30 18:08:28 2018 +0100
@@ -48,9 +48,18 @@
"resource_info": {
"type": "object",
"properties": {
+ "original_title": {
+ "type": "text"
+ },
"author": {
"type": "text"
},
+ "translator": {
+ "type": "text"
+ },
+ "illustrator": {
+ "type": "text"
+ },
"drawer": {
"type": "text"
},
--- a/docs/mappings/index-settings.json Sun Dec 30 18:08:03 2018 +0100
+++ b/docs/mappings/index-settings.json Sun Dec 30 18:08:28 2018 +0100
@@ -337,9 +337,18 @@
"resource_info": {
"type": "object",
"properties": {
+ "original_title": {
+ "type": "text"
+ },
"author": {
"type": "text"
},
+ "translator": {
+ "type": "text"
+ },
+ "illustrator": {
+ "type": "text"
+ },
"drawer": {
"type": "text"
},
--- a/setup.py Sun Dec 30 18:08:03 2018 +0100
+++ b/setup.py Sun Dec 30 18:08:28 2018 +0100
@@ -22,7 +22,7 @@
README = os.path.join(DOCS, 'README.txt')
HISTORY = os.path.join(DOCS, 'HISTORY.txt')
-version = '0.1.19'
+version = '0.1.20'
long_description = open(README).read() + '\n\n' + open(HISTORY).read()
tests_require = []
--- a/src/pyams_content_es.egg-info/PKG-INFO Sun Dec 30 18:08:03 2018 +0100
+++ b/src/pyams_content_es.egg-info/PKG-INFO Sun Dec 30 18:08:28 2018 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pyams-content-es
-Version: 0.1.19
+Version: 0.1.20
Summary: PyAMS content interfaces and classes for ElasticSearch indexation
Home-page: http://hg.ztfy.org/pyams/pyams_content_es
Author: Thierry Florac
@@ -56,9 +56,18 @@
"resource_info": {
"type": "object",
"properties": {
+ "original_title": {
+ "type": "text"
+ },
"author": {
"type": "text"
},
+ "translator": {
+ "type": "text"
+ },
+ "illustrator": {
+ "type": "text"
+ },
"drawer": {
"type": "text"
},
@@ -159,6 +168,10 @@
History
=======
+ 0.1.20
+ ------
+ - updated resources attributes
+
0.1.19
------
- added resource index info