OCA / openupgradelib

A library with support functions to be called from Odoo migration scripts.
GNU Affero General Public License v3.0
85 stars 171 forks source link

[FIX] convert_html_fragment: Don't wrap full XMLs #352

Closed pedrobaeza closed 10 months ago

pedrobaeza commented 10 months ago

If the HTML string to convert is a fully XML compliant file including the header <?xml version="...?>, the wrapping process is breaking the final result, as the expected XML syntax doesn't include ? in the middle and lxml returns a weird result <?xml version="...??> with 2 interrogations.

With this commit, we are not wrapping if we detect the XML header.

Fine-tune of #349

@Tecnativa