From 9348307630b70cf2a428a7ad1572aba5cf582be0 Mon Sep 17 00:00:00 2001 From: Peter Hahn Date: Fri, 8 Jan 2016 09:25:57 +0100 Subject: [PATCH] Add module description --- web_widget_mail_send_odoo/README.rst | 54 ++++++++++++++++++++++++ web_widget_mail_send_odoo/__openerp__.py | 6 +-- 2 files changed, 57 insertions(+), 3 deletions(-) create mode 100644 web_widget_mail_send_odoo/README.rst diff --git a/web_widget_mail_send_odoo/README.rst b/web_widget_mail_send_odoo/README.rst new file mode 100644 index 00000000..695f69d1 --- /dev/null +++ b/web_widget_mail_send_odoo/README.rst @@ -0,0 +1,54 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +===================================== +Web Widget - Email internal mail link +===================================== + +This module was written to provide a new widget for Email fields to replace the +standard behaviour of displaying a 'mailto:' link with JS to open the internal +Email wizard from Odoo for message composition. + +Usage +===== + +To use this module, you need to: + +* Install the module. +* It will replace the default widget for email fields. + +For further information, please visit: + +* https://www.odoo.com/forum/help-1 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + +Credits +======= + +Contributors +------------ + +* Peter Hahn + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/web_widget_mail_send_odoo/__openerp__.py b/web_widget_mail_send_odoo/__openerp__.py index 3ac8c87d..56a3ac24 100644 --- a/web_widget_mail_send_odoo/__openerp__.py +++ b/web_widget_mail_send_odoo/__openerp__.py @@ -3,13 +3,13 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { - 'name': 'Mail open internally', + 'name': 'Web Widget - Email internal mail link', 'summary': 'Send mail using internal composition wizard.', 'version': '8.0.1.0.0', - "category": "Social Network", + 'category': 'Social Network', 'website': 'https://odoo-community.org', 'author': 'initOS GmbH, Odoo Community Association (OCA)', - "license": "AGPL-3", + 'license': 'AGPL-3', 'application': False, 'installable': True, 'auto_install': False,