diff --git a/web_last_viewed_records/README.rst b/web_last_viewed_records/README.rst new file mode 100644 index 00000000..649b3b72 --- /dev/null +++ b/web_last_viewed_records/README.rst @@ -0,0 +1,9 @@ +The idea is taken from SugarCRM's "Last viewed" feature. + +This module doesn't affect on server performance, because it uses browser's localStorage to save history. But dissadvantage is that history is not synced accross browsers. + +FIXME: doesn't work in a res.config view + +Tested on 8.0 ab7b5d7732a7c222a0aea45bd173742acd47242d. + +Further information and discussion: https://yelizariev.github.io/odoo/module/2015/02/18/last-viewed-records.html diff --git a/web_last_viewed_records/__openerp__.py b/web_last_viewed_records/__openerp__.py index 88bef27d..83dab0f3 100644 --- a/web_last_viewed_records/__openerp__.py +++ b/web_last_viewed_records/__openerp__.py @@ -4,17 +4,6 @@ 'author' : 'Ivan Yelizariev', 'category' : 'Base', 'website' : 'https://yelizariev.github.io', - 'description': """ -The idea is taken from SugarCRM's "Last viewed" feature. - -This module doesn't affect on server performance, because it uses browser's localStorage to save history. But dissadvantage is that history is not synced accross browsers. - -FIXME: doesn't work in a res.config view - -Tested on 8.0 ab7b5d7732a7c222a0aea45bd173742acd47242d. - -Further information and discussion: https://yelizariev.github.io/odoo/module/2015/02/18/last-viewed-records.html - """, 'depends' : ['web', 'mail'], 'data':[ 'views.xml',