desword / android-apktool

Automatically exported from code.google.com/p/android-apktool
Other
1 stars 0 forks source link

double escaped #608

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
<item>&lt;font size=18 align=middle>Normal&lt;/font></item>

goes to

<item>&amp;lt;font size=18 align=middle>Normal&amp;lt;/font></item>

The &lt; is escaped to &amp;lt;

Should either

1) Fix the &amp; replacement to only work if not already escaped.
2) After &amp; replacement, look for &amp;lt; and &amp;rt; and replace with &lt 
& &rt;

Original issue reported on code.google.com by connor.tumbleson on 27 Feb 2014 at 8:19

GoogleCodeExporter commented 9 years ago
Couldn't duplicate. Unit-test added.

https://github.com/iBotPeaches/Apktool/commit/251a6bbb11d64f106f268b9de3156bef7f
8c2c76

Original comment by connor.tumbleson on 19 Mar 2014 at 9:52

GoogleCodeExporter commented 9 years ago
For more details how to reproduce this please see issue #658.

Original comment by sschuberth on 22 Jul 2014 at 3:21