StructureAnnotation presentation technologies (see DataRepresentation) marks regions of content in a Web page (or other resource to be presented) with indications that such regions represent or "map onto" particular data structures or parts of data structures. Consequently, the content is transformed using a combination of this mapping and the underlying data, and in the purest form of StructureAnnotation, no explicit programmatic transformations are employed (unlike in PythonInWebPage systems) - the data structures appear to do all the work.

A fictional example of this concept could be provided as follows:

<table annotation:element="items">
  <tr annotation:element="item">
    <th>Name</th>
    <td>{name}</td>
  </tr>
</table>

This would work on a data structure described by the following XML extract:

<items>
  <item name="Ape"/>
  <item name="Baboon"/>
  <item name="Chimpanzee"/>
</items>

Many StructureAnnotation template systems provide support for additional features such as condition testing, and temporary variables, making them more of a hybrid of PythonInWebPage and StructureAnnotation.

Some example systems are

StructureAnnotation (last edited 2013-02-05 01:57:49 by techtonik)

Unable to edit the page? See the FrontPage for instructions.