[IMP] css app description relative href

bzr revid: chm@openerp.com-20130531093901-41uqp52xeef8yu37
This commit is contained in:
Christophe Matthieu 2013-05-31 11:39:01 +02:00
parent f14a86b7ae
commit 71d93466e7
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class module(osv.osv):
html = lxml.html.document_fromstring(doc)
for element, attribute, link, pos in html.iterlinks():
if element.get('src') and not '//' in element.get('src') and not 'static/' in element.get('src'):
element.set('src', "%s/static/description/%s" % (module.name, element.get('src')))
element.set('src', "/%s/static/description/%s" % (module.name, element.get('src')))
res[module.id] = lxml.html.tostring(html)
finally:
desc_file.close()