Updates to the MoI API of David C Morrill

 From:  Michael Gibson
10857.14 In reply to 10857.13 
Hi Brian,

re:
> The XML looks a lot like a database.

Yeah the way that works is in the XML you can make up your own tag names that contain just plain data content and not any display specific stuff like pixel widths and table structures and such. Then the XSLT part is for generating HTML display content from the XML data.

After setting it up like that then modifying it becomes simpler because you are working with less stuff like you add in something like:

<factory>
   <name>Twist</name>
   <param>
        <description>Text content here</description>
    </param>
</factory>

That XML part is pretty straightforward but the XSLT part is kind of hard to learn.

- Michael