diff --git a/web_ckeditor4/README.rst b/web_ckeditor4/README.rst index 813d58f3..fc851aa4 100644 --- a/web_ckeditor4/README.rst +++ b/web_ckeditor4/README.rst @@ -1,4 +1,56 @@ -This addon provides a widget for editing html fields via CKEditor 4.x +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 -Use widget="text_html" if you need just html display. In the unlikely case -you need specific features of ckeditor, use widget="text_ckeditor4". +CKEditor web widget +=================== + +This addon provides a widget for editing html fields via CKEditor 4.6.6 + +Configuration +============= + +In your view definition, use widget="text_html" if you need just html display. +In the unlikely case you need specific features of ckeditor, +use widget="text_ckeditor4". + +Known issues / Roadmap +====================== + +* This version of CKEditor contains a patch that prevents the referencing of +the editor's iframe if it has already been cleaned up by Odoo. In 8.0, this is +the case if the editor was created in an x2many popup. The patch was proposed +as https://github.com/ckeditor/ckeditor-dev/pull/200 + +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 +======= + +CKEditor 4.4.6 Copyright (C) 2003-2015 CKSource - Frederico Knabben + +Contributors +------------ + +* Holger Brunn +* Stefan Rijnhart + +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_ckeditor4/__openerp__.py b/web_ckeditor4/__openerp__.py index 4808d7d1..3601c4c5 100644 --- a/web_ckeditor4/__openerp__.py +++ b/web_ckeditor4/__openerp__.py @@ -27,6 +27,7 @@ 'website': 'https://github.com/OCA/web', 'summary': 'Provides a widget for editing HTML fields using CKEditor 4.x', "category": "Tools", + 'license': 'AGPL-3', "depends": [ 'web', ],