Comment 11 for bug 1561558

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to horizon (master)

Reviewed: https://review.openstack.org/349442
Committed: https://git.openstack.org/cgit/openstack/horizon/commit/?id=e3ef7ae51caa91dc7365e6ded634387f59141c43
Submitter: Jenkins
Branch: master

commit e3ef7ae51caa91dc7365e6ded634387f59141c43
Author: Kenji Ishii <email address hidden>
Date: Mon Aug 1 19:04:08 2016 +0900

    Fix untranslated help text in Launch Instance window

    - Source tab
      Flow context is not allowed to write to inner phrasing content,
      At the moment untranslation is occurred by a incorrect value of .html().
      <p translate><li>yyy</li></p> -> elem.html() // value is ''
      <p translate>xxx<li>yyy</li></p> -> elem.html() // value is 'xxx'
      This phenomenon is caused by below.

      html in html file
        <p translate><li>yyy</li>xxx</p>

      html rendered in browser
        <p tramslate></p><li>yyy</li><p></p>

    - Security Groups tab
      '&' needs html escape

    Change-Id: Ic414d232063cc12333ac2d70fd8f351a35a00b6d
    Closes-Bug: #1561558