Hi Lorenzo,
It took time to figure out where I did this modification, sorry about
that. But it's really simple.
Open qooxdoo-path/tool/pylib/generator/action/ApiLoader.py and find
following lines (130-131 in qooxdoo-0.8.2 sdk):
packages = api.packagesToJsonString(docTree, "", "", "")
filetool.save(os.path.join(apiPath, "apidata.js"), packages)
That's where api data is stored to file. Add one more line to store
all data in xml format as
filetool.save(os.path.join(apiPath, "xmlapi.xml"), docTree.toXml())
That's it.
Let me know if you have any problems.
Serge