-
Notifications
You must be signed in to change notification settings - Fork 79
Releases: manoelcampos/xml2lua
Releases · manoelcampos/xml2lua
v1.6-1 Small bug fixes
@manoelcampos
manoelcampos
7e36b2e
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Assets 2
2 people reacted
v1.5-2 - Fix attributes parsing in xml2lua.toXml()
@manoelcampos
manoelcampos
b24be89
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Replaces travis-ci.org links to travis-ci.com
Assets 2
v1.4-5 Adds _VERSION attribute
@manoelcampos
manoelcampos
fddd893
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Assets 2
v1.4-2 - Support for Lua 5.4
@manoelcampos
manoelcampos
cb92513
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Close #49
Assets 2
v1.4-1: Bugfix release
@manoelcampos
manoelcampos
42f9b60
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Fix conversion of arrays to XML, correctly using the name of the array as tag names instead of using their indexes.
For instance, consider the following XML:
<object> <item>item 1</item> <item>item 2</item> </object>
That XML is converted to the following lua table, where item is an array:
object = { item = {'item 1', 'item 2'} }
Converting such a table back to XML was wrongly resulting in:
<object> <1>item 1</2> <2>item 2</2> </object>
Now the conversion from the lua table returns the same XML shown at the top of this document.
Assets 2
v1.4-0 - Improve serialiser handling of attributes
@manoelcampos
manoelcampos
89376e5
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Ensures all attributes are included when serializing a Lua table to XML.
Assets 2
v1.3-0 Enables converting a Lua Table to an XML representation
@manoelcampos
manoelcampos
fa711dc
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Introduces the xml2lua.toXml() function to convert a Lua Table to its XML representation.
Check example4-table2xml.lua for details.
Assets 2
v1.1-1 Bugfix release
@manoelcampos
manoelcampos
b8d20c9
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Just fix an issue with the rockspec file to download the module using luarocks.
Assets 2
v1.1-0 Adds support for Lua 5.3
@manoelcampos
manoelcampos
70fd996
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Now the module works with Lua 5.1 to 5.3.
Assets 2
v1.0-1 Bugfix Release
@manoelcampos
manoelcampos
b535a15
This commit was signed with the committer’s verified signature.
The key has expired.
manoelcampos
Manoel Campos
Small fix in the parser.