You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ch...@apache.org on 2013/09/30 22:38:52 UTC

svn commit: r1527769 [3/3] - in /ctakes/site/trunk/content/docs: TypeSystem.xml TypeSystemDescription.xsl

Propchange: ctakes/site/trunk/content/docs/TypeSystem.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ctakes/site/trunk/content/docs/TypeSystemDescription.xsl
URL: http://svn.apache.org/viewvc/ctakes/site/trunk/content/docs/TypeSystemDescription.xsl?rev=1527769&view=auto
==============================================================================
--- ctakes/site/trunk/content/docs/TypeSystemDescription.xsl (added)
+++ ctakes/site/trunk/content/docs/TypeSystemDescription.xsl Mon Sep 30 20:38:51 2013
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<xsl:stylesheet version="1.0"
+xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" >
+
+<xsl:template match="/">
+  <html>
+  <body>
+  <h2>Apache cTAKES Data Dictionary </h2>
+  <table border="1">
+    <tr bgcolor="#9acd32">
+      <th>Type</th>
+      <th>Features</th>
+    </tr>
+    <xsl:for-each select="typeSystemDescription/types/typeDescription">
+    <xsl:sort select="name"/>
+    <tr>
+      <td>
+      <b><xsl:value-of select="name" />
+      </b>
+      <!-- extends <xsl:value-of select="t:supertypeName" />  -->
+      <p>
+      <xsl:value-of select="description" />
+      </p>
+      </td>
+      <td>
+		      <table border="1">
+		          <xsl:for-each select="features/featureDescription">
+				    <tr>
+				      <td><xsl:value-of select="name" /></td>
+				      <td><xsl:value-of select="description" /></td>
+				    </tr>
+				    </xsl:for-each>  
+		      </table>
+      </td>
+    </tr>  
+    </xsl:for-each>
+  </table>
+  </body>
+  </html>
+</xsl:template>
+
+</xsl:stylesheet>
\ No newline at end of file

Propchange: ctakes/site/trunk/content/docs/TypeSystemDescription.xsl
------------------------------------------------------------------------------
    svn:eol-style = native