[hibernate-commits] Hibernate SVN: r15384 - in search/trunk: doc/reference/en and 2 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Oct 24 06:25:35 EDT 2008


Author: hardy.ferentschik
Date: 2008-10-24 06:25:33 -0400 (Fri, 24 Oct 2008)
New Revision: 15384

Added:
   search/trunk/src/filters/derby.filter
Modified:
   search/trunk/doc/reference/en/master.xml
   search/trunk/doc/reference/en/modules/getting-started.xml
   search/trunk/doc/reference/en/modules/mapping.xml
   search/trunk/ivy.xml
   search/trunk/readme.txt
Log:
changed beta1 to beta2. Fixed some spelling mistakes. Added derby jdbc driver

Modified: search/trunk/doc/reference/en/master.xml
===================================================================
--- search/trunk/doc/reference/en/master.xml	2008-10-23 15:48:18 UTC (rev 15383)
+++ search/trunk/doc/reference/en/master.xml	2008-10-24 10:25:33 UTC (rev 15384)
@@ -24,7 +24,7 @@
   ~ Boston, MA  02110-1301  USA
   -->
 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-        <!ENTITY versionNumber "3.1.0.Beta1">
+        <!ENTITY versionNumber "3.1.0.Beta2">
         <!ENTITY copyrightYear "2004">
         <!ENTITY copyrightHolder "Red Hat Middleware, LLC.">
 ]>

Modified: search/trunk/doc/reference/en/modules/getting-started.xml
===================================================================
--- search/trunk/doc/reference/en/modules/getting-started.xml	2008-10-23 15:48:18 UTC (rev 15383)
+++ search/trunk/doc/reference/en/modules/getting-started.xml	2008-10-24 10:25:33 UTC (rev 15384)
@@ -298,7 +298,7 @@
     details see <xref linkend="search-mapping-bridge" />.</para>
 
     <para>This leaves us with <literal>@IndexedEmbedded. </literal>This
-    annotation is used to indexed associated entities
+    annotation is used to index associated entities
     (<literal>@ManyToMany</literal>, <literal>@*ToOne</literal> and
     <literal>@Embedded</literal>) as part of the owning entity. This is needed
     since a Lucene index document is a flat data structure which does not know

Modified: search/trunk/doc/reference/en/modules/mapping.xml
===================================================================
--- search/trunk/doc/reference/en/modules/mapping.xml	2008-10-23 15:48:18 UTC (rev 15383)
+++ search/trunk/doc/reference/en/modules/mapping.xml	2008-10-24 10:25:33 UTC (rev 15384)
@@ -446,21 +446,21 @@
       feature richness.</para>
 
       <para><note>
-          <para>An associated object can itself be (but don't have to)
+          <para>An associated object can itself (but does not have to) be
           <literal>@Indexed</literal></para>
         </note></para>
 
       <para>When @IndexedEmbedded points to an entity, the association has to
       be directional and the other side has to be annotated
-      <literal>@ContainedIn</literal> (as see in the previous example). If
+      <literal>@ContainedIn</literal> (as seen in the previous example). If
       not, Hibernate Search has no way to update the root index when the
-      associated entity is updated (in ou example, a <literal>Place</literal>
+      associated entity is updated (in our example, a <literal>Place</literal>
       index document has to be updated when the associated
-      <classname>Address</classname> instance is updated.</para>
+      <classname>Address</classname> instance is updated).</para>
 
       <para>Sometimes, the object type annotated by
       <classname>@IndexedEmbedded</classname> is not the object type targeted
-      by Hibernate and Hibernate Search especially when interface are used in
+      by Hibernate and Hibernate Search especially when interfaces are used in
       lieu of their implementation. You can override the object type targeted
       by Hibernate Search using the <methodname>targetElement</methodname>
       parameter.</para>
@@ -491,8 +491,8 @@
     <section>
       <title>Boost factor</title>
 
-      <para>Lucene has the notion of <emphasis>boost factor</emphasis> . It's
-      a way to give more weigth to a field or to an indexed element over an
+      <para>Lucene has the notion of <emphasis>boost factor</emphasis>. It's a
+      way to give more weigth to a field or to an indexed element over an
       other during the indexation process. You can use
       <literal>@Boost</literal> at the field or the class level.</para>
 

Modified: search/trunk/ivy.xml
===================================================================
--- search/trunk/ivy.xml	2008-10-23 15:48:18 UTC (rev 15383)
+++ search/trunk/ivy.xml	2008-10-24 10:25:33 UTC (rev 15384)
@@ -44,6 +44,7 @@
         <dependency org="hsqldb" name="hsqldb" rev="1.8.0.2" conf="test->default"/>
         <dependency org="postgresql" name="postgresql" rev="8.3-603.jdbc3" conf="test->default"/>
         <dependency org="mysql" name="mysql-connector-java" rev="5.1.6" conf="test->default"/>
+        <dependency org="org.apache.derby" name="derby" rev="10.2.1.6" conf="test->default"/>
 
     </dependencies>
 </ivy-module>
\ No newline at end of file

Modified: search/trunk/readme.txt
===================================================================
--- search/trunk/readme.txt	2008-10-23 15:48:18 UTC (rev 15383)
+++ search/trunk/readme.txt	2008-10-24 10:25:33 UTC (rev 15384)
@@ -1,6 +1,6 @@
 Hibernate Search
 ==================================================
-Version: 3.1.0.Beta1, 17.07.2008
+Version: 3.1.0.Beta2, 27.10.2008
 
 Description
 -----------

Copied: search/trunk/src/filters/derby.filter (from rev 15383, search/trunk/src/filters/mysql.filter)
===================================================================
--- search/trunk/src/filters/derby.filter	                        (rev 0)
+++ search/trunk/src/filters/derby.filter	2008-10-24 10:25:33 UTC (rev 15384)
@@ -0,0 +1,7 @@
+## Derby
+
+hibernate.dialect org.hibernate.dialect.DerbyDialect
+hibernate.connection.driver_class org.apache.derby.jdbc.EmbeddedDriver
+hibernate.connection.url jdbc:derby:hibernate;create=true
+hibernate.connection.username hibernate
+hibernate.connection.password hibernate


Property changes on: search/trunk/src/filters/derby.filter
___________________________________________________________________
Name: svn:mergeinfo
   + 
Name: svn:eol-style
   + native




More information about the hibernate-commits mailing list