|
From: <alk...@us...> - 2013-06-13 09:21:47
|
Revision: 2074
http://sourceforge.net/p/hwgui/code/2074
Author: alkresin
Date: 2013-06-13 09:21:44 +0000 (Thu, 13 Jun 2013)
Log Message:
-----------
2013-06-13 13:20 UTC+0300 Alexander Kresin <al...@be...>
* source/xml/xmlparse.c
* New function has been added: hbxml_SetEntity() to change the default
values of pairs, which are converted while loading/saving xml files,
such as < -> '<', & -> '&', etc.
To set new values, you should call this function with an array
as parameter, for example:
hbxml_SetEntity( { { "lt;","<" },{ "amp;","&" }, { "nbsp;"," " }, { "quot;",'"' } } )
To restore default values just call it without parameters.
Modified Paths:
--------------
trunk/hwgui/Changelog
trunk/hwgui/source/xml/xmlparse.c
|