changeset element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<changeset>
<branches>...</branches>
<branches>...</branches>
<!--...more "branches" elements...-->
<parents>...</parents>
<parents>...</parents>
<!--...more "parents" elements...-->
<date>...</date>
<description>...</description>
<modifications>
<added>
<file>...</file>
<file>...</file>
<!--...more "file" elements...-->
</added>
<removed>
<file>...</file>
<file>...</file>
<!--...more "file" elements...-->
</removed>
<modified>
<file>...</file>
<file>...</file>
<!--...more "file" elements...-->
</modified>
</modifications>
<tags>...</tags>
<tags>...</tags>
<!--...more "tags" elements...-->
<id>...</id>
<author>
<mail>...</mail>
<name>...</name>
</author>
<properties>
<key>...</key>
<value>...</value>
</properties>
<properties>
<!--...-->
</properties>
<!--...more "properties" elements...-->
</changeset>
Example JSON
{
"branches" : [ "...", ... ],
"parents" : [ "...", ... ],
"date" : ...,
"description" : "...",
"modifications" : {
"added" : [ "...", ... ],
"removed" : [ "...", ... ],
"modified" : [ "...", ... ]
},
"tags" : [ "...", ... ],
"id" : "...",
"author" : {
"mail" : "...",
"name" : "..."
},
"properties" : [ {
"key" : "...",
"value" : "..."
}, ... ]
}