Skip to content
Snippets Groups Projects
Commit 34bd0e4c authored by Paul Morelle's avatar Paul Morelle
Browse files

[FIX] board: avoid double-escaping in domain


This reverts commit bfadb8e4.

Since that commit, the domain may be double-encoded in the database if
the user reorganizes the layout of his dashboard: once by the JavaScript
code, and once by the serialization of the innerHTML property.

However, there is no need to have it double-encoded, and some tools such
as the upgrade scripts will fail upgrading the domain.

With this commit, we are serializing the document to XML instead of HTML
and therefore the produced output is valid XML that will be correctly
interpreted by all the tools.

However, double-encoded domains might still be present in existing
databases, so we also need to take this into account when reading the
domain.

OPW-3130117

closes odoo/odoo#119518

Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
parent 056af99a
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ import { useSortable } from "@web/core/utils/sortable";
import { standardViewProps } from "@web/views/standard_view_props";
import { BoardAction } from "./board_action";
const { Component, useState, useRef } = owl;
const { blockDom, Component, useState, useRef } = owl;
export class BoardController extends Component {
setup() {
......@@ -102,9 +102,16 @@ export class BoardController extends Component {
}
saveBoard() {
const templateFn = renderToString.app.getTemplate("board.arch");
const bdom = templateFn(this.board, {});
const root = document.createElement("rendertostring");
blockDom.mount(bdom, root);
const result = xmlSerializer.serializeToString(root);
const arch = result.slice(result.indexOf('<', 1), result.indexOf('</rendertostring>'));
this.rpc("/web/view/edit_custom", {
custom_id: this.board.customViewId,
arch: renderToString("board.arch", this.board),
arch,
});
this.env.bus.trigger("CLEAR-CACHES");
}
......@@ -116,3 +123,5 @@ BoardController.props = {
...standardViewProps,
board: Object,
};
const xmlSerializer = new XMLSerializer();
......@@ -45,10 +45,14 @@ export class BoardArchParser extends XMLParser {
isFolded,
};
if (node.hasAttribute("domain")) {
action.domain = new Domain(_.unescape(node.getAttribute("domain"))).toList();
let domain = node.getAttribute("domain");
// Since bfadb8e491fe2acda63a79f9577eaaec8a1c8d9c some databases might have
// double-encoded domains in the db, so we need to unescape them before use.
// TODO: remove unescape in saas-16.3
domain = _.unescape(domain);
action.domain = new Domain(domain).toList();
// so it can be serialized when reexporting board xml
// we unescape before re-escaping, to avoid double escaping due to subsequent layout change
action.domain.toString = () => _.escape(_.unescape(node.getAttribute("domain")));
action.domain.toString = () => node.getAttribute("domain");
}
archInfo.columns[currentIndex].actions.push(action);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment