I have a very simple xml file that looks something like this:
<teams>
<team lead="jim" wing="bob" />
<team lead="frank" wing="mary" />
<team lead="george" wing="hans" />
</teams>
I need to let people edit this file using a web interface, preferably served over apache. It should just list the "lead" and "wing" attributes in a table and allow them to be edited as free-form text. Before I start mucking about and writing my own, is there some kind of super-simple framework that does this kind of thing out of the box? Liker a general purpose web-based xml editor, where you could set the path to a file and the xpath of the attributes to be edited and they would show up on a nice web form...preferably open source.
Thanks!