diff --git a/attachment_metadata/README.rst b/attachment_metadata/README.rst index 82f7b6411..5abfa0cc4 100644 --- a/attachment_metadata/README.rst +++ b/attachment_metadata/README.rst @@ -8,7 +8,15 @@ Attachment Metadata ==================== This module extend ir.attachment model with some new fields for a better control -for import and export of files. The main feature is an integrity file check with a hash. +for import and export of files. + +The main feature is an integrity file check with a hash. + +A file hash is short representation (signature) computed from file data. +Hashes computed before send file and after received file can be compared to be +sure of the content integrity. + +An example of the use of this module, can be found in the external_file_location. Usage @@ -28,6 +36,7 @@ You can create / see standard attachments with additional fields Known issues / Roadmap ====================== +The purpose of this module is not to import the data of the file but only exchange files with external application. Bug Tracker diff --git a/attachment_metadata/__openerp__.py b/attachment_metadata/__openerp__.py index 2b23f955a..56105e5d0 100644 --- a/attachment_metadata/__openerp__.py +++ b/attachment_metadata/__openerp__.py @@ -2,7 +2,7 @@ # @ 2015 Valentin CHEMIERE @ Akretion # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -{'name': 'attachment_metadata', +{'name': 'Attachment Metadata', 'version': '8.0.1.0.0', 'author': 'Akretion,Odoo Community Association (OCA)', 'website': 'www.akretion.com',