Browse Source

[v1.1] Remove outdated xsl files

M. Sonntag 4 years ago
parent
commit
d0e08e8845

+ 0 - 176
v1.1/analysis/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/blackrock/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/carmenMini/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/cell/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/datareference/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/dataset/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/electrode/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/environment/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/event/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/experiment/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/hardware/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/license/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/model/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-   <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-   <!-- Please note: only those elements will be displayed terminology related -->
-   <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-   <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-   <!-- ************************************************  -->
-   <!--                   root template                   -->
-   <xsl:template match="odML">
-      <!-- if there is a base url definition read it and later pass it to the sections template -->
-      <xsl:variable name="repository" select="repository"/>
-      <html>
-         <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-               csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-               livesrc="../../../images/odMLIcon.png" />
-         <style type="text/css">
-            body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-            #navigationContainer { left:20px; width:80%;}
-
-            #contentContainer { left:20px; width:80%;}
-         </style>
-
-         <body>
-            <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-            <div id="navigationContainer">
-               <p>
-                  <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-                  <h2>Document info</h2>
-                  <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-                  <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-                  <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-                  <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-               </p>
-
-               <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-               <h2>Structure</h2>
-               <font size ="-1" >
-                  <xsl:if test="section">
-                     <xsl:for-each select="section">
-                        <li>
-                           <xsl:call-template name="sectionTemplate">
-                              <xsl:with-param name="navigation">1</xsl:with-param>
-                              <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                              <xsl:with-param name="url" select="$repository"/>
-                           </xsl:call-template>
-                        </li>
-                     </xsl:for-each>
-                  </xsl:if>
-               </font>
-            </div>
-
-            <div id="contentContainer">
-               <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-               <h2>Content</h2>
-               <!-- apply the section template  -->
-               <xsl:if test="section">
-                  <xsl:for-each select="section">
-                     <xsl:call-template name="sectionTemplate">
-                        <xsl:with-param name="navigation">0</xsl:with-param>
-                        <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                        <xsl:with-param name="url" select="$repository"/>
-                     </xsl:call-template>
-                  </xsl:for-each>
-               </xsl:if>
-            </div>
-         </body>
-      </html>
-   </xsl:template>
-
-   <!-- ************************************************  -->
-   <!--              section template.                    -->
-   <xsl:template name="sectionTemplate" match="section">
-      <xsl:param name="navigation"/>
-      <xsl:param name="anchorBase"/>
-      <xsl:param name="url"/>
-      <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-      <!-- set new repository if specified within this section otherwise use the old one -->
-      <xsl:variable name="repository">
-         <xsl:choose>
-            <xsl:when test="repository">
-               <xsl:value-of select ="repository"/>
-            </xsl:when>
-            <xsl:otherwise>
-               <xsl:value-of select ="$url"/>
-            </xsl:otherwise>
-         </xsl:choose>
-      </xsl:variable>
-      <!-- print out the content -->
-      <xsl:choose>
-         <!--  fill the navigation container if this is the task (navigation param = 1) -->
-         <xsl:when test="$navigation = 1">
-            <!-- create a link to the anchor in the content container  -->
-            <ol style="compact">
-               <font size="normal"><a href="#{$anchorName}">
-                  <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-               </a></font>
-               <!--  recursive call if there are subsections  -->
-               <xsl:if test="section">
-                  <xsl:for-each select="section">
-                     <xsl:call-template name="sectionTemplate">
-                        <xsl:with-param name="navigation" select="$navigation"/>
-                        <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                        <xsl:with-param name="url" select="$repository"/>
-                     </xsl:call-template>
-                  </xsl:for-each>
-               </xsl:if>
-            </ol>
-         </xsl:when>
-         <!--  otherwise use template to display the content (navigation !=1) -->
-         <xsl:otherwise>
-            <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-            <p>
-               <b>Type: </b><xsl:value-of select="type"/><br/>
-               <xsl:choose>
-                  <xsl:when test ="repository">
-                     <b>Repository: </b><xsl:value-of select="repository"/><br/>
-                  </xsl:when>
-                  <xsl:otherwise>
-                     <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-                  </xsl:otherwise>
-               </xsl:choose>
-               <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-               <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-               <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-            </p>
-
-            <!--  Check if there are any properties  -->
-            <xsl:if test="property">
-               <table border="1" rules="rows" width="100%"><font size="-1">
-                  <tr bgcolor="#336699" align="left" valign="middle">
-                     <th><font size="+1" color="white"><b>Name</b></font></th>
-                     <th><font size="+1" color="white"><b>Value</b></font></th>
-                     <th><font size="+1" color="white"><b>Unit</b></font></th>
-                     <th><font size="+1" color="white"><b>Type</b></font></th>
-                     <th><font size="+1" color="white"><b>Definition</b></font></th>
-                     <th><font size="+1" color="white"><b>Dependency</b></font></th>
-                     <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-                  </tr>
-                  <xsl:for-each select="property">
-                     <xsl:variable name="anchor">
-                        <xsl:value-of select ="name"/>
-                     </xsl:variable>
-                     <tr>
-                        <td width="15%"><a name="{$anchor}"/>
-                           <p><xsl:value-of select="name"/></p>
-                        </td>
-                        <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                        <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                        <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                        <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                        <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                        <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-                     </tr>
-                  </xsl:for-each></font>
-               </table>
-            </xsl:if>
-            <a href="#top"><tiny>top</tiny></a>
-            <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-            <!--  recursive call if there are subsections  -->
-            <xsl:if test="section">
-               <xsl:for-each select="section">
-                  <xsl:call-template name="sectionTemplate">
-                     <xsl:with-param name="navigation" select="$navigation"/>
-                     <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                     <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-               </xsl:for-each>
-            </xsl:if>
-         </xsl:otherwise>
-      </xsl:choose>
-   </xsl:template>
-</xsl:stylesheet>

+ 0 - 59
v1.1/odML.xsd

@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
-           targetNamespace="http://www.g-node.org/odml">
-  <!-- 1 -->
-  <!-- THE PROPERTY TYPE IS THE BUILDING BLOCK OF ALL odML METADATA. -->
-  <!-- PROPERTIES BASICALLY CONSIST OF name/value PAIRS. -->
-  <!-- -->
-  <xs:element name ="property">
-    <xs:complexType>
-      <xs:choice minOccurs="0" maxOccurs="unbounded">
-        <!-- if there is a NAME there must also be a VALUE -->
-        <xs:element name="name" type="xs:string" minOccurs="1" maxOccurs="1"/>
-        <xs:element name="value" minOccurs="1" maxOccurs="unbounded"/>
-        <!-- all other elements are optional -->
-        <xs:element name="type" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="uncertainty" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="unit" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="reference" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="value_origin" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="definition" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="dependency" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="dependencyValue" type="xs:string" minOccurs="0" maxOccurs="1"/>
-      </xs:choice>
-    </xs:complexType>
-  </xs:element>
-  <!-- 2 -->
-  <!-- SECTIONS ARE MEANT TO CONTAIN PROPERTIES THAT BELONG -->
-  <!-- LOGICALLY TOGETHER THESE MAY HAVE SUBSECTIONS -->
-  <xs:element name="section">
-    <xs:complexType mixed="true">
-      <xs:choice minOccurs="0" maxOccurs="unbounded">
-        <xs:element name="name" type="xs:string" minOccurs="1" maxOccurs="1"/>
-        <xs:element name="type" type="xs:string" minOccurs="1" maxOccurs="1"/>
-        <xs:element name="reference" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="definition" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="link" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="include" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="repository" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element ref="property" minOccurs="0" maxOccurs="unbounded"/>
-        <xs:element ref="section" minOccurs="0" maxOccurs="unbounded"/>
-      </xs:choice>
-    </xs:complexType>
-  </xs:element>
-  <!-- 3 -->
-  <!-- THE ROOT ELEMENT THAT CAN CONTAIN ALL THE INFORMATION THE USER WANTS TO PROVIDE -->
-  <!-- THE ROOT ELEMENT ITSELF CAN ONLY CONTAIN SECTIONS BUT NO PROPERTIES -->
-  <xs:element name="odML">
-    <xs:complexType mixed="true">
-      <xs:choice minOccurs="0" maxOccurs="unbounded">
-        <xs:element name="author" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="date" type="xs:date" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="version" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element name="repository" type="xs:string" minOccurs="0" maxOccurs="1"/>
-        <xs:element ref="section" minOccurs="1" maxOccurs="unbounded"/>
-      </xs:choice>
-      <xs:attribute name="version" type="xs:string"/>
-    </xs:complexType>
-  </xs:element>
-</xs:schema>

+ 0 - 332
v1.1/odMLTerminologies.xml

@@ -1,332 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet type="text/xsl" href="odMLTerminologies.xsl"?>
-<odML version="1.1">
-  <baseURL>http://www.g-node.org/odml/terminologies/v1.1/</baseURL>
-
-  <section>
-    <type>analysis/generic</type>
-    <name>Analysis</name>
-
-    <section>
-      <type>analysis/psth</type>
-      <name>PSTH</name>
-    </section>
-  </section>
-
-  <section>
-    <type>cell/generic</type>
-    <name>Cell</name>
-  </section>
-
-  <section>
-    <type>dataset/generic</type>
-    <name>Dataset</name>
-  </section>
-
-  <section>
-    <type>event/generic</type>
-    <name>Event</name>
-
-    <section>
-      <type>event/eventList</type>
-      <name>EventList</name>
-    </section>
-  </section>
-
-  <section>
-    <type>electrode/generic</type>
-    <name>Electrode</name>
-  </section>
-
-  <section>
-    <type>experiment/generic</type>
-    <name>Experiment</name>
-
-    <section>
-      <type>experiment/behavior</type>
-      <name>Behavior</name>
-    </section>
-
-    <section>
-      <type>experiment/electrophysiology</type>
-      <name>Electrophysiology</name>
-    </section>
-
-    <section>
-      <type>experiment/imaging</type>
-      <name>Imaging</name>
-    </section>
-
-    <section>
-      <type>experiment/modeling</type>
-      <name>Modeling</name>
-    </section>
-
-    <section>
-      <type>experiment/pschophysics</type>
-      <name>Psychophysics</name>
-    </section>
-  </section>
-
-  <section>
-    <type>collection/hardwareProperties</type>
-    <name>HardwareProperties</name>
-    <definition>There are two hardware related sections i.e. the
-      "HardwareProperties" and the "HardwareSettings" section. While
-      the properties describe the static properties of the hardware
-      that do not change, the settings section describes the actual,
-      adjustable, parameters, of the hardware that may change with
-      each recording or dataset e.g. the animal_keeping rate of an
-      data acquisition board. In each of these sections there are
-      subsections for each device (or can be) that correspond to the
-      class of the device like data-acquisition, amplifier, etc. Some
-      properties are common for any type.
-    </definition>
-    <section>
-      <type>hardware/generic</type>
-      <name>Hardware</name>
-    </section>
-
-    <section>
-      <type>hardware/attenuator</type>
-      <name>Attenuator</name>
-    </section>
-
-    <section>
-      <type>hardware/cameraObjective</type>
-      <name>CameraObjective</name>
-    </section>
-
-    <section>
-      <type>hardware/daq</type>
-      <name>DataAcquisition</name>
-    </section>
-
-    <section>
-      <type>hardware/eyetracker</type>
-      <name>Eyetracker</name>
-    </section>
-
-    <section>
-      <type>hardware/filter</type>
-      <name>Filter</name>
-    </section>
-
-    <section>
-      <type>hardware/filterSet</type>
-      <name>Filterset</name>
-    </section>
-
-    <section>
-      <type>hardware/iaq</type>
-      <name>ImageAcquisition</name>
-    </section>
-
-    <section>
-      <type>hardware/lightSource</type>
-      <name>Lightsource</name>
-    </section>
-
-    <section>
-      <type>hardware/microscope</type>
-      <name>Microscope</name>
-    </section>
-
-    <section>
-      <type>hardware/microscopeObjective</type>
-      <name>MicroscopeObjective</name>
-    </section>
-
-    <section>
-      <type>hardware/scanner</type>
-      <name>Scanner</name>
-    </section>
-
-    <section>
-      <type>hardware/stimulusIsolator</type>
-      <name>StimulusIsolator</name>
-    </section>
-  </section>
-
-  <section>
-    <type>collection/hardwareSettings</type>
-    <name>HardwareSettings</name>
-    <definition>There are two hardware related sections i.e. the
-      "Hardwaredefinition" and the "HardwareSettings" section. While
-      the properties describe the static properties of the hardware
-      that do not change, the settings section describes the actual,
-      adjustable, parameters, of the hardware that may change with
-      each recording or dataset e.g. the animal_keeping rate of an
-      dataacquisition board. In each of these sections there are
-      subsections for each device (or can be) that correspond to the
-      class of the device like data-acquisition, amplifier, etc. Some
-      properties are common for any type.
-    </definition>
-    <section>
-      <type>hardware/generic</type>
-      <name>Hardware-2</name>
-    </section>
-
-    <section>
-      <type>hardware/amplifier</type>
-      <name>Amplifier</name>
-    </section>
-
-    <section>
-      <type>hardware/attenuator</type>
-      <name>Attenuator-2</name>
-    </section>
-
-    <section>
-      <type>hardware/cameraObjective</type>
-      <name>CameraObjective-2</name>
-    </section>
-
-    <section>
-      <type>hardware/daq</type>
-      <name>DataAcquisition-2</name>
-    </section>
-
-    <section>
-      <type>hardware/eyetracker</type>
-      <name>Eyetracker-2</name>
-    </section>
-
-    <section>
-      <type>hardware/filter</type>
-      <name>Filter-2</name>
-    </section>
-
-    <section>
-      <type>hardware/filterSet</type>
-      <name>Filterset-2</name>
-    </section>
-
-    <section>
-      <type>hardware/iaq</type>
-      <name>ImageAcquisition-2</name>
-    </section>
-
-    <section>
-      <type>hardware/lightSource</type>
-      <name>Lightsource-2</name>
-    </section>
-
-    <section>
-      <type>hardware/microscope</type>
-      <name>Microscope-2</name>
-    </section>
-
-    <section>
-      <type>hardware/microscopeObjective</type>
-      <name>MicroscopeObjective-2</name>
-    </section>
-
-    <section>
-      <type>hardware/scanner</type>
-      <name>Scanner-2</name>
-    </section>
-
-    <section>
-      <type>hardware/stimulusIsolator</type>
-      <name>StimulusIsolator-2</name>
-    </section>
-  </section>
-
-  <section>
-    <type>person/generic</type>
-    <name>Person</name>
-  </section>
-
-  <section>
-    <type>preparation/generic</type>
-    <name>Preparation</name>
-  </section>
-
-  <section>
-    <type>recording/generic</type>
-    <name>Recording</name>
-  </section>
-
-  <section>
-    <type>setup/generic</type>
-    <name>Setup</name>
-  </section>
-
-  <section>
-    <type>stimulus/generic</type>
-    <name>Stimulus</name>
-    <definition>Some global definitions of the applied stimulus. This section is parent to various subsections that
-      further specify the applied stimulus.
-    </definition>
-
-    <section>
-      <type>stimulus/dc</type>
-      <name>DC</name>
-    </section>
-
-    <section>
-      <type>stimulus/gabor</type>
-      <name>Gabor</name>
-    </section>
-
-    <section>
-      <type>stimulus/grating</type>
-      <name>Grating</name>
-    </section>
-
-    <section>
-      <type>stimulus/pulse</type>
-      <name>Pulse</name>
-    </section>
-
-    <section>
-      <type>stimulus/movie</type>
-      <name>Movie</name>
-    </section>
-
-    <section>
-      <type>stimulus/ramp</type>
-      <name>Ramp</name>
-    </section>
-
-    <section>
-      <type>stimulus/randomDot</type>
-      <name>RandomDot</name>
-    </section>
-
-    <section>
-      <type>stimulus/sawtooth</type>
-      <name>Sawtooth</name>
-    </section>
-
-    <section>
-      <type>stimulus/sinewave</type>
-      <name>Sinewave</name>
-    </section>
-
-    <section>
-      <type>stimulus/squarewave</type>
-      <name>Squarewave</name>
-    </section>
-
-    <section>
-      <type>stimulus/whitenoise</type>
-      <name>WhiteNoise</name>
-    </section>
-  </section>
-
-  <section>
-    <type>subject/generic</type>
-    <name>Subject</name>
-  </section>
-
-  <section>
-    <type>carmenMini/generic</type>
-    <name>CarmenMini</name>
-    <definition>This is a convenience section that lists the terms of the CARMEN MINI (Gibson et al. Nature Precedings,
-      2009 Version 0.6) and maps them to the odml "standard" terminologies.
-    </definition>
-  </section>
-
-</odML>

+ 0 - 113
v1.1/odMLTerminologies.xsl

@@ -1,113 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <html>
-      <style type="text/css">
-        <link href="../../images/odMLIcon.ico" rel="shortcut icon"
-              csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-              livesrc="../../images/odMLIcon.png" />
-        body { margin:0; padding:0; height:1500px; } div { border:0px
-        solid #888; }
-        #contentContainer {position:absolute; left:251px; top:1px; width:80%;
-        height:auto;}
-      </style>
-      <body>
-        <p><a href="index.html"><img src="../../images/odMLTitle.png" alt="" title="Home" height="128" width="707" border="0" /></a></p>
-        <h1>odML - Terminologies</h1>
-        <h3>How to use:</h3>
-        <p>The terminologies (see below) generally define the names of properties. In some cases we also define
-          "values". This is mainly the case if the occurrence of a certain property value requires more properties
-          for further specification. One example for this would be the switching frequency on an amplifier used
-          in an electrophysiological experiment. This property is only meaningful if the amplifier was used in
-          in a discontinuous operation mode.
-          <ul>
-            <li>Please understand these names as suggestions!</li>
-            <li>Thus, if you find a property definition fitting your needs please use it.</li>
-            <li>Otherwise simply create your own properties. </li>
-            <li>These may not be recognized by other tools but your metadatum is stored!</li>
-            <li>If you further find that the just created property is of general interest please provide a definition
-              and do not hesitate to send it to us. We would be happy to include it. </li>
-          </ul>
-        </p>
-        <h3>So far defined terminologies</h3>
-        <p>The following Terminologies contain definitions according to the section name. If you specify e.g.
-          the sample rate of an analog input device include it contained within the respective section into
-          your odML - file.</p>
-        <xsl:variable name="baseurl" select="baseURL"/>
-        <ol>
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <br/>
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="url" select="$baseurl"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="url"/>
-    <!-- combine the link name -->
-    <xsl:variable name="linkName">
-      <xsl:choose>
-        <xsl:when test="baseURL">
-          <xsl:value-of select="concat(baseURL,type,'.xml')"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select="concat($url,type,'.xml')"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- set new baseurl if specified within this section otherwise use the old one -->
-    <xsl:variable name="baseurl">
-      <xsl:choose>
-        <xsl:when test="baseURL">
-          <xsl:value-of select ="baseURL"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- the anchor of this section -->
-    <xsl:variable name="anchor" select ="type"/>
-    <!--   debug
-    <p>debug</p>
-    <p>link: <xsl:value-of select="$linkName"/></p>
-    <p>baseurl: <xsl:value-of select="$baseurl"/></p>
-    <p>anchor: <xsl:value-of select="$anchor"/></p>
-    <p>debug</p>
-    -->
-    <!--create the list item -->
-    <li>
-      <a name="{$anchor}"></a>
-      <xsl:choose>
-        <xsl:when test="type">
-          <a  href="{$linkName}"><xsl:value-of select="concat(name,' - [',type,']')"/></a><br/>
-        </xsl:when>
-        <xsl:otherwise>
-          <a  href="{$linkName}"><xsl:value-of select="name"/></a><br/>
-        </xsl:otherwise>
-      </xsl:choose>
-      <xsl:if test ="definition">
-        <p><xsl:value-of select="definition"/></p>
-      </xsl:if>
-      <ul>
-        <xsl:for-each select="section">
-          <xsl:call-template name="sectionTemplate">
-            <xsl:with-param name="url" select="$baseurl"/>
-          </xsl:call-template>
-        </xsl:for-each>
-      </ul>
-    </li>
-  </xsl:template>
-
-</xsl:stylesheet>

+ 0 - 178
v1.1/odml.xsl

@@ -1,178 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions" xmlns:odml="http://www.g-node.org/odml">
-   <!-- ************************************************  -->
-   <!--                   root template                   -->
-   <xsl:template match="odML">
-      <xsl:variable name="repository" select="repository"/>
-      <html>
-         <style type="text/css">
-            body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-            #navigationContainer { left:10%; width:95%;}
-
-            #contentContainer { left:10%; width:95%;}
-         </style>
-
-         <body>
-            <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-            <div id="navigationContainer">
-               <p>
-                  <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-                  <h2>Document info</h2>
-                  <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-                  <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-                  <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-                  <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-               </p>
-
-               <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-               <h2>Structure</h2>
-               <font  size ="-1" >
-                  <xsl:if test="section">
-                     <xsl:for-each select="section">
-                        <li>
-                           <xsl:call-template name="sectionTemplate">
-                              <xsl:with-param name="navigation">1</xsl:with-param>
-                              <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                              <xsl:with-param name="url" select="$repository"/>
-                           </xsl:call-template>
-                        </li>
-                     </xsl:for-each>
-                  </xsl:if></font>
-            </div>
-
-            <div id="contentContainer">
-               <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-               <h2>Content</h2>
-
-               <xsl:if test="section">
-                  <xsl:for-each select="section">
-                     <xsl:call-template name="sectionTemplate">
-                        <xsl:with-param name="navigation">0</xsl:with-param>
-                        <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                        <xsl:with-param name="url" select="$repository"/>
-                     </xsl:call-template>
-                  </xsl:for-each>
-               </xsl:if>
-            </div>
-         </body>
-      </html>
-   </xsl:template>
-
-   <!-- ************************************************  -->
-   <!--              section template.                    -->
-   <xsl:template name="sectionTemplate" match="section">
-      <xsl:param name="navigation"/>
-      <xsl:param name="anchorBase"/>
-      <xsl:param name="url"/>
-      <!-- create the anchor for the navigation menu-->
-      <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-      <!-- set new baseurl if specified within this section otherwise use the old one -->
-      <xsl:variable name="repository">
-         <xsl:choose>
-            <xsl:when test="repository">
-               <xsl:value-of select ="repository"/>
-            </xsl:when>
-            <xsl:otherwise>
-               <xsl:value-of select ="$url"/>
-            </xsl:otherwise>
-         </xsl:choose>
-      </xsl:variable>
-      <!-- print out the content -->
-      <xsl:choose>
-         <!--  fill the navigation container if this is the task (navigation param = 1)  -->
-         <xsl:when test="$navigation = 1">
-            <!-- create a link to the anchor in the content container  -->
-            <ol style="compact">
-               <font size="normal"><a href="#{$anchorName}">
-                  <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-               </a></font>
-               <!--  recursive call if there are subsections  -->
-               <xsl:if test="section">
-                  <xsl:for-each select="section">
-                     <xsl:call-template name="sectionTemplate">
-                        <xsl:with-param name="navigation" select="$navigation"/>
-                        <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                        <xsl:with-param name="url" select="$repository"/>
-                     </xsl:call-template>
-                  </xsl:for-each>
-               </xsl:if>
-            </ol>
-         </xsl:when>
-         <!--  otherwise use template to display the content (navigation !=1) -->
-         <xsl:otherwise>
-            <a name="{$anchorName}"><h3>Section: <xsl:value-of select="name"/> </h3></a>
-            <p>
-               <b>Type: </b><xsl:value-of select="type"/><br/>
-               <xsl:choose>
-                  <xsl:when test ="repository">
-                     <b>Repository: </b><xsl:value-of select="repository"/><br/>
-                  </xsl:when>
-                  <xsl:otherwise>
-                     <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-                  </xsl:otherwise>
-               </xsl:choose>
-               <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-               <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-               <b>Definition:</b> <xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-            </p>
-
-            <!--  Check if there are any properties  -->
-            <xsl:if test="property">
-               <table border="1" rules="rows" width="100%"><font size ="-1">
-                  <tr bgcolor="#336699" valign="middle" align="left">
-                     <th><font size="+1" color="white"><b>Name</b></font></th>
-                     <th><font size="+1" color="white"><b>Value</b></font></th>
-                     <th><font size="+1" color="white"><b>Uncertainty</b></font></th>
-                     <th><font size="+1" color="white"><b>Unit</b></font></th>
-                     <th><font size="+1" color="white"><b>Type</b></font></th>
-                     <th><font size="+1" color="white"><b>Reference</b></font></th>
-                     <th><font size="+1" color="white"><b>Definition</b></font></th>
-                     <th><font size="+1" color="white"><b>Value origin</b></font></th>
-                     <!--
-                       <th><font size="+1" color="white"><b>Dependency</b></font></th>
-                       <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-                     -->
-                  </tr>
-                  <xsl:for-each select="property">
-                     <xsl:variable name="anchor">
-                        <xsl:value-of select ="name"/>
-                     </xsl:variable>
-                     <tr>
-                        <td width="15%"><a name="{$anchor}"/>
-                           <p><xsl:value-of select="name"/></p>
-                        </td>
-                        <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                        <td width="5%"><p><xsl:value-of select="uncertainty"/></p></td>
-                        <td width="5%"><p><xsl:value-of select="unit"/></p></td>
-                        <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                        <td width="5%"><p><xsl:value-of select="reference"/></p></td>
-                        <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                        <td width="7.5%%"><p><xsl:value-of select="value_origin"/></p></td>
-                        <!--
-                          <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                          <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-                        -->
-                     </tr>
-                  </xsl:for-each></font>
-               </table>
-            </xsl:if>
-            <a href="#top"><tiny>top</tiny></a>
-            <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-            <!--  recursive call if there are subsections  -->
-            <xsl:if test="section">
-               <xsl:for-each select="section">
-                  <xsl:call-template name="sectionTemplate">
-                     <xsl:with-param name="navigation" select="$navigation"/>
-                     <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                     <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-               </xsl:for-each>
-            </xsl:if>
-         </xsl:otherwise>
-      </xsl:choose>
-   </xsl:template>
-
-</xsl:stylesheet>

+ 0 - 55
v1.1/odmlRepository.xsl

@@ -1,55 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions"
-                xmlns:odml="http://www.g-node.org/odml">
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <html>
-      <style type="text/css">
-        <link href="../../images/odMLIcon.ico" rel="shortcut icon"
-              csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-              livesrc="../../images/odMLIcon.png" />
-        body { margin:0; padding:0; height:1500px; } div { border:0px
-        solid #888; }
-        #contentContainer {position:absolute; left:251px; top:1px; width:80%;
-        height:auto;}
-      </style>
-      <body>
-        <p><a href="index.html"><img src="../../images/odMLTitle.png" alt="" title="Home" height="128" width="707" border="0" /></a></p>
-        <h1>odML - Terminologies</h1>
-        <ol>
-          <xsl:if test="section">
-            <xsl:for-each select="section"><br/>
-              <xsl:call-template name="sectionTemplate"/>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-
-    <!--   debug
-    <p>debug</p>
-    <p>link: <xsl:value-of select="$linkName"/></p>
-    <p>baseurl: <xsl:value-of select="$baseurl"/></p>
-    <p>anchor: <xsl:value-of select="$anchor"/></p>
-    <p>debug</p>
-    -->
-    <!--create the list item -->
-    <xsl:variable name="linkurl" select="include"/>
-    <li>
-      <a  href="{$linkurl}"><xsl:value-of select="concat(type,' - type, name: ',name)"/></a><br/>
-      <ul>
-        <xsl:for-each select="section">
-          <xsl:call-template name="sectionTemplate"/>
-        </xsl:for-each>
-      </ul>
-    </li>
-  </xsl:template>
-
-</xsl:stylesheet>

+ 0 - 176
v1.1/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/person/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/preparation/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/project/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/protocol/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/questionnaire/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/recording/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/response/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/setup/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/software/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/stimulus/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>

+ 0 - 176
v1.1/subject/odmlTerms.xsl

@@ -1,176 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
-
-  <!-- This stylesheet is for viewing odml-terminologies in a web browser -->
-  <!-- Please note: only those elements will be displayed terminology related -->
-  <!-- e.g. uncertainty, id, and valueComments will not be shown -->
-  <!-- For viewing real metadata files use the odml.xsl stylesheet -->
-  <!-- ************************************************  -->
-  <!--                   root template                   -->
-  <xsl:template match="odML">
-    <!-- if there is a base url definition read it and later pass it to the sections template -->
-    <xsl:variable name="repository" select="repository"/>
-    <html>
-      <link href="../../../images/odMLIcon.ico" rel="shortcut icon"
-            csoptsettings="AQAAAD142mNgYNBomeIwObe4IIeBgYEvyTDuaAoPw3IFiwOcndS8HR1NjO0NDPTNdIzzEzOByni+A8EQNoAAPMPEQ4="
-            livesrc="../../../images/odMLIcon.png" />
-      <style type="text/css">
-        body { margin-left:2%; margin-top:10px; padding:0;} div { border:0px solid #888; }
-
-        #navigationContainer { left:20px; width:80%;}
-
-        #contentContainer { left:20px; width:80%;}
-      </style>
-
-      <body>
-        <a name="top" style="color:#336699"><h1>odML - Metadata</h1></a>
-        <div id="navigationContainer">
-          <p>
-            <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-            <h2>Document info</h2>
-            <b>Author: </b><xsl:if test="author"><xsl:value-of select="author"/></xsl:if><br/>
-            <b>Date: </b><xsl:if test="date"><xsl:value-of select="date"/></xsl:if><br/>
-            <b>Version: </b><xsl:if test="version"><xsl:value-of select="version"/></xsl:if><br/>
-            <b>Repository: </b><xsl:if test="repository"><xsl:value-of select="repository"/></xsl:if><br/>
-          </p>
-
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-
-          <h2>Structure</h2>
-          <font size ="-1" >
-            <xsl:if test="section">
-              <xsl:for-each select="section">
-                <li>
-                  <xsl:call-template name="sectionTemplate">
-                    <xsl:with-param name="navigation">1</xsl:with-param>
-                    <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                    <xsl:with-param name="url" select="$repository"/>
-                  </xsl:call-template>
-                </li>
-              </xsl:for-each>
-            </xsl:if>
-          </font>
-        </div>
-
-        <div id="contentContainer">
-          <hr style="color:yellow; background-color:#336699; height:4px; margin-right:0; text-align:right; border:1px dashed black;"/>
-          <h2>Content</h2>
-          <!-- apply the section template  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation">0</xsl:with-param>
-                <xsl:with-param name="anchorBase">Sec</xsl:with-param>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </div>
-      </body>
-    </html>
-  </xsl:template>
-
-  <!-- ************************************************  -->
-  <!--              section template.                    -->
-  <xsl:template name="sectionTemplate" match="section">
-    <xsl:param name="navigation"/>
-    <xsl:param name="anchorBase"/>
-    <xsl:param name="url"/>
-    <xsl:variable name="anchorName" select="concat($anchorBase,position())"/>
-    <!-- set new repository if specified within this section otherwise use the old one -->
-    <xsl:variable name="repository">
-      <xsl:choose>
-        <xsl:when test="repository">
-          <xsl:value-of select ="repository"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select ="$url"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-    <!-- print out the content -->
-    <xsl:choose>
-      <!--  fill the navigation container if this is the task (navigation param = 1) -->
-      <xsl:when test="$navigation = 1">
-        <!-- create a link to the anchor in the content container  -->
-        <ol style="compact">
-          <font size="normal"><a href="#{$anchorName}">
-            <xsl:value-of select="name"/> (type: <xsl:value-of select="type"/>)
-          </a></font>
-          <!--  recursive call if there are subsections  -->
-          <xsl:if test="section">
-            <xsl:for-each select="section">
-              <xsl:call-template name="sectionTemplate">
-                <xsl:with-param name="navigation" select="$navigation"/>
-                <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-                <xsl:with-param name="url" select="$repository"/>
-              </xsl:call-template>
-            </xsl:for-each>
-          </xsl:if>
-        </ol>
-      </xsl:when>
-      <!--  otherwise use template to display the content (navigation !=1) -->
-      <xsl:otherwise>
-        <a name="{$anchorName}"><h3> <xsl:value-of select="name"/> Section</h3></a>
-        <p>
-          <b>Type: </b><xsl:value-of select="type"/><br/>
-          <xsl:choose>
-            <xsl:when test ="repository">
-              <b>Repository: </b><xsl:value-of select="repository"/><br/>
-            </xsl:when>
-            <xsl:otherwise>
-              <b>Repository: </b><xsl:value-of select="$repository"/><br/>
-            </xsl:otherwise>
-          </xsl:choose>
-          <b>Link: </b><xsl:if test="link"><xsl:value-of select="link"/></xsl:if><br/>
-          <b>Include:</b> <xsl:if test="include"><font color="red"><xsl:value-of select="include"/></font></xsl:if><br/>
-          <b>Definition: </b><xsl:if test="definition"><xsl:value-of select="definition"/></xsl:if><br/>
-        </p>
-
-        <!--  Check if there are any properties  -->
-        <xsl:if test="property">
-          <table border="1" rules="rows" width="100%"><font size="-1">
-            <tr bgcolor="#336699" align="left" valign="middle">
-              <th><font size="+1" color="white"><b>Name</b></font></th>
-              <th><font size="+1" color="white"><b>Value</b></font></th>
-              <th><font size="+1" color="white"><b>Unit</b></font></th>
-              <th><font size="+1" color="white"><b>Type</b></font></th>
-              <th><font size="+1" color="white"><b>Definition</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency</b></font></th>
-              <th><font size="+1" color="white"><b>Dependency Value</b></font></th>
-            </tr>
-            <xsl:for-each select="property">
-              <xsl:variable name="anchor">
-                <xsl:value-of select ="name"/>
-              </xsl:variable>
-              <tr>
-                <td width="15%"><a name="{$anchor}"/>
-                  <p><xsl:value-of select="name"/></p>
-                </td>
-                <td width="10%"><p><xsl:value-of select="value"/></p></td>
-                <td width="5%"><p><xsl:value-of select="unit"/><br/></p></td>
-                <td width="5%"><p><xsl:value-of select="type"/></p></td>
-                <td width="22.5%"><p><xsl:value-of select="definition"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependency"/></p></td>
-                <td width="5%"><p><xsl:value-of select="dependencyValue"/></p></td>
-              </tr>
-            </xsl:for-each></font>
-          </table>
-        </xsl:if>
-        <a href="#top"><tiny>top</tiny></a>
-        <hr style="background-color:#336699; height:1px; margin-right:0; text-align:right;"/>
-        <!--  recursive call if there are subsections  -->
-        <xsl:if test="section">
-          <xsl:for-each select="section">
-            <xsl:call-template name="sectionTemplate">
-              <xsl:with-param name="navigation" select="$navigation"/>
-              <xsl:with-param name="anchorBase" select="concat($anchorName,'SubSec')"/>
-              <xsl:with-param name="url" select="$repository"/>
-            </xsl:call-template>
-          </xsl:for-each>
-        </xsl:if>
-      </xsl:otherwise>
-    </xsl:choose>
-  </xsl:template>
-</xsl:stylesheet>