comparison dwt/dwthelper/XmlTranscode.d @ 224:ac1c09c92858

missing imports
author Frank Benoit <benoit@tionex.de>
date Thu, 10 Apr 2008 09:15:48 +0200
parents d0081b1505da
children 380bad9f6852
comparison
equal deleted inserted replaced
223:d0081b1505da 224:ac1c09c92858
1 module dwt.dwthelper.XmlTranscode; 1 module dwt.dwthelper.XmlTranscode;
2
3 import dwt.dwthelper.utils;
4 import tango.core.Exception;
2 5
3 /++ 6 /++
4 + Decode XML entities into UTF8 string. 7 + Decode XML entities into UTF8 string.
5 + Eg. "&amp;" -> "&", "&#38;" -> "&", "&#x26;" -> "&" 8 + Eg. "&amp;" -> "&", "&#38;" -> "&", "&#x26;" -> "&"
6 + Throws TextException on failure 9 + Throws TextException on failure