Please disable Adblockers and enable JavaScript for domain CEWebS.cs.univie.ac.at! We have NO ADS, but they may interfere with some of our course material.

Name: server/xsls/callbacks.xsl 
1:
<!DOCTYPE html>
2:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3:
  <xsl:output method="html" doctype-public="XSLT-compat"/>
4:
  <xsl:template match="*">
5:
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
6:
      <head>
7:
         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8:
         <title>List of Callbacks</title>
9:
      </head>
10:
      <body>
11:
        <h1>List of Callbacks</h1>
12:
        <ul>
13:
          <xsl:for-each select="callback">
14:
            <li>
15:
              <xsl:element name="a">
16:
                <xsl:attribute name="href"><xsl:value-of select="@id"/>/</xsl:attribute>
17:
                <xsl:value-of select="text()"/>
18:
              </xsl:element>
19:
            </li>  
20:
          </xsl:for-each>
21:
        </ul>
22:
      </body>
23:
    </html>
24:
  </xsl:template>
25:
</xsl:stylesheet>