2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import models
|
|
|
|
from flectra.http import request
|
2018-07-13 11:51:12 +02:00
|
|
|
from flectra.osv import expression
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class IrHttp(models.AbstractModel):
|
|
|
|
_inherit = 'ir.http'
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _dispatch(cls):
|
|
|
|
context = dict(request.context)
|
|
|
|
if 'editable' in request.httprequest.args and 'editable' not in context:
|
|
|
|
context['editable'] = True
|
|
|
|
if 'edit_translations' in request.httprequest.args and 'edit_translations' not in context:
|
|
|
|
context['edit_translations'] = True
|
|
|
|
if context.get('edit_translations') and 'translatable' not in context:
|
|
|
|
context['translatable'] = True
|
|
|
|
request.context = context
|
|
|
|
return super(IrHttp, cls)._dispatch()
|
2018-07-13 11:51:12 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _get_translation_frontend_modules_domain(cls):
|
|
|
|
domain = super(IrHttp, cls)._get_translation_frontend_modules_domain()
|
|
|
|
return expression.OR([domain, [('name', '=', 'web_editor')]])
|