[hibernate-commits] Hibernate SVN: r10693 - in branches/Branch_3_2/HibernateExt/tools/src: templates/doc/tables test/org/hibernate/tool/hbm2x

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Nov 2 14:14:26 EST 2006


Author: max.andersen at jboss.com
Date: 2006-11-02 14:14:21 -0500 (Thu, 02 Nov 2006)
New Revision: 10693

Added:
   branches/Branch_3_2/HibernateExt/tools/src/templates/doc/tables/schema-table-list.ftl
Modified:
   branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/UnionSubclass.hbm.xml
Log:
missing file + updated test to include a second schema.

Added: branches/Branch_3_2/HibernateExt/tools/src/templates/doc/tables/schema-table-list.ftl
===================================================================
--- branches/Branch_3_2/HibernateExt/tools/src/templates/doc/tables/schema-table-list.ftl	2006-11-02 19:12:37 UTC (rev 10692)
+++ branches/Branch_3_2/HibernateExt/tools/src/templates/doc/tables/schema-table-list.ftl	2006-11-02 19:14:21 UTC (rev 10693)
@@ -0,0 +1,21 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html>
+	<head>
+		<title>Hibernate Mappings - Table List</title>
+		<link rel="stylesheet" type="text/css" href="${docFileManager.getRef(docFile, docFileManager.getCssStylesDocFile())}" title="Style"/>
+	</head>
+	<body class="List">
+
+		<p class="ListTitleFont">
+			<a href="${docFileManager.getRef(docFile, docFileManager.getSchemaSummaryDocFile(title))}" target="generalFrame">${title}</a>
+		</p>
+		
+		<p>
+			<#foreach table in tableList>
+				<a href="${docFileManager.getRef(docFile, docFileManager.getTableDocFile(table))}" target="generalFrame">${table.name}</a><br/>
+			</#foreach>
+		</p>
+
+	</body>
+</html>
\ No newline at end of file

Modified: branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/UnionSubclass.hbm.xml
===================================================================
--- branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/UnionSubclass.hbm.xml	2006-11-02 19:12:37 UTC (rev 10692)
+++ branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/UnionSubclass.hbm.xml	2006-11-02 19:14:21 UTC (rev 10693)
@@ -27,7 +27,7 @@
             </column> 
         </property> 
 
-        <union-subclass name="UUser" table="CROWN_USERS" lazy="false"> 
+        <union-subclass name="UUser" table="CROWN_USERS" schema="CROWN" lazy="false"> 
             <comment>Table of crown users</comment> 
             <property name="userName" type="string"> 
                 <column name="USER_NAME" length="15" not-null="true" unique="true"> 




More information about the hibernate-commits mailing list