[hibernate-commits] Hibernate SVN: r14586 - in core/trunk/documentation/manual: old/fr-FR/src/main/docbook/content and 12 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Apr 28 02:02:18 EDT 2008


Author: d.plentz
Date: 2008-04-28 02:02:18 -0400 (Mon, 28 Apr 2008)
New Revision: 14586

Modified:
   core/trunk/documentation/manual/old/es-ES/src/main/docbook/content/filters.xml
   core/trunk/documentation/manual/old/fr-FR/src/main/docbook/content/filters.xml
   core/trunk/documentation/manual/old/ja-JP/src/main/docbook/content/filters.xml
   core/trunk/documentation/manual/old/ko-KR/src/main/docbook/content/filters.xml
   core/trunk/documentation/manual/old/pt-BR/src/main/docbook/content/filters.xml
   core/trunk/documentation/manual/old/zh-CN/src/main/docbook/content/filters.xml
   core/trunk/documentation/manual/src/main/docbook/en-US/content/filters.xml
   core/trunk/documentation/manual/src/main/docbook/es-ES/content/filters.po
   core/trunk/documentation/manual/src/main/docbook/fr-FR/content/filters.po
   core/trunk/documentation/manual/src/main/docbook/ja-JP/content/filters.po
   core/trunk/documentation/manual/src/main/docbook/ko-KR/content/filters.po
   core/trunk/documentation/manual/src/main/docbook/pot/content/filters.pot
   core/trunk/documentation/manual/src/main/docbook/pt-BR/content/filters.po
   core/trunk/documentation/manual/src/main/docbook/zh-CN/content/filters.po
Log:
[HHH-3071] Hibernate documentation error : session.enabledFilter

Modified: core/trunk/documentation/manual/old/es-ES/src/main/docbook/content/filters.xml
===================================================================
--- core/trunk/documentation/manual/old/es-ES/src/main/docbook/content/filters.xml	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/old/es-ES/src/main/docbook/content/filters.xml	2008-04-28 06:02:18 UTC (rev 14586)
@@ -108,7 +108,7 @@
         </para>
 
 <programlisting><![CDATA[Session session = ...;
-session.enabledFilter("effectiveDate").setParameter("asOfDate", new Date());
+session.enableFilter("effectiveDate").setParameter("asOfDate", new Date());
 List results = session.createQuery("from Employee as e where e.salary > :targetSalary")
          .setLong("targetSalary", new Long(1000000))
          .list();

Modified: core/trunk/documentation/manual/old/fr-FR/src/main/docbook/content/filters.xml
===================================================================
--- core/trunk/documentation/manual/old/fr-FR/src/main/docbook/content/filters.xml	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/old/fr-FR/src/main/docbook/content/filters.xml	2008-04-28 06:02:18 UTC (rev 14586)
@@ -61,7 +61,7 @@
             <literal>getEnabledFilter(String filterName)</literal>, et <literal>disableFilter(String filterName)</literal>.
             Par défaut, les filtres <emphasis>ne sont pas</emphasis> activés pour une session donnée ;
             ils doivent être explicitement activés en appelant la méthode
-            <literal>Session.enabledFilter()</literal>, laquelle retourne une instance de l'interface
+            <literal>Session.enableFilter()</literal>, laquelle retourne une instance de l'interface
             <literal>Filter</literal>. Utiliser le simple filtre défini au-dessus ressemblerait à :
         </para>
 
@@ -112,7 +112,7 @@
         </para>
 
 <programlisting><![CDATA[Session session = ...;
-session.enabledFilter("effectiveDate").setParameter("asOfDate", new Date());
+session.enableFilter("effectiveDate").setParameter("asOfDate", new Date());
 List results = session.createQuery("from Employee as e where e.salary > :targetSalary")
          .setLong("targetSalary", new Long(1000000))
          .list();

Modified: core/trunk/documentation/manual/old/ja-JP/src/main/docbook/content/filters.xml
===================================================================
--- core/trunk/documentation/manual/old/ja-JP/src/main/docbook/content/filters.xml	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/old/ja-JP/src/main/docbook/content/filters.xml	2008-04-28 06:02:18 UTC (rev 14586)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
-
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+
 <chapter id="filters">
     <title>データのフィルタリング</title>
     
@@ -60,7 +60,7 @@
             <literal>Session</literal> 上のメソッドは <literal>enableFilter(String filterName)</literal>,
             <literal>getEnabledFilter(String filterName)</literal>, <literal>disableFilter(String filterName)</literal> です。
             デフォルトでは、フィルタは与えられたセッションに対して使用 <emphasis>できません</emphasis> 。
-            <literal>Filter</literal> インスタンスを返り値とする <literal>Session.enabledFilter()</literal> メソッドを使うことで、
+            <literal>Filter</literal> インスタンスを返り値とする <literal>Session.enableFilter()</literal> メソッドを使うことで、
             フィルタは明示的に使用可能となります。
             上で定義した単純なフィルタの使用は、このようになります。:
         </para>
@@ -114,7 +114,7 @@
         </para>
 
 <programlisting><![CDATA[Session session = ...;
-session.enabledFilter("effectiveDate").setParameter("asOfDate", new Date());
+session.enableFilter("effectiveDate").setParameter("asOfDate", new Date());
 List results = session.createQuery("from Employee as e where e.salary > :targetSalary")
          .setLong("targetSalary", new Long(1000000))
          .list();

Modified: core/trunk/documentation/manual/old/ko-KR/src/main/docbook/content/filters.xml
===================================================================
--- core/trunk/documentation/manual/old/ko-KR/src/main/docbook/content/filters.xml	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/old/ko-KR/src/main/docbook/content/filters.xml	2008-04-28 06:02:18 UTC (rev 14586)
@@ -54,8 +54,8 @@
         <para>
             <literal>Session</literal> 상의 메소드들은 다음과 같다: <literal>enableFilter(String filterName)</literal>, 
             <literal>getEnabledFilter(String filterName)</literal>, <literal>disableFilter(String filterName)</literal>. 
-                        디폴트로, 필터들은 주어진 세션에 대해 이용 가능하지 <emphasis>않다</emphasis>; 그것들은 <literal>Session.enabledFilter()</literal> 
-                        메소드의 사용을 통해 명시적으로 이용 가능하게 되어야 한다. <literal>Session.enabledFilter()</literal>는 
+                        디폴트로, 필터들은 주어진 세션에 대해 이용 가능하지 <emphasis>않다</emphasis>; 그것들은 <literal>Session.enableFilter()</literal> 
+                        메소드의 사용을 통해 명시적으로 이용 가능하게 되어야 한다. <literal>Session.enableFilter()</literal>는 
             <literal>Filter</literal> 인터페이스의 인스턴스를 반환한다. 위에 정의된 간단한 필터를 사용하면, 이것은 다음과 같을 것이다:
         </para>
 
@@ -103,7 +103,7 @@
         </para>
 
 <programlisting><![CDATA[Session session = ...;
-session.enabledFilter("effectiveDate").setParameter("asOfDate", new Date());
+session.enableFilter("effectiveDate").setParameter("asOfDate", new Date());
 List results = session.createQuery("from Employee as e where e.salary > :targetSalary")
          .setLong("targetSalary", new Long(1000000))
          .list();

Modified: core/trunk/documentation/manual/old/pt-BR/src/main/docbook/content/filters.xml
===================================================================
--- core/trunk/documentation/manual/old/pt-BR/src/main/docbook/content/filters.xml	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/old/pt-BR/src/main/docbook/content/filters.xml	2008-04-28 06:02:18 UTC (rev 14586)
@@ -1,6 +1,6 @@
-<?xml version='1.0' encoding="UTF-8"?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
-
+<?xml version='1.0' encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+
 <chapter id="filters">
     <title>Filtrando dados</title>
     
@@ -58,7 +58,7 @@
             Os métodos na <literal>Session</literal> são: <literal>enableFilter(String filterName)</literal>,
             <literal>getEnabledFilter(String filterName)</literal>, e <literal>disableFilter(String filterName)</literal>.
             Por padrão, os filtros não são habilitados dentro de qualquer session; Eles devem ser explicitamente 
-            habilitados usando o método  <literal>Session.enabledFilter()</literal>, que retorna uma instância da 
+            habilitados usando o método  <literal>Session.enableFilter()</literal>, que retorna uma instância da 
             interface <literal>Filter</literal>. Usando o filtro simples definido acima, o código se pareceria 
             com o seguinte:
         </para>
@@ -107,7 +107,7 @@
         </para>
 
 <programlisting><![CDATA[Session session = ...;
-session.enabledFilter("effectiveDate").setParameter("asOfDate", new Date());
+session.enableFilter("effectiveDate").setParameter("asOfDate", new Date());
 List results = session.createQuery("from Employee as e where e.salary > :targetSalary")
          .setLong("targetSalary", new Long(1000000))
          .list();

Modified: core/trunk/documentation/manual/old/zh-CN/src/main/docbook/content/filters.xml
===================================================================
--- core/trunk/documentation/manual/old/zh-CN/src/main/docbook/content/filters.xml	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/old/zh-CN/src/main/docbook/content/filters.xml	2008-04-28 06:02:18 UTC (rev 14586)
@@ -56,7 +56,7 @@
 
 			<literal>Session</literal>对象中会用到的方法有:<literal>enableFilter(String filterName)</literal>,
             <literal>getEnabledFilter(String filterName)</literal>, 和 <literal>disableFilter(String filterName)</literal>.
-			Session中默认是<emphasis>不</emphasis>启用过滤器的,必须通过<literal>Session.enabledFilter()</literal>方法显式的启用。
+			Session中默认是<emphasis>不</emphasis>启用过滤器的,必须通过<literal>Session.enableFilter()</literal>方法显式的启用。
 			该方法返回被启用的<literal>Filter</literal>的实例。以上文定义的过滤器为例:
         </para>
 
@@ -106,7 +106,7 @@
         </para>
 
 <programlisting><![CDATA[Session session = ...;
-session.enabledFilter("effectiveDate").setParameter("asOfDate", new Date());
+session.enableFilter("effectiveDate").setParameter("asOfDate", new Date());
 List results = session.createQuery("from Employee as e where e.salary > :targetSalary")
          .setLong("targetSalary", new Long(1000000))
          .list();

Modified: core/trunk/documentation/manual/src/main/docbook/en-US/content/filters.xml
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/en-US/content/filters.xml	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/en-US/content/filters.xml	2008-04-28 06:02:18 UTC (rev 14586)
@@ -58,7 +58,7 @@
             The methods on <literal>Session</literal> are: <literal>enableFilter(String filterName)</literal>,
             <literal>getEnabledFilter(String filterName)</literal>, and <literal>disableFilter(String filterName)</literal>.
             By default, filters are <emphasis>not</emphasis> enabled for a given session; they must be explcitly
-            enabled through use of the <literal>Session.enabledFilter()</literal> method, which returns an
+            enabled through use of the <literal>Session.enableFilter()</literal> method, which returns an
             instance of the <literal>Filter</literal> interface. Using the simple filter defined above, this
             would look like:
         </para>
@@ -107,7 +107,7 @@
         </para>
 
 <programlisting><![CDATA[Session session = ...;
-session.enabledFilter("effectiveDate").setParameter("asOfDate", new Date());
+session.enableFilter("effectiveDate").setParameter("asOfDate", new Date());
 List results = session.createQuery("from Employee as e where e.salary > :targetSalary")
          .setLong("targetSalary", new Long(1000000))
          .list();

Modified: core/trunk/documentation/manual/src/main/docbook/es-ES/content/filters.po
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/es-ES/content/filters.po	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/es-ES/content/filters.po	2008-04-28 06:02:18 UTC (rev 14586)
@@ -230,7 +230,7 @@
 #: index.docbook:76
 msgid ""
 "<![CDATA[Session session = ...;\n"
-"session.enabledFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
+"session.enableFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
 "());\n"
 "List results = session.createQuery(\"from Employee as e where e.salary > :"
 "targetSalary\")\n"
@@ -239,7 +239,7 @@
 "]]>"
 msgstr ""
 "<![CDATA[Session session = ...;\n"
-"session.enabledFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
+"session.enableFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
 "());\n"
 "List results = session.createQuery(\"from Employee as e where e.salary > :"
 "targetSalary\")\n"

Modified: core/trunk/documentation/manual/src/main/docbook/fr-FR/content/filters.po
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/fr-FR/content/filters.po	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/fr-FR/content/filters.po	2008-04-28 06:02:18 UTC (rev 14586)
@@ -139,7 +139,7 @@
 "literal>, et <literal>disableFilter(String filterName)</literal>. Par "
 "défaut, les filtres <emphasis>ne sont pas</emphasis> activés pour une "
 "session donnée ; ils doivent être explicitement activés en appelant la "
-"méthode <literal>Session.enabledFilter()</literal>, laquelle retourne une "
+"méthode <literal>Session.enableFilter()</literal>, laquelle retourne une "
 "instance de l'interface <literal>Filter</literal>. Utiliser le simple filtre "
 "défini au-dessus ressemblerait à :"
 
@@ -225,7 +225,7 @@
 #, no-c-format
 msgid ""
 "<![CDATA[Session session = ...;\n"
-"session.enabledFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
+"session.enableFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
 "());\n"
 "List results = session.createQuery(\"from Employee as e where e.salary > :"
 "targetSalary\")\n"

Modified: core/trunk/documentation/manual/src/main/docbook/ja-JP/content/filters.po
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/ja-JP/content/filters.po	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/ja-JP/content/filters.po	2008-04-28 06:02:18 UTC (rev 14586)
@@ -137,7 +137,7 @@
 "literal>, <literal>disableFilter(String filterName)</literal> です。 デフォル"
 "トでは、フィルタは与えられたセッションに対して使用 <emphasis>できません</"
 "emphasis> 。 <literal>Filter</literal> インスタンスを返り値とする "
-"<literal>Session.enabledFilter()</literal> メソッドを使うことで、 フィルタは"
+"<literal>Session.enableFilter()</literal> メソッドを使うことで、 フィルタは"
 "明示的に使用可能となります。 上で定義した単純なフィルタの使用は、このようにな"
 "ります。:"
 
@@ -220,7 +220,7 @@
 #, no-c-format
 msgid ""
 "<![CDATA[Session session = ...;\n"
-"session.enabledFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
+"session.enableFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
 "());\n"
 "List results = session.createQuery(\"from Employee as e where e.salary > :"
 "targetSalary\")\n"

Modified: core/trunk/documentation/manual/src/main/docbook/ko-KR/content/filters.po
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/ko-KR/content/filters.po	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/ko-KR/content/filters.po	2008-04-28 06:02:18 UTC (rev 14586)
@@ -136,8 +136,8 @@
 "(String filterName)</literal>, <literal>getEnabledFilter(String filterName)</"
 "literal>, <literal>disableFilter(String filterName)</literal>. 디폴트로, 필터"
 "들은 주어진 세션에 대해 이용 가능하지 <emphasis>않다</emphasis>; 그것들은 "
-"<literal>Session.enabledFilter()</literal> 메소드의 사용을 통해 명시적으로 이"
-"용 가능하게 되어야 한다. <literal>Session.enabledFilter()</literal>는 "
+"<literal>Session.enableFilter()</literal> 메소드의 사용을 통해 명시적으로 이"
+"용 가능하게 되어야 한다. <literal>Session.enableFilter()</literal>는 "
 "<literal>Filter</literal> 인터페이스의 인스턴스를 반환한다. 위에 정의된 간단"
 "한 필터를 사용하면, 이것은 다음과 같을 것이다:"
 
@@ -220,7 +220,7 @@
 #, no-c-format
 msgid ""
 "<![CDATA[Session session = ...;\n"
-"session.enabledFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
+"session.enableFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
 "());\n"
 "List results = session.createQuery(\"from Employee as e where e.salary > :"
 "targetSalary\")\n"

Modified: core/trunk/documentation/manual/src/main/docbook/pot/content/filters.pot
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/pot/content/filters.pot	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/pot/content/filters.pot	2008-04-28 06:02:18 UTC (rev 14586)
@@ -42,7 +42,7 @@
 msgstr ""
 
 #: filters.xml:57(para) 
-msgid "The methods on <literal>Session</literal> are: <literal>enableFilter(String filterName)</literal>, <literal>getEnabledFilter(String filterName)</literal>, and <literal>disableFilter(String filterName)</literal>. By default, filters are <emphasis>not</emphasis> enabled for a given session; they must be explcitly enabled through use of the <literal>Session.enabledFilter()</literal> method, which returns an instance of the <literal>Filter</literal> interface. Using the simple filter defined above, this would look like:"
+msgid "The methods on <literal>Session</literal> are: <literal>enableFilter(String filterName)</literal>, <literal>getEnabledFilter(String filterName)</literal>, and <literal>disableFilter(String filterName)</literal>. By default, filters are <emphasis>not</emphasis> enabled for a given session; they must be explcitly enabled through use of the <literal>Session.enableFilter()</literal> method, which returns an instance of the <literal>Filter</literal> interface. Using the simple filter defined above, this would look like:"
 msgstr ""
 
 #: filters.xml:68(para) 

Modified: core/trunk/documentation/manual/src/main/docbook/pt-BR/content/filters.po
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/pt-BR/content/filters.po	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/pt-BR/content/filters.po	2008-04-28 06:02:18 UTC (rev 14586)
@@ -138,7 +138,7 @@
 "filterName)</literal>, <literal>getEnabledFilter(String filterName)</"
 "literal>, e <literal>disableFilter(String filterName)</literal>. Por padrão, "
 "os filtros não são habilitados dentro de qualquer session; Eles devem ser "
-"explicitamente habilitados usando o método <literal>Session.enabledFilter()</"
+"explicitamente habilitados usando o método <literal>Session.enableFilter()</"
 "literal>, que retorna uma instância da interface <literal>Filter</literal>. "
 "Usando o filtro simples definido acima, o código se pareceria com o seguinte:"
 
@@ -223,7 +223,7 @@
 #, no-c-format
 msgid ""
 "<![CDATA[Session session = ...;\n"
-"session.enabledFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
+"session.enableFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
 "());\n"
 "List results = session.createQuery(\"from Employee as e where e.salary > :"
 "targetSalary\")\n"

Modified: core/trunk/documentation/manual/src/main/docbook/zh-CN/content/filters.po
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/zh-CN/content/filters.po	2008-04-28 05:19:53 UTC (rev 14585)
+++ core/trunk/documentation/manual/src/main/docbook/zh-CN/content/filters.po	2008-04-28 06:02:18 UTC (rev 14586)
@@ -216,7 +216,7 @@
 #, no-c-format
 msgid ""
 "<![CDATA[Session session = ...;\n"
-"session.enabledFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
+"session.enableFilter(\"effectiveDate\").setParameter(\"asOfDate\", new Date"
 "());\n"
 "List results = session.createQuery(\"from Employee as e where e.salary > :"
 "targetSalary\")\n"




More information about the hibernate-commits mailing list