[IMP] parse description html to change image src to [module]/static/description/image_url

bzr revid: chm@openerp.com-20130530142902-bv4ol10s4n119c8i
This commit is contained in:
Christophe Matthieu 2013-05-30 16:29:02 +02:00
parent 9f8d8b82c0
commit 33a40f131a
1 changed files with 1 additions and 2 deletions

View File

@ -159,7 +159,7 @@ class module(osv.osv):
try:
doc = desc_file.read()
html = lxml.html.document_fromstring(doc)
for element in html.iterlinks():
for element, attribute, link, pos in html.iterlinks():
if element.get('src'):
element.set('src', "%s/static/description/%s" % (module.name, element.get('src')))
res[module.id] = lxml.html.tostring(html)
@ -486,7 +486,6 @@ class module(osv.osv):
function(cr, uid, ids, context=context)
cr.commit()
openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname)
registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
config = registry['res.config'].next(cr, uid, [], context=context) or {}