<?xml version="1.0" encoding="ISO-8859-1"?>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:xf="http://www.w3.org/2002/xforms">
<head>
    <title>XFORMS</title>
    <xf:model>
             	<xf:instance id="my_musik" src="musik.xml"/>
            	<xf:instance id="loc_var" xmlns="">
            		<data>
            		<xf:query></xf:query>
            		</data>
            	</xf:instance>
              <xf:bind id="query" nodeset="instance('loc_var')/xf:query" />
    </xf:model>
</head>
<body>
<fieldset>
         <legend>Musiksammlung</legend>
         <p>
				 	<xf:input bind="query" incremental="true">
          	<xf:label>Interpret eingeben: </xf:label>
       		</xf:input>
       		<table>
			 		<xf:repeat nodeset="ALBUM[INTERPRET[contains(., instance('loc_var')/xf:query)]]">
			 			<tr><xf:output ref="INTERPRET"><xf:label><strong>Interpret:	</strong></xf:label></xf:output></tr>
            <tr><xf:output ref="TITEL"><xf:label><strong>Albumtitel:	</strong></xf:label></xf:output></tr>
            <tr><xf:output ref="GESAMTZEIT"><xf:label><strong>Gesamtzeit:	</strong></xf:label></xf:output></tr>
            <tr><xf:output ref="LABEL"><xf:label><strong>Label:	</strong></xf:label></xf:output></tr>
            <tr><xf:output ref="JAHR"><xf:label><strong>Jahr:	</strong></xf:label></xf:output></tr>
            <tr><strong>Tracks:</strong>
						<ol>
            	<xf:repeat nodeset="LIED">
            		<li><xf:output ref="@TITEL" /><xf:output ref=".[@DAUER]">(<xf:output ref="@DAUER" value="()"/>)</xf:output></li>
            	</xf:repeat>
            </ol>
            </tr>
				 </xf:repeat>
         </table>
         </p>
      </fieldset>
</body>
</html>
