Seam SVN: r9316 - trunk/doc/Seam_Reference_Guide/fr-FR.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-10-14 15:33:27 -0400 (Tue, 14 Oct 2008)
New Revision: 9316
Modified:
trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
Log:
minor
Modified: trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
===================================================================
--- trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 19:26:20 UTC (rev 9315)
+++ trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 19:33:27 UTC (rev 9316)
@@ -1635,7 +1635,7 @@
#: Annotations.xml:1443
#, no-c-format
msgid "These meta-annotations make it possible to implement similar functionality to <literal>@DataModel</literal> and <literal>@DataModelSelection</literal> for other datastructures apart from lists."
-msgstr "Ces meta-annotations permettent d'implémenter des fonctionnalités similaires à <literal>@DataModel</lietral> et <literal>@DataModelSelection</literal> pour des structures de données différentes des listes."
+msgstr "Ces meta-annotations permettent d'implémenter des fonctionnalités similaires à <literal>@DataModel</literal> et <literal>@DataModelSelection</literal> pour des structures de données différentes des listes."
#. Tag: literal
#: Annotations.xml:1453
16 years, 1 month
Seam SVN: r9315 - trunk/doc/Seam_Reference_Guide/en-US.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2008-10-14 15:26:20 -0400 (Tue, 14 Oct 2008)
New Revision: 9315
Modified:
trunk/doc/Seam_Reference_Guide/en-US/Websphere.xml
Log:
JBSEAM-3559
Modified: trunk/doc/Seam_Reference_Guide/en-US/Websphere.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Websphere.xml 2008-10-14 19:25:43 UTC (rev 9314)
+++ trunk/doc/Seam_Reference_Guide/en-US/Websphere.xml 2008-10-14 19:26:20 UTC (rev 9315)
@@ -217,7 +217,7 @@
<ejb-ref-name>jboss-seam-jee5/HotelSearchingAction</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home></local-home>
- <local>org.jboss.seam.example.booking.HotelSAll of the examples and informaearching</local>
+ <local>org.jboss.seam.example.booking.HotelSearching</local>
</ejb-local-ref>
<ejb-local-ref>
@@ -437,7 +437,7 @@
<programlisting role="XML"><![CDATA[
<!--<include name="lib/log4j.jar" />-->
<include name="lib/el-api.jar" />
- <include name="examples/jpa/lib/el-ri.jar" />
+ <include name="lib/el-ri.jar" />
<include name="lib/jsf-api.jar" />
<include name="lib/jsf-impl.jar" />
<include name="lib/jboss-seam.jar" />
16 years, 1 month
Seam SVN: r9314 - trunk/src/gen/org/jboss/seam/tool.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2008-10-14 15:25:43 -0400 (Tue, 14 Oct 2008)
New Revision: 9314
Modified:
trunk/src/gen/org/jboss/seam/tool/Util.java
Log:
no longer need ToOne
Modified: trunk/src/gen/org/jboss/seam/tool/Util.java
===================================================================
--- trunk/src/gen/org/jboss/seam/tool/Util.java 2008-10-14 19:24:11 UTC (rev 9313)
+++ trunk/src/gen/org/jboss/seam/tool/Util.java 2008-10-14 19:25:43 UTC (rev 9314)
@@ -3,9 +3,6 @@
import java.util.HashSet;
import java.util.Set;
-import org.hibernate.mapping.Property;
-import org.hibernate.mapping.ToOne;
-
public class Util
{
public String lower(String name)
@@ -20,8 +17,4 @@
{
return new HashSet();
}
- public boolean isToOne(Property property)
- {
- return (property.getValue() != null) && (property.getValue() instanceof ToOne);
- }
}
16 years, 1 month
Seam SVN: r9313 - in trunk/seam-gen: icefaces/build-scripts and 1 other directories.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2008-10-14 15:24:11 -0400 (Tue, 14 Oct 2008)
New Revision: 9313
Modified:
trunk/seam-gen/build-scripts/build-war.xml
trunk/seam-gen/build-scripts/build.xml
trunk/seam-gen/icefaces/build-scripts/build-war.xml
trunk/seam-gen/icefaces/build-scripts/build.xml
trunk/seam-gen/view/list.xhtml
trunk/seam-gen/view/list.xhtml.ftl
Log:
JBSEAM-1201
support writing tests in Groovy (tests are compiled with groovyc)
support the ability to test Groovy components (components are compiled with groovyc)
Modified: trunk/seam-gen/build-scripts/build-war.xml
===================================================================
--- trunk/seam-gen/build-scripts/build-war.xml 2008-10-14 19:13:09 UTC (rev 9312)
+++ trunk/seam-gen/build-scripts/build-war.xml 2008-10-14 19:24:11 UTC (rev 9313)
@@ -38,7 +38,7 @@
<target name="init" description="Initialize the build">
- <taskdef name ="groovyc"
+ <taskdef name="groovyc"
classname ="org.codehaus.groovy.ant.Groovyc"
classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
@@ -47,12 +47,27 @@
<mkdir dir="${dist.dir}" />
<!-- if a .groovy file is in model or action, set groovy.present -->
<available property="groovy.present" value="true" file="" searchparents="true">
- <filepath>
- <fileset dir="${src.action.dir}">
- <include name="**/*.groovy"/>
- </fileset>
- </filepath>
+ <filepath>
+ <fileset dir="${src.action.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ <fileset dir="${src.model.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ </filepath>
</available>
+ <condition property="groovy.test.present" value="true">
+ <or>
+ <isset property="groovy.present"/>
+ <available file="" searchparents="true">
+ <filepath>
+ <fileset dir="${src.test.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ </filepath>
+ </available>
+ </or>
+ </condition>
<condition property="groovy.dynamic" value="true">
<and>
<isset property="groovy.present"/>
@@ -295,7 +310,7 @@
</delete>
</target>
- <target name="compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
+ <target name="compiletest" depends="groovy.compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
<mkdir dir="${test.dir}"/>
<javac classpathref="build.classpath"
destdir="${test.dir}"
@@ -307,6 +322,16 @@
<src path="${src.test.dir}" />
</javac>
</target>
+
+ <target name="groovy.compiletest" if="groovy.test.present" description="Compile the Groovy source code for the tests">
+ <mkdir dir="${test.dir}"/>
+ <groovyc classpathref="build.classpath"
+ destdir="${test.dir}">
+ <src path="${src.action.dir}"/>
+ <src path="${src.model.dir}"/>
+ <src path="${src.test.dir}"/>
+ </groovyc>
+ </target>
<target name="copytestclasses" if="eclipse.running" description="Copy classes compiled by eclipse to the test dir">
<mkdir dir="${test.dir}"/>
@@ -327,7 +352,7 @@
</copy>
</target>
- <target name="buildtest" depends="compiletest,copytestclasses" description="Build the tests">
+ <target name="buildtest" depends="init,compiletest,copytestclasses" description="Build the tests">
<copy todir="${test.dir}">
<fileset dir="${basedir}/resources">
<exclude name="META-INF/persistence*.xml"/>
@@ -355,14 +380,14 @@
<target name="test" depends="buildtest" description="Run the tests">
<taskdef resource="testngtasks" classpath="${testng.jar}" />
- <path id="test.path">
- <path path="${test.dir}" />
- <fileset dir="${lib.dir}/test">
- <include name="*.jar"/>
- </fileset>
- <path path="${bootstrap.dir}" />
- <path refid="build.classpath" />
- </path>
+ <path id="test.path">
+ <path path="${test.dir}" />
+ <fileset dir="${lib.dir}/test">
+ <include name="*.jar"/>
+ </fileset>
+ <path path="${bootstrap.dir}" />
+ <path refid="build.classpath" />
+ </path>
<testng outputdir="${basedir}/test-report">
<jvmarg line="-Djava.endorsed.dirs=${endorsed.dir}"/>
<jvmarg line="-Dsun.lang.ClassLoader.allowArraySyntax=true"/>
Modified: trunk/seam-gen/build-scripts/build.xml
===================================================================
--- trunk/seam-gen/build-scripts/build.xml 2008-10-14 19:13:09 UTC (rev 9312)
+++ trunk/seam-gen/build-scripts/build.xml 2008-10-14 19:24:11 UTC (rev 9313)
@@ -44,7 +44,7 @@
</path>
<target name="init" description="Initialize the build">
- <taskdef name ="groovyc"
+ <taskdef name="groovyc"
classname ="org.codehaus.groovy.ant.Groovyc"
classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
<mkdir dir="${jar.dir}" />
@@ -57,9 +57,24 @@
<fileset dir="${src.action.dir}">
<include name="**/*.groovy"/>
</fileset>
+ <fileset dir="${src.model.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
</filepath>
</available>
- <!-- NOTE: Seam does not properly detect uncompiled groovy classes in an EAR -->
+ <condition property="groovy.test.present" value="true">
+ <or>
+ <isset property="groovy.present"/>
+ <available file="" searchparents="true">
+ <filepath>
+ <fileset dir="${src.test.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ </filepath>
+ </available>
+ </or>
+ </condition>
+ <!-- NOTE: Seam does not properly detect uncompiled groovy classes in an EAR -->
<condition property="groovy.dynamic" value="true">
<and>
<isset property="groovy.present"/>
@@ -193,12 +208,12 @@
<include name="*hibernate.cfg.xml" />
<include name="jbpm.cfg.xml" />
</fileset>
- <fileset dir="${lib.dir}">
- <include name="jboss-seam.jar" />
- </fileset>
- </copy>
- <copy todir="${ear.dir}/lib">
<fileset dir="${lib.dir}">
+ <include name="jboss-seam.jar" />
+ </fileset>
+ </copy>
+ <copy todir="${ear.dir}/lib">
+ <fileset dir="${lib.dir}">
<includesfile name="deployed-jars-ear.list" />
</fileset>
</copy>
@@ -300,7 +315,7 @@
<delete dir="${ear.dir}"/>
<delete dir="${war.dir}"/>
<delete dir="${jar.dir}"/>
- <delete dir="${src.schema.dir}" failonerror="no"/>
+ <delete dir="${src.schema.dir}" failonerror="no"/>
<delete dir="${basedir}/test-report"/>
<delete dir="${basedir}/test-output"/>
<delete failonerror="no" includeemptydirs="true">
@@ -310,7 +325,7 @@
</delete>
</target>
- <target name="compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
+ <target name="compiletest" depends="groovy.compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
<mkdir dir="${test.dir}"/>
<javac classpathref="build.classpath"
destdir="${test.dir}"
@@ -322,6 +337,16 @@
<src path="${src.test.dir}" />
</javac>
</target>
+
+ <target name="groovy.compiletest" if="groovy.test.present" description="Compile the Groovy source code for the tests">
+ <mkdir dir="${test.dir}"/>
+ <groovyc classpathref="build.classpath"
+ destdir="${test.dir}">
+ <src path="${src.action.dir}"/>
+ <src path="${src.model.dir}"/>
+ <src path="${src.test.dir}"/>
+ </groovyc>
+ </target>
<target name="copytestclasses" if="eclipse.running" description="Copy classes compiled by eclipse to the test dir">
<mkdir dir="${test.dir}"/>
@@ -342,7 +367,7 @@
</copy>
</target>
- <target name="buildtest" depends="compiletest,copytestclasses" description="Build the tests">
+ <target name="buildtest" depends="init,compiletest,copytestclasses" description="Build the tests">
<copy todir="${test.dir}">
<fileset dir="${basedir}/resources">
<exclude name="META-INF/persistence*.xml"/>
@@ -370,14 +395,14 @@
<target name="test" depends="buildtest" description="Run the tests">
<taskdef resource="testngtasks" classpath="${testng.jar}" />
- <path id="test.path">
- <path path="${test.dir}" />
- <fileset dir="${lib.dir}/test">
- <include name="*.jar"/>
- </fileset>
- <path path="${bootstrap.dir}" />
- <path refid="build.classpath" />
- </path>
+ <path id="test.path">
+ <path path="${test.dir}" />
+ <fileset dir="${lib.dir}/test">
+ <include name="*.jar"/>
+ </fileset>
+ <path path="${bootstrap.dir}" />
+ <path refid="build.classpath" />
+ </path>
<testng outputdir="${basedir}/test-report">
<jvmarg line="-Djava.endorsed.dirs=${endorsed.dir}"/>
<jvmarg line="-Dsun.lang.ClassLoader.allowArraySyntax=true"/>
@@ -400,16 +425,16 @@
</javadoc>
</target>
-
- <target name="validateConfiguration" depends="war,ear,jar" description="Validate the xml configuration files">
- <mkdir dir="${schema.dir}"/>
- <unjar src="${lib.dir}/jboss-seam.jar" dest="${schema.dir}">
- <patternset>
- <include name="org/jboss/seam/*.xsd"/>
- <include name="org/jboss/seam/*.dtd"/>
- </patternset>
- </unjar>
- <ant antfile="validate.xml" target="validateConfiguration" />
- </target>
+
+ <target name="validateConfiguration" depends="war,ear,jar" description="Validate the xml configuration files">
+ <mkdir dir="${schema.dir}"/>
+ <unjar src="${lib.dir}/jboss-seam.jar" dest="${schema.dir}">
+ <patternset>
+ <include name="org/jboss/seam/*.xsd"/>
+ <include name="org/jboss/seam/*.dtd"/>
+ </patternset>
+ </unjar>
+ <ant antfile="validate.xml" target="validateConfiguration" />
+ </target>
</project>
Modified: trunk/seam-gen/icefaces/build-scripts/build-war.xml
===================================================================
--- trunk/seam-gen/icefaces/build-scripts/build-war.xml 2008-10-14 19:13:09 UTC (rev 9312)
+++ trunk/seam-gen/icefaces/build-scripts/build-war.xml 2008-10-14 19:24:11 UTC (rev 9313)
@@ -38,7 +38,7 @@
<target name="init" description="Initialize the build">
- <taskdef name ="groovyc"
+ <taskdef name="groovyc"
classname ="org.codehaus.groovy.ant.Groovyc"
classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
@@ -47,12 +47,27 @@
<mkdir dir="${dist.dir}" />
<!-- if a .groovy file is in model or action, set groovy.present -->
<available property="groovy.present" value="true" file="" searchparents="true">
- <filepath>
- <fileset dir="${src.action.dir}">
- <include name="**/*.groovy"/>
- </fileset>
- </filepath>
+ <filepath>
+ <fileset dir="${src.action.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ <fileset dir="${src.model.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ </filepath>
</available>
+ <condition property="groovy.test.present" value="true">
+ <or>
+ <isset property="groovy.present"/>
+ <available file="" searchparents="true">
+ <filepath>
+ <fileset dir="${src.test.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ </filepath>
+ </available>
+ </or>
+ </condition>
<condition property="groovy.dynamic" value="true">
<and>
<isset property="groovy.present"/>
@@ -125,12 +140,12 @@
if="eclipse.running">
<!-- TODO check how the groovy eclipse plugin works, does it compile? -->
<copy todir="${classes.model.dir}">
- <fileset dir="classes/model">
+ <fileset dir="classes/main">
<include name="**/*.class"/>
</fileset>
</copy>
<copy todir="${classes.action.dir}">
- <fileset dir="classes/action">
+ <fileset dir="classes/hot">
<include name="**/*.class"/>
</fileset>
</copy>
@@ -199,10 +214,10 @@
<copy todir="${war.dir}/WEB-INF/classes">
<fileset dir="${basedir}/resources">
- <include name="META-INF/orm.xml" />
<include name="*jpdl.xml" />
- <include name="hibernate.cfg.xml" />
+ <include name="*hibernate.cfg.xml" />
<include name="jbpm.cfg.xml" />
+ <include name="META-INF/orm.xml" />
</fileset>
</copy>
@@ -289,7 +304,7 @@
</delete>
</target>
- <target name="compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
+ <target name="compiletest" depends="groovy.compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
<mkdir dir="${test.dir}"/>
<javac classpathref="build.classpath"
destdir="${test.dir}"
@@ -301,16 +316,26 @@
<src path="${src.test.dir}" />
</javac>
</target>
+
+ <target name="groovy.compiletest" if="groovy.test.present" description="Compile the Groovy source code for the tests">
+ <mkdir dir="${test.dir}"/>
+ <groovyc classpathref="build.classpath"
+ destdir="${test.dir}">
+ <src path="${src.action.dir}"/>
+ <src path="${src.model.dir}"/>
+ <src path="${src.test.dir}"/>
+ </groovyc>
+ </target>
<target name="copytestclasses" if="eclipse.running" description="Copy classes compiled by eclipse to the test dir">
<mkdir dir="${test.dir}"/>
<copy todir="${test.dir}">
- <fileset dir="classes/model">
+ <fileset dir="classes/main">
<include name="**/*.class"/>
</fileset>
</copy>
<copy todir="${test.dir}">
- <fileset dir="classes/action">
+ <fileset dir="classes/hot">
<include name="**/*.class"/>
</fileset>
</copy>
@@ -321,7 +346,7 @@
</copy>
</target>
- <target name="buildtest" depends="compiletest,copytestclasses" description="Build the tests">
+ <target name="buildtest" depends="init,compiletest,copytestclasses" description="Build the tests">
<copy todir="${test.dir}">
<fileset dir="${basedir}/resources">
<exclude name="META-INF/persistence*.xml"/>
@@ -352,7 +377,7 @@
<path id="test.path">
<path path="${test.dir}" />
<fileset dir="${lib.dir}/test">
- <include name="*.jar" />
+ <include name="*.jar"/>
</fileset>
<path path="${bootstrap.dir}" />
<path refid="build.classpath" />
Modified: trunk/seam-gen/icefaces/build-scripts/build.xml
===================================================================
--- trunk/seam-gen/icefaces/build-scripts/build.xml 2008-10-14 19:13:09 UTC (rev 9312)
+++ trunk/seam-gen/icefaces/build-scripts/build.xml 2008-10-14 19:24:11 UTC (rev 9313)
@@ -28,13 +28,13 @@
<property name="javac.debug" value="true" />
<property name="javac.deprecation" value="false" />
<property name="debug" value="false" />
-
- <!--Properties for validating configuration files -->
- <property name="validate.resources.dir" value="${basedir}/exploded-archives" />
- <property name="schema.dir" value="${basedir}/exploded-archives/schemas" />
- <property name="src.schema.dir" value="${schema.dir}/org/jboss/seam"/>
- <property name="schema.version" value="@schemaVersion@" />
-
+
+ <!--Properties for validating configuration files -->
+ <property name="validate.resources.dir" value="${basedir}/exploded-archives" />
+ <property name="schema.dir" value="${basedir}/exploded-archives/schemas" />
+ <property name="src.schema.dir" value="${schema.dir}/org/jboss/seam"/>
+ <property name="schema.version" value="@schemaVersion@" />
+
<fileset id="lib" dir="${lib.dir}">
<include name="*.jar" />
</fileset>
@@ -44,7 +44,7 @@
</path>
<target name="init" description="Initialize the build">
- <taskdef name ="groovyc"
+ <taskdef name="groovyc"
classname ="org.codehaus.groovy.ant.Groovyc"
classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
<mkdir dir="${jar.dir}" />
@@ -57,9 +57,24 @@
<fileset dir="${src.action.dir}">
<include name="**/*.groovy"/>
</fileset>
+ <fileset dir="${src.model.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
</filepath>
</available>
- <!-- NOTE: Seam does not properly detect uncompiled groovy classes in an EAR -->
+ <condition property="groovy.test.present" value="true">
+ <or>
+ <isset property="groovy.present"/>
+ <available file="" searchparents="true">
+ <filepath>
+ <fileset dir="${src.test.dir}">
+ <include name="**/*.groovy"/>
+ </fileset>
+ </filepath>
+ </available>
+ </or>
+ </condition>
+ <!-- NOTE: Seam does not properly detect uncompiled groovy classes in an EAR -->
<condition property="groovy.dynamic" value="true">
<and>
<isset property="groovy.present"/>
@@ -114,10 +129,10 @@
description="Copy the classes that were compiled by eclipse"
if="eclipse.running">
<copy todir="${jar.dir}">
- <fileset dir="classes/model">
+ <fileset dir="classes/main">
<include name="**/*.class"/>
</fileset>
- <fileset dir="classes/action">
+ <fileset dir="classes/hot">
<include name="**/*.class"/>
</fileset>
</copy>
@@ -168,10 +183,10 @@
</copy>
<copy todir="${war.dir}/WEB-INF/lib">
<fileset dir="${lib.dir}">
- <includesfile name="deployed-jars-war.list" />
- <exclude name="jboss-seam-gen.jar" />
- </fileset>
- </copy>
+ <includesfile name="deployed-jars-war.list" />
+ <exclude name="jboss-seam-gen.jar" />
+ </fileset>
+ </copy>
<copy todir="${war.dir}/WEB-INF/classes">
<fileset dir="${basedir}/resources">
<include name="messages*.properties"/>
@@ -194,7 +209,7 @@
<copy todir="${ear.dir}/lib">
<fileset dir="${lib.dir}">
<includesfile name="deployed-jars-ear.list" />
- <exclude name="icefaces-ahs.jar"/>
+ <exclude name="icefaces-ahs.jar"/>
</fileset>
</copy>
<copy todir="${ear.dir}/META-INF">
@@ -266,16 +281,16 @@
</target>
<target name="restart-exploded" unless="archive.deployed" description="Deploy exploded archive if not deployed as packaged archive">
- <antcall target="explode"/>
- <touch file="${ear.deploy.dir}/META-INF/application.xml"/>
+ <antcall target="explode"/>
+ <touch file="${ear.deploy.dir}/META-INF/application.xml"/>
</target>
<target name="restart-deployed" if="archive.deployed" description="Deploy packaged archive if deployed as packaged archive">
- <antcall target="deploy"/>
+ <antcall target="deploy"/>
</target>
<target name="restart" depends="check-deployed,restart-exploded,restart-deployed" description="Restart the exploded archive"/>
-
+
<target name="deploy" depends="archive,datasource" description="Deploy the packaged archive">
<fail unless="jboss.home">jboss.home not set</fail>
<copy todir="${deploy.dir}" file="${dist.dir}/${project.name}.ear" />
@@ -295,7 +310,7 @@
<delete dir="${ear.dir}"/>
<delete dir="${war.dir}"/>
<delete dir="${jar.dir}"/>
- <delete dir="${src.schema.dir}" failonerror="no"/>
+ <delete dir="${src.schema.dir}" failonerror="no"/>
<delete dir="${basedir}/test-report"/>
<delete dir="${basedir}/test-output"/>
<delete failonerror="no" includeemptydirs="true">
@@ -305,7 +320,7 @@
</delete>
</target>
- <target name="compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
+ <target name="compiletest" depends="groovy.compiletest" unless="eclipse.running" description="Compile the Java source code for the tests">
<mkdir dir="${test.dir}"/>
<javac classpathref="build.classpath"
destdir="${test.dir}"
@@ -317,16 +332,26 @@
<src path="${src.test.dir}" />
</javac>
</target>
+
+ <target name="groovy.compiletest" if="groovy.test.present" description="Compile the Groovy source code for the tests">
+ <mkdir dir="${test.dir}"/>
+ <groovyc classpathref="build.classpath"
+ destdir="${test.dir}">
+ <src path="${src.action.dir}"/>
+ <src path="${src.model.dir}"/>
+ <src path="${src.test.dir}"/>
+ </groovyc>
+ </target>
<target name="copytestclasses" if="eclipse.running" description="Copy classes compiled by eclipse to the test dir">
<mkdir dir="${test.dir}"/>
<copy todir="${test.dir}">
- <fileset dir="classes/model">
+ <fileset dir="classes/main">
<include name="**/*.class"/>
</fileset>
</copy>
<copy todir="${test.dir}">
- <fileset dir="classes/action">
+ <fileset dir="classes/hot">
<include name="**/*.class"/>
</fileset>
</copy>
@@ -337,7 +362,7 @@
</copy>
</target>
- <target name="buildtest" depends="compiletest,copytestclasses" description="Build the tests">
+ <target name="buildtest" depends="init,compiletest,copytestclasses" description="Build the tests">
<copy todir="${test.dir}">
<fileset dir="${basedir}/resources">
<exclude name="META-INF/persistence*.xml"/>
@@ -365,20 +390,20 @@
<target name="test" depends="buildtest" description="Run the tests">
<taskdef resource="testngtasks" classpath="${testng.jar}" />
- <path id="test.path">
- <path path="${test.dir}" />
- <fileset dir="${lib.dir}/test">
- <include name="*.jar" />
- </fileset>
- <path path="${bootstrap.dir}" />
- <path refid="build.classpath" />
- </path>
- <testng outputdir="${basedir}/test-report">
- <jvmarg line="-Djava.endorsed.dirs=${endorsed.dir}"/>
- <jvmarg line="-Dsun.lang.ClassLoader.allowArraySyntax=true"/>
- <classpath refid="test.path" />
- <xmlfileset dir="${test.dir}" includes="*Test.xml" />
- </testng>
+ <path id="test.path">
+ <path path="${test.dir}" />
+ <fileset dir="${lib.dir}/test">
+ <include name="*.jar"/>
+ </fileset>
+ <path path="${bootstrap.dir}" />
+ <path refid="build.classpath" />
+ </path>
+ <testng outputdir="${basedir}/test-report">
+ <jvmarg line="-Djava.endorsed.dirs=${endorsed.dir}"/>
+ <jvmarg line="-Dsun.lang.ClassLoader.allowArraySyntax=true"/>
+ <classpath refid="test.path" />
+ <xmlfileset dir="${test.dir}" includes="*Test.xml" />
+ </testng>
</target>
<target name="javadoc" depends="compile">
@@ -395,36 +420,36 @@
</javadoc>
</target>
-
- <target name="validateConfiguration" depends="war,ear,jar" description="Validate the xml configuration files">
- <mkdir dir="${schema.dir}"/>
- <unjar src="${lib.dir}/jboss-seam.jar" dest="${schema.dir}">
- <patternset>
- <include name="org/jboss/seam/*.xsd"/>
- <include name="org/jboss/seam/*.dtd"/>
- </patternset>
- </unjar>
- <ant antfile="validate.xml" target="validateConfiguration" />
- </target>
+
+ <target name="validateConfiguration" depends="war,ear,jar" description="Validate the xml configuration files">
+ <mkdir dir="${schema.dir}"/>
+ <unjar src="${lib.dir}/jboss-seam.jar" dest="${schema.dir}">
+ <patternset>
+ <include name="org/jboss/seam/*.xsd"/>
+ <include name="org/jboss/seam/*.dtd"/>
+ </patternset>
+ </unjar>
+ <ant antfile="validate.xml" target="validateConfiguration" />
+ </target>
- <target name="freshen" description="grab fresh icefaces jars">
- <copy todir="${lib.dir}">
- <fileset dir="${icefaces.home}/lib">
- <include name="icefaces*.jar" />
- <include name="backport-util-concurrent.jar" />
- <include name="commons-fileupload.jar"/>
+ <target name="freshen" description="grab fresh icefaces jars">
+ <copy todir="${lib.dir}">
+ <fileset dir="${icefaces.home}/lib">
+ <include name="icefaces*.jar" />
+ <include name="backport-util-concurrent.jar" />
+ <include name="commons-fileupload.jar"/>
<include name="commons-digester.jar"/>
- <exclude name="icefaces-ahs.jar"/>
- </fileset>
- </copy>
- </target>
+ <exclude name="icefaces-ahs.jar"/>
+ </fileset>
+ </copy>
+ </target>
- <target name="purge" depends="undeploy" description="clean out jboss deployments of crashing applications">
- <delete dir="${jboss.home}/server/default/tmp/deploy" />
- <mkdir dir="${jboss.home}/server/default/tmp/deploy/" />
- <delete dir="${jboss.home}/server/default/tmp/sessions" />
- <mkdir dir="${jboss.home}/server/default/tmp/sessions" />
- <delete dir="${jboss.home}/server/default/work/jboss.web/localhost/${project.name}" />
- </target>
-
+ <target name="purge" depends="undeploy" description="clean out jboss deployments of crashing applications">
+ <delete dir="${jboss.home}/server/default/tmp/deploy" />
+ <mkdir dir="${jboss.home}/server/default/tmp/deploy/" />
+ <delete dir="${jboss.home}/server/default/tmp/sessions" />
+ <mkdir dir="${jboss.home}/server/default/tmp/sessions" />
+ <delete dir="${jboss.home}/server/default/work/jboss.web/localhost/${project.name}" />
+ </target>
+
</project>
Modified: trunk/seam-gen/view/list.xhtml
===================================================================
--- trunk/seam-gen/view/list.xhtml 2008-10-14 19:13:09 UTC (rev 9312)
+++ trunk/seam-gen/view/list.xhtml 2008-10-14 19:24:11 UTC (rev 9313)
@@ -29,6 +29,7 @@
<f:facet name="header">Name</f:facet>
<s:link id="@componentName@"
value="#{@componentName@.name}"
+ propagation="none"
view="/@pageName@.xhtml">
<f:param name="@componentName@Id"
value="#{@componentName@.id}"/>
Modified: trunk/seam-gen/view/list.xhtml.ftl
===================================================================
--- trunk/seam-gen/view/list.xhtml.ftl 2008-10-14 19:13:09 UTC (rev 9312)
+++ trunk/seam-gen/view/list.xhtml.ftl 2008-10-14 19:24:11 UTC (rev 9313)
@@ -128,6 +128,7 @@
<f:facet name="header">Action</f:facet>
<s:link view="/${'#'}{empty from ? '${pageName}' : from}.xhtml"
value="${'#'}{empty from ? 'View' : 'Select'}"
+ propagation="${'#'}{empty from ? 'none' : 'default'}"
id="${componentName}">
<#if pojo.isComponent(pojo.identifierProperty)>
<#foreach componentProperty in pojo.identifierProperty.value.propertyIterator>
@@ -183,6 +184,7 @@
<s:div styleClass="actionButtons" rendered="${'#'}{empty from}">
<s:button view="/${editPageName}.xhtml"
id="create"
+ propagation="none"
value="Create ${componentName}">
<#assign idName = componentName + pojo.identifierProperty.name?cap_first>
<#if c2j.isComponent(pojo.identifierProperty)>
16 years, 1 month
Seam SVN: r9312 - trunk/doc/Seam_Reference_Guide/fr-FR.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-10-14 15:13:09 -0400 (Tue, 14 Oct 2008)
New Revision: 9312
Modified:
trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
Log:
minor
Modified: trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
===================================================================
--- trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 17:29:00 UTC (rev 9311)
+++ trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 19:13:09 UTC (rev 9312)
@@ -1009,7 +1009,7 @@
#: Annotations.xml:863
#, no-c-format
msgid "\"Ends\" a jBPM task. Specifies that a long-running conversation ends when this method returns a non-null outcome, and that the current task is complete. Triggers a jBPM transition. The actual transition triggered will be the default transition unless the application has called <literal>Transition.setName()</literal> on the built-in component named <literal>transition</literal>."
-msgstr "Termine une tache JBPM. Spécifie qu'une conversation longue termine si la méthode ainsi annotée renvoie un résultat non null sans lever d'exception, spécifie aussi que la tâche courante a été complétée. Ceci déclanche alors une transition JBPM. La transition déclanchée sera alors la transition par défaut à moins que l'application n'ait invoqué <literal>Transition.setName()</literal> sur le composant intégré dont le nom est <literal>transition<Literal>."
+msgstr "Termine une tache JBPM. Spécifie qu'une conversation longue termine si la méthode ainsi annotée renvoie un résultat non null sans lever d'exception, spécifie aussi que la tâche courante a été complétée. Ceci déclanche alors une transition JBPM. La transition déclanchée sera alors la transition par défaut à moins que l'application n'ait invoqué <literal>Transition.setName()</literal> sur le composant intégré dont le nom est <literal>transition</literal>."
#. Tag: programlisting
#: Annotations.xml:872
16 years, 1 month
Seam SVN: r9311 - trunk/doc/Seam_Reference_Guide/fr-FR.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-10-14 13:29:00 -0400 (Tue, 14 Oct 2008)
New Revision: 9311
Modified:
trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
Log:
Fix another bug
Modified: trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
===================================================================
--- trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 17:11:33 UTC (rev 9310)
+++ trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 17:29:00 UTC (rev 9311)
@@ -960,7 +960,7 @@
#: Annotations.xml:779
#, no-c-format
msgid "The jBPM <literal>TaskInstance</literal> will be available in a request context variable named <literal>taskInstance</literal>. The jPBM <literal>ProcessInstance</literal> will be available in a request context variable named <literal>processInstance</literal>. (Of course, these objects are available for injection via <literal>@In</literal>.)"
-msgstr "La <literal>TaskInstance</literal> JBPM sera disponible dans le context de requète comme une variable dont le nom sera <literal>taskInstance</jbpm>. Le <literal>ProcessInstance</literal> sera disponible dans le contexte de requète comme une variable dont le nom sera <literal>processInstance</literal>. (Bien sûr ces objets peuvent être dynamiquement injectés via l'annotation <literal>@In</literal>.) "
+msgstr "La <literal>TaskInstance</literal> JBPM sera disponible dans le context de requète comme une variable dont le nom sera <literal>taskInstance</literal>. Le <literal>ProcessInstance</literal> sera disponible dans le contexte de requète comme une variable dont le nom sera <literal>processInstance</literal>. (Bien sûr ces objets peuvent être dynamiquement injectés via l'annotation <literal>@In</literal>.) "
#. Tag: para
#: Annotations.xml:791
16 years, 1 month
Seam SVN: r9310 - in trunk: doc/Seam_Reference_Guide/fr-FR and 1 other directory.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-10-14 13:11:33 -0400 (Tue, 14 Oct 2008)
New Revision: 9310
Modified:
trunk/build/ci.build.xml
trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
Log:
Fix error in translation, add french build to publish
Modified: trunk/build/ci.build.xml
===================================================================
--- trunk/build/ci.build.xml 2008-10-14 16:06:49 UTC (rev 9309)
+++ trunk/build/ci.build.xml 2008-10-14 17:11:33 UTC (rev 9310)
@@ -80,7 +80,8 @@
<artifact:deploy uniqueVersion="false" file="${docs.pom}" settingsFile="${maven.settings.xml}">
<pom file="${docs.pom}" settingsFile="${maven.settings.xml}"/>
<remoteRepository refId="snapshots.jboss.org" />
- <attach file="${doc.ref.dir}/target/docbook/publish/en-US/pdf/seam_reference.pdf" classifier="pdf" type="pdf" />
+ <attach file="${doc.ref.dir}/target/docbook/publish/en-US/pdf/seam_reference.pdf" classifier="en-US" type="pdf" />
+ <attach file="${doc.ref.dir}/target/docbook/publish/fr-FR/pdf/seam_reference.pdf" classifier="fr-FR" type="pdf" />
</artifact:deploy>
</target>
Modified: trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
===================================================================
--- trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 16:06:49 UTC (rev 9309)
+++ trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po 2008-10-14 17:11:33 UTC (rev 9310)
@@ -627,7 +627,7 @@
#: Annotations.xml:472
#, no-c-format
msgid "Specifies that the method of the component is used to initialize the value of the named context variable, when the context variable has no value. This style is used with methods that return <literal>void</literal>."
-msgstr "Spécifie que la méthode annotée du composant sera invoquée pour initialiser la valeur de la variable de contexte quand celle-ci n'a pas encore de valeur. Ce style est utilisée avec des méthodes ne renvoyant aucune valeur (type de retour <litteral>void</literal>)."
+msgstr "Spécifie que la méthode annotée du composant sera invoquée pour initialiser la valeur de la variable de contexte quand celle-ci n'a pas encore de valeur. Ce style est utilisée avec des méthodes ne renvoyant aucune valeur (type de retour <literal>void</literal>)."
#. Tag: programlisting
#: Annotations.xml:478
16 years, 1 month
Seam SVN: r9309 - trunk/examples/icefaces.
by seam-commits@lists.jboss.org
Author: jguglielmin
Date: 2008-10-14 12:06:49 -0400 (Tue, 14 Oct 2008)
New Revision: 9309
Modified:
trunk/examples/icefaces/build.xml
Log:
update ICEfaces version to 1.7.2 JBSEAM-3540
Modified: trunk/examples/icefaces/build.xml
===================================================================
--- trunk/examples/icefaces/build.xml 2008-10-14 16:06:01 UTC (rev 9308)
+++ trunk/examples/icefaces/build.xml 2008-10-14 16:06:49 UTC (rev 9309)
@@ -26,13 +26,13 @@
<target name="copyextradependencies">
<artifact:dependencies filesetId="icefaces.fileset" versionsId="icefaces.versions">
- <dependency groupId="org.icefaces" artifactId="icefaces" version="1.7.1">
+ <dependency groupId="org.icefaces" artifactId="icefaces" version="1.7.2">
<exclusion groupId="javax.el" artifactId="el-api" />
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.7.1">
+ <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.7.2">
<exclusion groupId="javax.el" artifactId="el-api" />
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.7.1">
+ <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.7.2">
<exclusion groupId="javax.el" artifactId="el-api" />
</dependency>
<remoteRepository refId="repository.jboss.org" />
16 years, 1 month
Seam SVN: r9308 - trunk/seam-gen.
by seam-commits@lists.jboss.org
Author: jguglielmin
Date: 2008-10-14 12:06:01 -0400 (Tue, 14 Oct 2008)
New Revision: 9308
Modified:
trunk/seam-gen/build.xml
Log:
update ICEfaces version to 1.7.2 JBSEAM-3540
Modified: trunk/seam-gen/build.xml
===================================================================
--- trunk/seam-gen/build.xml 2008-10-14 13:27:31 UTC (rev 9307)
+++ trunk/seam-gen/build.xml 2008-10-14 16:06:01 UTC (rev 9308)
@@ -628,13 +628,13 @@
<target name="copy-icefaces-maven" if="icefaces.property" unless="icefaces.lib.property">
<artifact:dependencies filesetId="icefaces.fileset" versionsId="icefaces.versions">
- <dependency groupId="org.icefaces" artifactId="icefaces" version="1.7.1">
+ <dependency groupId="org.icefaces" artifactId="icefaces" version="1.7.2">
<exclusion groupId="javax.el" artifactId="el-api"/>
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.7.1">
+ <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.7.2">
<exclusion groupId="javax.el" artifactId="el-api"/>
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.7.1">
+ <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.7.2">
<exclusion groupId="javax.el" artifactId="el-api"/>
</dependency>
<remoteRepository refId="repository.jboss.org"/>
16 years, 1 month
Seam SVN: r9307 - in trunk/doc/Seam_Reference_Guide: bn-IN and 21 other directories.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-10-14 09:27:31 -0400 (Tue, 14 Oct 2008)
New Revision: 9307
Modified:
trunk/doc/Seam_Reference_Guide/as-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/as-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/as-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/as-IN/Cache.po
trunk/doc/Seam_Reference_Guide/as-IN/Components.po
trunk/doc/Seam_Reference_Guide/as-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/as-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/as-IN/Controls.po
trunk/doc/Seam_Reference_Guide/as-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/as-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/as-IN/Drools.po
trunk/doc/Seam_Reference_Guide/as-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/as-IN/Events.po
trunk/doc/Seam_Reference_Guide/as-IN/Excel.po
trunk/doc/Seam_Reference_Guide/as-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/as-IN/Framework.po
trunk/doc/Seam_Reference_Guide/as-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/as-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/as-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/as-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/as-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/as-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/as-IN/I18n.po
trunk/doc/Seam_Reference_Guide/as-IN/Itext.po
trunk/doc/Seam_Reference_Guide/as-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/as-IN/Jms.po
trunk/doc/Seam_Reference_Guide/as-IN/Mail.po
trunk/doc/Seam_Reference_Guide/as-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/as-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/as-IN/Preface.po
trunk/doc/Seam_Reference_Guide/as-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/as-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/as-IN/Rss.po
trunk/doc/Seam_Reference_Guide/as-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/as-IN/Security.po
trunk/doc/Seam_Reference_Guide/as-IN/Spring.po
trunk/doc/Seam_Reference_Guide/as-IN/Testing.po
trunk/doc/Seam_Reference_Guide/as-IN/Text.po
trunk/doc/Seam_Reference_Guide/as-IN/Tools.po
trunk/doc/Seam_Reference_Guide/as-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/as-IN/Validation.po
trunk/doc/Seam_Reference_Guide/as-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/as-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/as-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/as-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/as-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/as-IN/Xml.po
trunk/doc/Seam_Reference_Guide/as-IN/master.po
trunk/doc/Seam_Reference_Guide/bn-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/bn-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/bn-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/bn-IN/Cache.po
trunk/doc/Seam_Reference_Guide/bn-IN/Components.po
trunk/doc/Seam_Reference_Guide/bn-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/bn-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/bn-IN/Controls.po
trunk/doc/Seam_Reference_Guide/bn-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/bn-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/bn-IN/Drools.po
trunk/doc/Seam_Reference_Guide/bn-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/bn-IN/Events.po
trunk/doc/Seam_Reference_Guide/bn-IN/Excel.po
trunk/doc/Seam_Reference_Guide/bn-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/bn-IN/Framework.po
trunk/doc/Seam_Reference_Guide/bn-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/bn-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/bn-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/bn-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/bn-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/bn-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/bn-IN/I18n.po
trunk/doc/Seam_Reference_Guide/bn-IN/Itext.po
trunk/doc/Seam_Reference_Guide/bn-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/bn-IN/Jms.po
trunk/doc/Seam_Reference_Guide/bn-IN/Mail.po
trunk/doc/Seam_Reference_Guide/bn-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/bn-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/bn-IN/Preface.po
trunk/doc/Seam_Reference_Guide/bn-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/bn-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/bn-IN/Rss.po
trunk/doc/Seam_Reference_Guide/bn-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/bn-IN/Security.po
trunk/doc/Seam_Reference_Guide/bn-IN/Spring.po
trunk/doc/Seam_Reference_Guide/bn-IN/Testing.po
trunk/doc/Seam_Reference_Guide/bn-IN/Text.po
trunk/doc/Seam_Reference_Guide/bn-IN/Tools.po
trunk/doc/Seam_Reference_Guide/bn-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/bn-IN/Validation.po
trunk/doc/Seam_Reference_Guide/bn-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/bn-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/bn-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/bn-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/bn-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/bn-IN/Xml.po
trunk/doc/Seam_Reference_Guide/bn-IN/master.po
trunk/doc/Seam_Reference_Guide/de-DE/Annotations.po
trunk/doc/Seam_Reference_Guide/de-DE/Author_Group.po
trunk/doc/Seam_Reference_Guide/de-DE/Book_Info.po
trunk/doc/Seam_Reference_Guide/de-DE/Cache.po
trunk/doc/Seam_Reference_Guide/de-DE/Components.po
trunk/doc/Seam_Reference_Guide/de-DE/Concepts.po
trunk/doc/Seam_Reference_Guide/de-DE/Configuration.po
trunk/doc/Seam_Reference_Guide/de-DE/Controls.po
trunk/doc/Seam_Reference_Guide/de-DE/Conversations.po
trunk/doc/Seam_Reference_Guide/de-DE/Dependencies.po
trunk/doc/Seam_Reference_Guide/de-DE/Drools.po
trunk/doc/Seam_Reference_Guide/de-DE/Elenhancements.po
trunk/doc/Seam_Reference_Guide/de-DE/Events.po
trunk/doc/Seam_Reference_Guide/de-DE/Excel.po
trunk/doc/Seam_Reference_Guide/de-DE/Feedback.po
trunk/doc/Seam_Reference_Guide/de-DE/Framework.po
trunk/doc/Seam_Reference_Guide/de-DE/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/de-DE/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/de-DE/Glassfish.po
trunk/doc/Seam_Reference_Guide/de-DE/Groovy.po
trunk/doc/Seam_Reference_Guide/de-DE/Gwt.po
trunk/doc/Seam_Reference_Guide/de-DE/Hsearch.po
trunk/doc/Seam_Reference_Guide/de-DE/I18n.po
trunk/doc/Seam_Reference_Guide/de-DE/Itext.po
trunk/doc/Seam_Reference_Guide/de-DE/Jbpm.po
trunk/doc/Seam_Reference_Guide/de-DE/Jms.po
trunk/doc/Seam_Reference_Guide/de-DE/Mail.po
trunk/doc/Seam_Reference_Guide/de-DE/Oc4j.po
trunk/doc/Seam_Reference_Guide/de-DE/Persistence.po
trunk/doc/Seam_Reference_Guide/de-DE/Preface.po
trunk/doc/Seam_Reference_Guide/de-DE/Remoting.po
trunk/doc/Seam_Reference_Guide/de-DE/Revision_History.po
trunk/doc/Seam_Reference_Guide/de-DE/Rss.po
trunk/doc/Seam_Reference_Guide/de-DE/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/de-DE/Security.po
trunk/doc/Seam_Reference_Guide/de-DE/Spring.po
trunk/doc/Seam_Reference_Guide/de-DE/Testing.po
trunk/doc/Seam_Reference_Guide/de-DE/Text.po
trunk/doc/Seam_Reference_Guide/de-DE/Tools.po
trunk/doc/Seam_Reference_Guide/de-DE/Tutorial.po
trunk/doc/Seam_Reference_Guide/de-DE/Validation.po
trunk/doc/Seam_Reference_Guide/de-DE/Version_Info.po
trunk/doc/Seam_Reference_Guide/de-DE/Weblogic.po
trunk/doc/Seam_Reference_Guide/de-DE/Webservices.po
trunk/doc/Seam_Reference_Guide/de-DE/Websphere.po
trunk/doc/Seam_Reference_Guide/de-DE/Wicket.po
trunk/doc/Seam_Reference_Guide/de-DE/Xml.po
trunk/doc/Seam_Reference_Guide/de-DE/master.po
trunk/doc/Seam_Reference_Guide/es-ES/Annotations.po
trunk/doc/Seam_Reference_Guide/es-ES/Author_Group.po
trunk/doc/Seam_Reference_Guide/es-ES/Book_Info.po
trunk/doc/Seam_Reference_Guide/es-ES/Cache.po
trunk/doc/Seam_Reference_Guide/es-ES/Components.po
trunk/doc/Seam_Reference_Guide/es-ES/Concepts.po
trunk/doc/Seam_Reference_Guide/es-ES/Configuration.po
trunk/doc/Seam_Reference_Guide/es-ES/Controls.po
trunk/doc/Seam_Reference_Guide/es-ES/Conversations.po
trunk/doc/Seam_Reference_Guide/es-ES/Dependencies.po
trunk/doc/Seam_Reference_Guide/es-ES/Drools.po
trunk/doc/Seam_Reference_Guide/es-ES/Elenhancements.po
trunk/doc/Seam_Reference_Guide/es-ES/Events.po
trunk/doc/Seam_Reference_Guide/es-ES/Excel.po
trunk/doc/Seam_Reference_Guide/es-ES/Feedback.po
trunk/doc/Seam_Reference_Guide/es-ES/Framework.po
trunk/doc/Seam_Reference_Guide/es-ES/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/es-ES/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/es-ES/Glassfish.po
trunk/doc/Seam_Reference_Guide/es-ES/Groovy.po
trunk/doc/Seam_Reference_Guide/es-ES/Gwt.po
trunk/doc/Seam_Reference_Guide/es-ES/Hsearch.po
trunk/doc/Seam_Reference_Guide/es-ES/I18n.po
trunk/doc/Seam_Reference_Guide/es-ES/Itext.po
trunk/doc/Seam_Reference_Guide/es-ES/Jbpm.po
trunk/doc/Seam_Reference_Guide/es-ES/Jms.po
trunk/doc/Seam_Reference_Guide/es-ES/Mail.po
trunk/doc/Seam_Reference_Guide/es-ES/Oc4j.po
trunk/doc/Seam_Reference_Guide/es-ES/Persistence.po
trunk/doc/Seam_Reference_Guide/es-ES/Preface.po
trunk/doc/Seam_Reference_Guide/es-ES/Remoting.po
trunk/doc/Seam_Reference_Guide/es-ES/Revision_History.po
trunk/doc/Seam_Reference_Guide/es-ES/Rss.po
trunk/doc/Seam_Reference_Guide/es-ES/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/es-ES/Security.po
trunk/doc/Seam_Reference_Guide/es-ES/Spring.po
trunk/doc/Seam_Reference_Guide/es-ES/Testing.po
trunk/doc/Seam_Reference_Guide/es-ES/Text.po
trunk/doc/Seam_Reference_Guide/es-ES/Tools.po
trunk/doc/Seam_Reference_Guide/es-ES/Tutorial.po
trunk/doc/Seam_Reference_Guide/es-ES/Validation.po
trunk/doc/Seam_Reference_Guide/es-ES/Version_Info.po
trunk/doc/Seam_Reference_Guide/es-ES/Weblogic.po
trunk/doc/Seam_Reference_Guide/es-ES/Webservices.po
trunk/doc/Seam_Reference_Guide/es-ES/Websphere.po
trunk/doc/Seam_Reference_Guide/es-ES/Wicket.po
trunk/doc/Seam_Reference_Guide/es-ES/Xml.po
trunk/doc/Seam_Reference_Guide/es-ES/master.po
trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
trunk/doc/Seam_Reference_Guide/fr-FR/Author_Group.po
trunk/doc/Seam_Reference_Guide/fr-FR/Book_Info.po
trunk/doc/Seam_Reference_Guide/fr-FR/Cache.po
trunk/doc/Seam_Reference_Guide/fr-FR/Components.po
trunk/doc/Seam_Reference_Guide/fr-FR/Concepts.po
trunk/doc/Seam_Reference_Guide/fr-FR/Configuration.po
trunk/doc/Seam_Reference_Guide/fr-FR/Controls.po
trunk/doc/Seam_Reference_Guide/fr-FR/Conversations.po
trunk/doc/Seam_Reference_Guide/fr-FR/Dependencies.po
trunk/doc/Seam_Reference_Guide/fr-FR/Drools.po
trunk/doc/Seam_Reference_Guide/fr-FR/Elenhancements.po
trunk/doc/Seam_Reference_Guide/fr-FR/Events.po
trunk/doc/Seam_Reference_Guide/fr-FR/Excel.po
trunk/doc/Seam_Reference_Guide/fr-FR/Feedback.po
trunk/doc/Seam_Reference_Guide/fr-FR/Framework.po
trunk/doc/Seam_Reference_Guide/fr-FR/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/fr-FR/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/fr-FR/Glassfish.po
trunk/doc/Seam_Reference_Guide/fr-FR/Groovy.po
trunk/doc/Seam_Reference_Guide/fr-FR/Gwt.po
trunk/doc/Seam_Reference_Guide/fr-FR/Hsearch.po
trunk/doc/Seam_Reference_Guide/fr-FR/I18n.po
trunk/doc/Seam_Reference_Guide/fr-FR/Itext.po
trunk/doc/Seam_Reference_Guide/fr-FR/Jbpm.po
trunk/doc/Seam_Reference_Guide/fr-FR/Jms.po
trunk/doc/Seam_Reference_Guide/fr-FR/Mail.po
trunk/doc/Seam_Reference_Guide/fr-FR/Oc4j.po
trunk/doc/Seam_Reference_Guide/fr-FR/Persistence.po
trunk/doc/Seam_Reference_Guide/fr-FR/Preface.po
trunk/doc/Seam_Reference_Guide/fr-FR/Remoting.po
trunk/doc/Seam_Reference_Guide/fr-FR/Revision_History.po
trunk/doc/Seam_Reference_Guide/fr-FR/Rss.po
trunk/doc/Seam_Reference_Guide/fr-FR/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/fr-FR/Security.po
trunk/doc/Seam_Reference_Guide/fr-FR/Spring.po
trunk/doc/Seam_Reference_Guide/fr-FR/Testing.po
trunk/doc/Seam_Reference_Guide/fr-FR/Text.po
trunk/doc/Seam_Reference_Guide/fr-FR/Tools.po
trunk/doc/Seam_Reference_Guide/fr-FR/Tutorial.po
trunk/doc/Seam_Reference_Guide/fr-FR/Validation.po
trunk/doc/Seam_Reference_Guide/fr-FR/Version_Info.po
trunk/doc/Seam_Reference_Guide/fr-FR/Weblogic.po
trunk/doc/Seam_Reference_Guide/fr-FR/Webservices.po
trunk/doc/Seam_Reference_Guide/fr-FR/Websphere.po
trunk/doc/Seam_Reference_Guide/fr-FR/Wicket.po
trunk/doc/Seam_Reference_Guide/fr-FR/Xml.po
trunk/doc/Seam_Reference_Guide/fr-FR/master.po
trunk/doc/Seam_Reference_Guide/gu-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/gu-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/gu-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/gu-IN/Cache.po
trunk/doc/Seam_Reference_Guide/gu-IN/Components.po
trunk/doc/Seam_Reference_Guide/gu-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/gu-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/gu-IN/Controls.po
trunk/doc/Seam_Reference_Guide/gu-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/gu-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/gu-IN/Drools.po
trunk/doc/Seam_Reference_Guide/gu-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/gu-IN/Events.po
trunk/doc/Seam_Reference_Guide/gu-IN/Excel.po
trunk/doc/Seam_Reference_Guide/gu-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/gu-IN/Framework.po
trunk/doc/Seam_Reference_Guide/gu-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/gu-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/gu-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/gu-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/gu-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/gu-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/gu-IN/I18n.po
trunk/doc/Seam_Reference_Guide/gu-IN/Itext.po
trunk/doc/Seam_Reference_Guide/gu-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/gu-IN/Jms.po
trunk/doc/Seam_Reference_Guide/gu-IN/Mail.po
trunk/doc/Seam_Reference_Guide/gu-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/gu-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/gu-IN/Preface.po
trunk/doc/Seam_Reference_Guide/gu-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/gu-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/gu-IN/Rss.po
trunk/doc/Seam_Reference_Guide/gu-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/gu-IN/Security.po
trunk/doc/Seam_Reference_Guide/gu-IN/Spring.po
trunk/doc/Seam_Reference_Guide/gu-IN/Testing.po
trunk/doc/Seam_Reference_Guide/gu-IN/Text.po
trunk/doc/Seam_Reference_Guide/gu-IN/Tools.po
trunk/doc/Seam_Reference_Guide/gu-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/gu-IN/Validation.po
trunk/doc/Seam_Reference_Guide/gu-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/gu-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/gu-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/gu-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/gu-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/gu-IN/Xml.po
trunk/doc/Seam_Reference_Guide/gu-IN/master.po
trunk/doc/Seam_Reference_Guide/hi-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/hi-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/hi-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/hi-IN/Cache.po
trunk/doc/Seam_Reference_Guide/hi-IN/Components.po
trunk/doc/Seam_Reference_Guide/hi-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/hi-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/hi-IN/Controls.po
trunk/doc/Seam_Reference_Guide/hi-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/hi-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/hi-IN/Drools.po
trunk/doc/Seam_Reference_Guide/hi-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/hi-IN/Events.po
trunk/doc/Seam_Reference_Guide/hi-IN/Excel.po
trunk/doc/Seam_Reference_Guide/hi-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/hi-IN/Framework.po
trunk/doc/Seam_Reference_Guide/hi-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/hi-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/hi-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/hi-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/hi-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/hi-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/hi-IN/I18n.po
trunk/doc/Seam_Reference_Guide/hi-IN/Itext.po
trunk/doc/Seam_Reference_Guide/hi-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/hi-IN/Jms.po
trunk/doc/Seam_Reference_Guide/hi-IN/Mail.po
trunk/doc/Seam_Reference_Guide/hi-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/hi-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/hi-IN/Preface.po
trunk/doc/Seam_Reference_Guide/hi-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/hi-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/hi-IN/Rss.po
trunk/doc/Seam_Reference_Guide/hi-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/hi-IN/Security.po
trunk/doc/Seam_Reference_Guide/hi-IN/Spring.po
trunk/doc/Seam_Reference_Guide/hi-IN/Testing.po
trunk/doc/Seam_Reference_Guide/hi-IN/Text.po
trunk/doc/Seam_Reference_Guide/hi-IN/Tools.po
trunk/doc/Seam_Reference_Guide/hi-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/hi-IN/Validation.po
trunk/doc/Seam_Reference_Guide/hi-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/hi-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/hi-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/hi-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/hi-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/hi-IN/Xml.po
trunk/doc/Seam_Reference_Guide/hi-IN/master.po
trunk/doc/Seam_Reference_Guide/it-IT/Annotations.po
trunk/doc/Seam_Reference_Guide/it-IT/Author_Group.po
trunk/doc/Seam_Reference_Guide/it-IT/Book_Info.po
trunk/doc/Seam_Reference_Guide/it-IT/Cache.po
trunk/doc/Seam_Reference_Guide/it-IT/Components.po
trunk/doc/Seam_Reference_Guide/it-IT/Concepts.po
trunk/doc/Seam_Reference_Guide/it-IT/Configuration.po
trunk/doc/Seam_Reference_Guide/it-IT/Controls.po
trunk/doc/Seam_Reference_Guide/it-IT/Conversations.po
trunk/doc/Seam_Reference_Guide/it-IT/Dependencies.po
trunk/doc/Seam_Reference_Guide/it-IT/Drools.po
trunk/doc/Seam_Reference_Guide/it-IT/Elenhancements.po
trunk/doc/Seam_Reference_Guide/it-IT/Events.po
trunk/doc/Seam_Reference_Guide/it-IT/Excel.po
trunk/doc/Seam_Reference_Guide/it-IT/Feedback.po
trunk/doc/Seam_Reference_Guide/it-IT/Framework.po
trunk/doc/Seam_Reference_Guide/it-IT/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/it-IT/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/it-IT/Glassfish.po
trunk/doc/Seam_Reference_Guide/it-IT/Groovy.po
trunk/doc/Seam_Reference_Guide/it-IT/Gwt.po
trunk/doc/Seam_Reference_Guide/it-IT/Hsearch.po
trunk/doc/Seam_Reference_Guide/it-IT/I18n.po
trunk/doc/Seam_Reference_Guide/it-IT/Itext.po
trunk/doc/Seam_Reference_Guide/it-IT/Jbpm.po
trunk/doc/Seam_Reference_Guide/it-IT/Jms.po
trunk/doc/Seam_Reference_Guide/it-IT/Mail.po
trunk/doc/Seam_Reference_Guide/it-IT/Oc4j.po
trunk/doc/Seam_Reference_Guide/it-IT/Persistence.po
trunk/doc/Seam_Reference_Guide/it-IT/Preface.po
trunk/doc/Seam_Reference_Guide/it-IT/Remoting.po
trunk/doc/Seam_Reference_Guide/it-IT/Revision_History.po
trunk/doc/Seam_Reference_Guide/it-IT/Rss.po
trunk/doc/Seam_Reference_Guide/it-IT/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/it-IT/Security.po
trunk/doc/Seam_Reference_Guide/it-IT/Spring.po
trunk/doc/Seam_Reference_Guide/it-IT/Testing.po
trunk/doc/Seam_Reference_Guide/it-IT/Text.po
trunk/doc/Seam_Reference_Guide/it-IT/Tools.po
trunk/doc/Seam_Reference_Guide/it-IT/Tutorial.po
trunk/doc/Seam_Reference_Guide/it-IT/Validation.po
trunk/doc/Seam_Reference_Guide/it-IT/Version_Info.po
trunk/doc/Seam_Reference_Guide/it-IT/Weblogic.po
trunk/doc/Seam_Reference_Guide/it-IT/Webservices.po
trunk/doc/Seam_Reference_Guide/it-IT/Websphere.po
trunk/doc/Seam_Reference_Guide/it-IT/Wicket.po
trunk/doc/Seam_Reference_Guide/it-IT/Xml.po
trunk/doc/Seam_Reference_Guide/it-IT/master.po
trunk/doc/Seam_Reference_Guide/ja-JP/Annotations.po
trunk/doc/Seam_Reference_Guide/ja-JP/Author_Group.po
trunk/doc/Seam_Reference_Guide/ja-JP/Book_Info.po
trunk/doc/Seam_Reference_Guide/ja-JP/Cache.po
trunk/doc/Seam_Reference_Guide/ja-JP/Components.po
trunk/doc/Seam_Reference_Guide/ja-JP/Concepts.po
trunk/doc/Seam_Reference_Guide/ja-JP/Configuration.po
trunk/doc/Seam_Reference_Guide/ja-JP/Controls.po
trunk/doc/Seam_Reference_Guide/ja-JP/Conversations.po
trunk/doc/Seam_Reference_Guide/ja-JP/Dependencies.po
trunk/doc/Seam_Reference_Guide/ja-JP/Drools.po
trunk/doc/Seam_Reference_Guide/ja-JP/Elenhancements.po
trunk/doc/Seam_Reference_Guide/ja-JP/Events.po
trunk/doc/Seam_Reference_Guide/ja-JP/Excel.po
trunk/doc/Seam_Reference_Guide/ja-JP/Feedback.po
trunk/doc/Seam_Reference_Guide/ja-JP/Framework.po
trunk/doc/Seam_Reference_Guide/ja-JP/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/ja-JP/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/ja-JP/Glassfish.po
trunk/doc/Seam_Reference_Guide/ja-JP/Groovy.po
trunk/doc/Seam_Reference_Guide/ja-JP/Gwt.po
trunk/doc/Seam_Reference_Guide/ja-JP/Hsearch.po
trunk/doc/Seam_Reference_Guide/ja-JP/I18n.po
trunk/doc/Seam_Reference_Guide/ja-JP/Itext.po
trunk/doc/Seam_Reference_Guide/ja-JP/Jbpm.po
trunk/doc/Seam_Reference_Guide/ja-JP/Jms.po
trunk/doc/Seam_Reference_Guide/ja-JP/Mail.po
trunk/doc/Seam_Reference_Guide/ja-JP/Oc4j.po
trunk/doc/Seam_Reference_Guide/ja-JP/Persistence.po
trunk/doc/Seam_Reference_Guide/ja-JP/Preface.po
trunk/doc/Seam_Reference_Guide/ja-JP/Remoting.po
trunk/doc/Seam_Reference_Guide/ja-JP/Revision_History.po
trunk/doc/Seam_Reference_Guide/ja-JP/Rss.po
trunk/doc/Seam_Reference_Guide/ja-JP/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/ja-JP/Security.po
trunk/doc/Seam_Reference_Guide/ja-JP/Spring.po
trunk/doc/Seam_Reference_Guide/ja-JP/Testing.po
trunk/doc/Seam_Reference_Guide/ja-JP/Text.po
trunk/doc/Seam_Reference_Guide/ja-JP/Tools.po
trunk/doc/Seam_Reference_Guide/ja-JP/Tutorial.po
trunk/doc/Seam_Reference_Guide/ja-JP/Validation.po
trunk/doc/Seam_Reference_Guide/ja-JP/Version_Info.po
trunk/doc/Seam_Reference_Guide/ja-JP/Weblogic.po
trunk/doc/Seam_Reference_Guide/ja-JP/Webservices.po
trunk/doc/Seam_Reference_Guide/ja-JP/Websphere.po
trunk/doc/Seam_Reference_Guide/ja-JP/Wicket.po
trunk/doc/Seam_Reference_Guide/ja-JP/Xml.po
trunk/doc/Seam_Reference_Guide/ja-JP/master.po
trunk/doc/Seam_Reference_Guide/kn-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/kn-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/kn-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/kn-IN/Cache.po
trunk/doc/Seam_Reference_Guide/kn-IN/Components.po
trunk/doc/Seam_Reference_Guide/kn-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/kn-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/kn-IN/Controls.po
trunk/doc/Seam_Reference_Guide/kn-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/kn-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/kn-IN/Drools.po
trunk/doc/Seam_Reference_Guide/kn-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/kn-IN/Events.po
trunk/doc/Seam_Reference_Guide/kn-IN/Excel.po
trunk/doc/Seam_Reference_Guide/kn-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/kn-IN/Framework.po
trunk/doc/Seam_Reference_Guide/kn-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/kn-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/kn-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/kn-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/kn-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/kn-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/kn-IN/I18n.po
trunk/doc/Seam_Reference_Guide/kn-IN/Itext.po
trunk/doc/Seam_Reference_Guide/kn-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/kn-IN/Jms.po
trunk/doc/Seam_Reference_Guide/kn-IN/Mail.po
trunk/doc/Seam_Reference_Guide/kn-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/kn-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/kn-IN/Preface.po
trunk/doc/Seam_Reference_Guide/kn-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/kn-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/kn-IN/Rss.po
trunk/doc/Seam_Reference_Guide/kn-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/kn-IN/Security.po
trunk/doc/Seam_Reference_Guide/kn-IN/Spring.po
trunk/doc/Seam_Reference_Guide/kn-IN/Testing.po
trunk/doc/Seam_Reference_Guide/kn-IN/Text.po
trunk/doc/Seam_Reference_Guide/kn-IN/Tools.po
trunk/doc/Seam_Reference_Guide/kn-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/kn-IN/Validation.po
trunk/doc/Seam_Reference_Guide/kn-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/kn-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/kn-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/kn-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/kn-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/kn-IN/Xml.po
trunk/doc/Seam_Reference_Guide/kn-IN/master.po
trunk/doc/Seam_Reference_Guide/ko-KR/Annotations.po
trunk/doc/Seam_Reference_Guide/ko-KR/Author_Group.po
trunk/doc/Seam_Reference_Guide/ko-KR/Book_Info.po
trunk/doc/Seam_Reference_Guide/ko-KR/Cache.po
trunk/doc/Seam_Reference_Guide/ko-KR/Components.po
trunk/doc/Seam_Reference_Guide/ko-KR/Concepts.po
trunk/doc/Seam_Reference_Guide/ko-KR/Configuration.po
trunk/doc/Seam_Reference_Guide/ko-KR/Controls.po
trunk/doc/Seam_Reference_Guide/ko-KR/Conversations.po
trunk/doc/Seam_Reference_Guide/ko-KR/Dependencies.po
trunk/doc/Seam_Reference_Guide/ko-KR/Drools.po
trunk/doc/Seam_Reference_Guide/ko-KR/Elenhancements.po
trunk/doc/Seam_Reference_Guide/ko-KR/Events.po
trunk/doc/Seam_Reference_Guide/ko-KR/Excel.po
trunk/doc/Seam_Reference_Guide/ko-KR/Feedback.po
trunk/doc/Seam_Reference_Guide/ko-KR/Framework.po
trunk/doc/Seam_Reference_Guide/ko-KR/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/ko-KR/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/ko-KR/Glassfish.po
trunk/doc/Seam_Reference_Guide/ko-KR/Groovy.po
trunk/doc/Seam_Reference_Guide/ko-KR/Gwt.po
trunk/doc/Seam_Reference_Guide/ko-KR/Hsearch.po
trunk/doc/Seam_Reference_Guide/ko-KR/I18n.po
trunk/doc/Seam_Reference_Guide/ko-KR/Itext.po
trunk/doc/Seam_Reference_Guide/ko-KR/Jbpm.po
trunk/doc/Seam_Reference_Guide/ko-KR/Jms.po
trunk/doc/Seam_Reference_Guide/ko-KR/Mail.po
trunk/doc/Seam_Reference_Guide/ko-KR/Oc4j.po
trunk/doc/Seam_Reference_Guide/ko-KR/Persistence.po
trunk/doc/Seam_Reference_Guide/ko-KR/Preface.po
trunk/doc/Seam_Reference_Guide/ko-KR/Remoting.po
trunk/doc/Seam_Reference_Guide/ko-KR/Revision_History.po
trunk/doc/Seam_Reference_Guide/ko-KR/Rss.po
trunk/doc/Seam_Reference_Guide/ko-KR/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/ko-KR/Security.po
trunk/doc/Seam_Reference_Guide/ko-KR/Spring.po
trunk/doc/Seam_Reference_Guide/ko-KR/Testing.po
trunk/doc/Seam_Reference_Guide/ko-KR/Text.po
trunk/doc/Seam_Reference_Guide/ko-KR/Tools.po
trunk/doc/Seam_Reference_Guide/ko-KR/Tutorial.po
trunk/doc/Seam_Reference_Guide/ko-KR/Validation.po
trunk/doc/Seam_Reference_Guide/ko-KR/Version_Info.po
trunk/doc/Seam_Reference_Guide/ko-KR/Weblogic.po
trunk/doc/Seam_Reference_Guide/ko-KR/Webservices.po
trunk/doc/Seam_Reference_Guide/ko-KR/Websphere.po
trunk/doc/Seam_Reference_Guide/ko-KR/Wicket.po
trunk/doc/Seam_Reference_Guide/ko-KR/Xml.po
trunk/doc/Seam_Reference_Guide/ko-KR/master.po
trunk/doc/Seam_Reference_Guide/ml-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/ml-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/ml-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/ml-IN/Cache.po
trunk/doc/Seam_Reference_Guide/ml-IN/Components.po
trunk/doc/Seam_Reference_Guide/ml-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/ml-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/ml-IN/Controls.po
trunk/doc/Seam_Reference_Guide/ml-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/ml-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/ml-IN/Drools.po
trunk/doc/Seam_Reference_Guide/ml-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/ml-IN/Events.po
trunk/doc/Seam_Reference_Guide/ml-IN/Excel.po
trunk/doc/Seam_Reference_Guide/ml-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/ml-IN/Framework.po
trunk/doc/Seam_Reference_Guide/ml-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/ml-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/ml-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/ml-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/ml-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/ml-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/ml-IN/I18n.po
trunk/doc/Seam_Reference_Guide/ml-IN/Itext.po
trunk/doc/Seam_Reference_Guide/ml-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/ml-IN/Jms.po
trunk/doc/Seam_Reference_Guide/ml-IN/Mail.po
trunk/doc/Seam_Reference_Guide/ml-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/ml-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/ml-IN/Preface.po
trunk/doc/Seam_Reference_Guide/ml-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/ml-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/ml-IN/Rss.po
trunk/doc/Seam_Reference_Guide/ml-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/ml-IN/Security.po
trunk/doc/Seam_Reference_Guide/ml-IN/Spring.po
trunk/doc/Seam_Reference_Guide/ml-IN/Testing.po
trunk/doc/Seam_Reference_Guide/ml-IN/Text.po
trunk/doc/Seam_Reference_Guide/ml-IN/Tools.po
trunk/doc/Seam_Reference_Guide/ml-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/ml-IN/Validation.po
trunk/doc/Seam_Reference_Guide/ml-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/ml-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/ml-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/ml-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/ml-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/ml-IN/Xml.po
trunk/doc/Seam_Reference_Guide/ml-IN/master.po
trunk/doc/Seam_Reference_Guide/mr-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/mr-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/mr-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/mr-IN/Cache.po
trunk/doc/Seam_Reference_Guide/mr-IN/Components.po
trunk/doc/Seam_Reference_Guide/mr-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/mr-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/mr-IN/Controls.po
trunk/doc/Seam_Reference_Guide/mr-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/mr-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/mr-IN/Drools.po
trunk/doc/Seam_Reference_Guide/mr-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/mr-IN/Events.po
trunk/doc/Seam_Reference_Guide/mr-IN/Excel.po
trunk/doc/Seam_Reference_Guide/mr-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/mr-IN/Framework.po
trunk/doc/Seam_Reference_Guide/mr-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/mr-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/mr-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/mr-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/mr-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/mr-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/mr-IN/I18n.po
trunk/doc/Seam_Reference_Guide/mr-IN/Itext.po
trunk/doc/Seam_Reference_Guide/mr-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/mr-IN/Jms.po
trunk/doc/Seam_Reference_Guide/mr-IN/Mail.po
trunk/doc/Seam_Reference_Guide/mr-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/mr-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/mr-IN/Preface.po
trunk/doc/Seam_Reference_Guide/mr-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/mr-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/mr-IN/Rss.po
trunk/doc/Seam_Reference_Guide/mr-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/mr-IN/Security.po
trunk/doc/Seam_Reference_Guide/mr-IN/Spring.po
trunk/doc/Seam_Reference_Guide/mr-IN/Testing.po
trunk/doc/Seam_Reference_Guide/mr-IN/Text.po
trunk/doc/Seam_Reference_Guide/mr-IN/Tools.po
trunk/doc/Seam_Reference_Guide/mr-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/mr-IN/Validation.po
trunk/doc/Seam_Reference_Guide/mr-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/mr-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/mr-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/mr-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/mr-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/mr-IN/Xml.po
trunk/doc/Seam_Reference_Guide/mr-IN/master.po
trunk/doc/Seam_Reference_Guide/or-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/or-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/or-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/or-IN/Cache.po
trunk/doc/Seam_Reference_Guide/or-IN/Components.po
trunk/doc/Seam_Reference_Guide/or-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/or-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/or-IN/Controls.po
trunk/doc/Seam_Reference_Guide/or-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/or-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/or-IN/Drools.po
trunk/doc/Seam_Reference_Guide/or-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/or-IN/Events.po
trunk/doc/Seam_Reference_Guide/or-IN/Excel.po
trunk/doc/Seam_Reference_Guide/or-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/or-IN/Framework.po
trunk/doc/Seam_Reference_Guide/or-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/or-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/or-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/or-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/or-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/or-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/or-IN/I18n.po
trunk/doc/Seam_Reference_Guide/or-IN/Itext.po
trunk/doc/Seam_Reference_Guide/or-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/or-IN/Jms.po
trunk/doc/Seam_Reference_Guide/or-IN/Mail.po
trunk/doc/Seam_Reference_Guide/or-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/or-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/or-IN/Preface.po
trunk/doc/Seam_Reference_Guide/or-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/or-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/or-IN/Rss.po
trunk/doc/Seam_Reference_Guide/or-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/or-IN/Security.po
trunk/doc/Seam_Reference_Guide/or-IN/Spring.po
trunk/doc/Seam_Reference_Guide/or-IN/Testing.po
trunk/doc/Seam_Reference_Guide/or-IN/Text.po
trunk/doc/Seam_Reference_Guide/or-IN/Tools.po
trunk/doc/Seam_Reference_Guide/or-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/or-IN/Validation.po
trunk/doc/Seam_Reference_Guide/or-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/or-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/or-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/or-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/or-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/or-IN/Xml.po
trunk/doc/Seam_Reference_Guide/or-IN/master.po
trunk/doc/Seam_Reference_Guide/pa-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/pa-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/pa-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/pa-IN/Cache.po
trunk/doc/Seam_Reference_Guide/pa-IN/Components.po
trunk/doc/Seam_Reference_Guide/pa-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/pa-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/pa-IN/Controls.po
trunk/doc/Seam_Reference_Guide/pa-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/pa-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/pa-IN/Drools.po
trunk/doc/Seam_Reference_Guide/pa-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/pa-IN/Events.po
trunk/doc/Seam_Reference_Guide/pa-IN/Excel.po
trunk/doc/Seam_Reference_Guide/pa-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/pa-IN/Framework.po
trunk/doc/Seam_Reference_Guide/pa-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/pa-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/pa-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/pa-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/pa-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/pa-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/pa-IN/I18n.po
trunk/doc/Seam_Reference_Guide/pa-IN/Itext.po
trunk/doc/Seam_Reference_Guide/pa-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/pa-IN/Jms.po
trunk/doc/Seam_Reference_Guide/pa-IN/Mail.po
trunk/doc/Seam_Reference_Guide/pa-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/pa-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/pa-IN/Preface.po
trunk/doc/Seam_Reference_Guide/pa-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/pa-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/pa-IN/Rss.po
trunk/doc/Seam_Reference_Guide/pa-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/pa-IN/Security.po
trunk/doc/Seam_Reference_Guide/pa-IN/Spring.po
trunk/doc/Seam_Reference_Guide/pa-IN/Testing.po
trunk/doc/Seam_Reference_Guide/pa-IN/Text.po
trunk/doc/Seam_Reference_Guide/pa-IN/Tools.po
trunk/doc/Seam_Reference_Guide/pa-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/pa-IN/Validation.po
trunk/doc/Seam_Reference_Guide/pa-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/pa-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/pa-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/pa-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/pa-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/pa-IN/Xml.po
trunk/doc/Seam_Reference_Guide/pa-IN/master.po
trunk/doc/Seam_Reference_Guide/pt-BR/Annotations.po
trunk/doc/Seam_Reference_Guide/pt-BR/Author_Group.po
trunk/doc/Seam_Reference_Guide/pt-BR/Book_Info.po
trunk/doc/Seam_Reference_Guide/pt-BR/Cache.po
trunk/doc/Seam_Reference_Guide/pt-BR/Components.po
trunk/doc/Seam_Reference_Guide/pt-BR/Concepts.po
trunk/doc/Seam_Reference_Guide/pt-BR/Configuration.po
trunk/doc/Seam_Reference_Guide/pt-BR/Controls.po
trunk/doc/Seam_Reference_Guide/pt-BR/Conversations.po
trunk/doc/Seam_Reference_Guide/pt-BR/Dependencies.po
trunk/doc/Seam_Reference_Guide/pt-BR/Drools.po
trunk/doc/Seam_Reference_Guide/pt-BR/Elenhancements.po
trunk/doc/Seam_Reference_Guide/pt-BR/Events.po
trunk/doc/Seam_Reference_Guide/pt-BR/Excel.po
trunk/doc/Seam_Reference_Guide/pt-BR/Feedback.po
trunk/doc/Seam_Reference_Guide/pt-BR/Framework.po
trunk/doc/Seam_Reference_Guide/pt-BR/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/pt-BR/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/pt-BR/Glassfish.po
trunk/doc/Seam_Reference_Guide/pt-BR/Groovy.po
trunk/doc/Seam_Reference_Guide/pt-BR/Gwt.po
trunk/doc/Seam_Reference_Guide/pt-BR/Hsearch.po
trunk/doc/Seam_Reference_Guide/pt-BR/I18n.po
trunk/doc/Seam_Reference_Guide/pt-BR/Itext.po
trunk/doc/Seam_Reference_Guide/pt-BR/Jbpm.po
trunk/doc/Seam_Reference_Guide/pt-BR/Jms.po
trunk/doc/Seam_Reference_Guide/pt-BR/Mail.po
trunk/doc/Seam_Reference_Guide/pt-BR/Oc4j.po
trunk/doc/Seam_Reference_Guide/pt-BR/Persistence.po
trunk/doc/Seam_Reference_Guide/pt-BR/Preface.po
trunk/doc/Seam_Reference_Guide/pt-BR/Remoting.po
trunk/doc/Seam_Reference_Guide/pt-BR/Revision_History.po
trunk/doc/Seam_Reference_Guide/pt-BR/Rss.po
trunk/doc/Seam_Reference_Guide/pt-BR/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/pt-BR/Security.po
trunk/doc/Seam_Reference_Guide/pt-BR/Spring.po
trunk/doc/Seam_Reference_Guide/pt-BR/Testing.po
trunk/doc/Seam_Reference_Guide/pt-BR/Text.po
trunk/doc/Seam_Reference_Guide/pt-BR/Tools.po
trunk/doc/Seam_Reference_Guide/pt-BR/Tutorial.po
trunk/doc/Seam_Reference_Guide/pt-BR/Validation.po
trunk/doc/Seam_Reference_Guide/pt-BR/Version_Info.po
trunk/doc/Seam_Reference_Guide/pt-BR/Weblogic.po
trunk/doc/Seam_Reference_Guide/pt-BR/Webservices.po
trunk/doc/Seam_Reference_Guide/pt-BR/Websphere.po
trunk/doc/Seam_Reference_Guide/pt-BR/Wicket.po
trunk/doc/Seam_Reference_Guide/pt-BR/Xml.po
trunk/doc/Seam_Reference_Guide/pt-BR/master.po
trunk/doc/Seam_Reference_Guide/ru-RU/Annotations.po
trunk/doc/Seam_Reference_Guide/ru-RU/Author_Group.po
trunk/doc/Seam_Reference_Guide/ru-RU/Book_Info.po
trunk/doc/Seam_Reference_Guide/ru-RU/Cache.po
trunk/doc/Seam_Reference_Guide/ru-RU/Components.po
trunk/doc/Seam_Reference_Guide/ru-RU/Concepts.po
trunk/doc/Seam_Reference_Guide/ru-RU/Configuration.po
trunk/doc/Seam_Reference_Guide/ru-RU/Controls.po
trunk/doc/Seam_Reference_Guide/ru-RU/Conversations.po
trunk/doc/Seam_Reference_Guide/ru-RU/Dependencies.po
trunk/doc/Seam_Reference_Guide/ru-RU/Drools.po
trunk/doc/Seam_Reference_Guide/ru-RU/Elenhancements.po
trunk/doc/Seam_Reference_Guide/ru-RU/Events.po
trunk/doc/Seam_Reference_Guide/ru-RU/Excel.po
trunk/doc/Seam_Reference_Guide/ru-RU/Feedback.po
trunk/doc/Seam_Reference_Guide/ru-RU/Framework.po
trunk/doc/Seam_Reference_Guide/ru-RU/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/ru-RU/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/ru-RU/Glassfish.po
trunk/doc/Seam_Reference_Guide/ru-RU/Groovy.po
trunk/doc/Seam_Reference_Guide/ru-RU/Gwt.po
trunk/doc/Seam_Reference_Guide/ru-RU/Hsearch.po
trunk/doc/Seam_Reference_Guide/ru-RU/I18n.po
trunk/doc/Seam_Reference_Guide/ru-RU/Itext.po
trunk/doc/Seam_Reference_Guide/ru-RU/Jbpm.po
trunk/doc/Seam_Reference_Guide/ru-RU/Jms.po
trunk/doc/Seam_Reference_Guide/ru-RU/Mail.po
trunk/doc/Seam_Reference_Guide/ru-RU/Oc4j.po
trunk/doc/Seam_Reference_Guide/ru-RU/Persistence.po
trunk/doc/Seam_Reference_Guide/ru-RU/Preface.po
trunk/doc/Seam_Reference_Guide/ru-RU/Remoting.po
trunk/doc/Seam_Reference_Guide/ru-RU/Revision_History.po
trunk/doc/Seam_Reference_Guide/ru-RU/Rss.po
trunk/doc/Seam_Reference_Guide/ru-RU/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/ru-RU/Security.po
trunk/doc/Seam_Reference_Guide/ru-RU/Spring.po
trunk/doc/Seam_Reference_Guide/ru-RU/Testing.po
trunk/doc/Seam_Reference_Guide/ru-RU/Text.po
trunk/doc/Seam_Reference_Guide/ru-RU/Tools.po
trunk/doc/Seam_Reference_Guide/ru-RU/Tutorial.po
trunk/doc/Seam_Reference_Guide/ru-RU/Validation.po
trunk/doc/Seam_Reference_Guide/ru-RU/Version_Info.po
trunk/doc/Seam_Reference_Guide/ru-RU/Weblogic.po
trunk/doc/Seam_Reference_Guide/ru-RU/Webservices.po
trunk/doc/Seam_Reference_Guide/ru-RU/Websphere.po
trunk/doc/Seam_Reference_Guide/ru-RU/Wicket.po
trunk/doc/Seam_Reference_Guide/ru-RU/Xml.po
trunk/doc/Seam_Reference_Guide/ru-RU/master.po
trunk/doc/Seam_Reference_Guide/si-LK/Annotations.po
trunk/doc/Seam_Reference_Guide/si-LK/Author_Group.po
trunk/doc/Seam_Reference_Guide/si-LK/Book_Info.po
trunk/doc/Seam_Reference_Guide/si-LK/Cache.po
trunk/doc/Seam_Reference_Guide/si-LK/Components.po
trunk/doc/Seam_Reference_Guide/si-LK/Concepts.po
trunk/doc/Seam_Reference_Guide/si-LK/Configuration.po
trunk/doc/Seam_Reference_Guide/si-LK/Controls.po
trunk/doc/Seam_Reference_Guide/si-LK/Conversations.po
trunk/doc/Seam_Reference_Guide/si-LK/Dependencies.po
trunk/doc/Seam_Reference_Guide/si-LK/Drools.po
trunk/doc/Seam_Reference_Guide/si-LK/Elenhancements.po
trunk/doc/Seam_Reference_Guide/si-LK/Events.po
trunk/doc/Seam_Reference_Guide/si-LK/Excel.po
trunk/doc/Seam_Reference_Guide/si-LK/Feedback.po
trunk/doc/Seam_Reference_Guide/si-LK/Framework.po
trunk/doc/Seam_Reference_Guide/si-LK/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/si-LK/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/si-LK/Glassfish.po
trunk/doc/Seam_Reference_Guide/si-LK/Groovy.po
trunk/doc/Seam_Reference_Guide/si-LK/Gwt.po
trunk/doc/Seam_Reference_Guide/si-LK/Hsearch.po
trunk/doc/Seam_Reference_Guide/si-LK/I18n.po
trunk/doc/Seam_Reference_Guide/si-LK/Itext.po
trunk/doc/Seam_Reference_Guide/si-LK/Jbpm.po
trunk/doc/Seam_Reference_Guide/si-LK/Jms.po
trunk/doc/Seam_Reference_Guide/si-LK/Mail.po
trunk/doc/Seam_Reference_Guide/si-LK/Oc4j.po
trunk/doc/Seam_Reference_Guide/si-LK/Persistence.po
trunk/doc/Seam_Reference_Guide/si-LK/Preface.po
trunk/doc/Seam_Reference_Guide/si-LK/Remoting.po
trunk/doc/Seam_Reference_Guide/si-LK/Revision_History.po
trunk/doc/Seam_Reference_Guide/si-LK/Rss.po
trunk/doc/Seam_Reference_Guide/si-LK/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/si-LK/Security.po
trunk/doc/Seam_Reference_Guide/si-LK/Spring.po
trunk/doc/Seam_Reference_Guide/si-LK/Testing.po
trunk/doc/Seam_Reference_Guide/si-LK/Text.po
trunk/doc/Seam_Reference_Guide/si-LK/Tools.po
trunk/doc/Seam_Reference_Guide/si-LK/Tutorial.po
trunk/doc/Seam_Reference_Guide/si-LK/Validation.po
trunk/doc/Seam_Reference_Guide/si-LK/Version_Info.po
trunk/doc/Seam_Reference_Guide/si-LK/Weblogic.po
trunk/doc/Seam_Reference_Guide/si-LK/Webservices.po
trunk/doc/Seam_Reference_Guide/si-LK/Websphere.po
trunk/doc/Seam_Reference_Guide/si-LK/Wicket.po
trunk/doc/Seam_Reference_Guide/si-LK/Xml.po
trunk/doc/Seam_Reference_Guide/si-LK/master.po
trunk/doc/Seam_Reference_Guide/sl-SL/Annotations.po
trunk/doc/Seam_Reference_Guide/sl-SL/Author_Group.po
trunk/doc/Seam_Reference_Guide/sl-SL/Book_Info.po
trunk/doc/Seam_Reference_Guide/sl-SL/Cache.po
trunk/doc/Seam_Reference_Guide/sl-SL/Components.po
trunk/doc/Seam_Reference_Guide/sl-SL/Concepts.po
trunk/doc/Seam_Reference_Guide/sl-SL/Configuration.po
trunk/doc/Seam_Reference_Guide/sl-SL/Controls.po
trunk/doc/Seam_Reference_Guide/sl-SL/Conversations.po
trunk/doc/Seam_Reference_Guide/sl-SL/Dependencies.po
trunk/doc/Seam_Reference_Guide/sl-SL/Drools.po
trunk/doc/Seam_Reference_Guide/sl-SL/Elenhancements.po
trunk/doc/Seam_Reference_Guide/sl-SL/Events.po
trunk/doc/Seam_Reference_Guide/sl-SL/Excel.po
trunk/doc/Seam_Reference_Guide/sl-SL/Feedback.po
trunk/doc/Seam_Reference_Guide/sl-SL/Framework.po
trunk/doc/Seam_Reference_Guide/sl-SL/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/sl-SL/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/sl-SL/Glassfish.po
trunk/doc/Seam_Reference_Guide/sl-SL/Groovy.po
trunk/doc/Seam_Reference_Guide/sl-SL/Gwt.po
trunk/doc/Seam_Reference_Guide/sl-SL/Hsearch.po
trunk/doc/Seam_Reference_Guide/sl-SL/I18n.po
trunk/doc/Seam_Reference_Guide/sl-SL/Itext.po
trunk/doc/Seam_Reference_Guide/sl-SL/Jbpm.po
trunk/doc/Seam_Reference_Guide/sl-SL/Jms.po
trunk/doc/Seam_Reference_Guide/sl-SL/Mail.po
trunk/doc/Seam_Reference_Guide/sl-SL/Oc4j.po
trunk/doc/Seam_Reference_Guide/sl-SL/Persistence.po
trunk/doc/Seam_Reference_Guide/sl-SL/Preface.po
trunk/doc/Seam_Reference_Guide/sl-SL/Remoting.po
trunk/doc/Seam_Reference_Guide/sl-SL/Revision_History.po
trunk/doc/Seam_Reference_Guide/sl-SL/Rss.po
trunk/doc/Seam_Reference_Guide/sl-SL/Security.po
trunk/doc/Seam_Reference_Guide/sl-SL/Spring.po
trunk/doc/Seam_Reference_Guide/sl-SL/Testing.po
trunk/doc/Seam_Reference_Guide/sl-SL/Text.po
trunk/doc/Seam_Reference_Guide/sl-SL/Tools.po
trunk/doc/Seam_Reference_Guide/sl-SL/Tutorial.po
trunk/doc/Seam_Reference_Guide/sl-SL/Validation.po
trunk/doc/Seam_Reference_Guide/sl-SL/Version_Info.po
trunk/doc/Seam_Reference_Guide/sl-SL/Weblogic.po
trunk/doc/Seam_Reference_Guide/sl-SL/Webservices.po
trunk/doc/Seam_Reference_Guide/sl-SL/Websphere.po
trunk/doc/Seam_Reference_Guide/sl-SL/Wicket.po
trunk/doc/Seam_Reference_Guide/sl-SL/Xml.po
trunk/doc/Seam_Reference_Guide/sl-SL/master.po
trunk/doc/Seam_Reference_Guide/ta-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/ta-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/ta-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/ta-IN/Cache.po
trunk/doc/Seam_Reference_Guide/ta-IN/Components.po
trunk/doc/Seam_Reference_Guide/ta-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/ta-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/ta-IN/Controls.po
trunk/doc/Seam_Reference_Guide/ta-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/ta-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/ta-IN/Drools.po
trunk/doc/Seam_Reference_Guide/ta-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/ta-IN/Events.po
trunk/doc/Seam_Reference_Guide/ta-IN/Excel.po
trunk/doc/Seam_Reference_Guide/ta-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/ta-IN/Framework.po
trunk/doc/Seam_Reference_Guide/ta-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/ta-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/ta-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/ta-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/ta-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/ta-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/ta-IN/I18n.po
trunk/doc/Seam_Reference_Guide/ta-IN/Itext.po
trunk/doc/Seam_Reference_Guide/ta-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/ta-IN/Jms.po
trunk/doc/Seam_Reference_Guide/ta-IN/Mail.po
trunk/doc/Seam_Reference_Guide/ta-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/ta-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/ta-IN/Preface.po
trunk/doc/Seam_Reference_Guide/ta-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/ta-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/ta-IN/Rss.po
trunk/doc/Seam_Reference_Guide/ta-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/ta-IN/Security.po
trunk/doc/Seam_Reference_Guide/ta-IN/Spring.po
trunk/doc/Seam_Reference_Guide/ta-IN/Testing.po
trunk/doc/Seam_Reference_Guide/ta-IN/Text.po
trunk/doc/Seam_Reference_Guide/ta-IN/Tools.po
trunk/doc/Seam_Reference_Guide/ta-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/ta-IN/Validation.po
trunk/doc/Seam_Reference_Guide/ta-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/ta-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/ta-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/ta-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/ta-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/ta-IN/Xml.po
trunk/doc/Seam_Reference_Guide/ta-IN/master.po
trunk/doc/Seam_Reference_Guide/te-IN/Annotations.po
trunk/doc/Seam_Reference_Guide/te-IN/Author_Group.po
trunk/doc/Seam_Reference_Guide/te-IN/Book_Info.po
trunk/doc/Seam_Reference_Guide/te-IN/Cache.po
trunk/doc/Seam_Reference_Guide/te-IN/Components.po
trunk/doc/Seam_Reference_Guide/te-IN/Concepts.po
trunk/doc/Seam_Reference_Guide/te-IN/Configuration.po
trunk/doc/Seam_Reference_Guide/te-IN/Controls.po
trunk/doc/Seam_Reference_Guide/te-IN/Conversations.po
trunk/doc/Seam_Reference_Guide/te-IN/Dependencies.po
trunk/doc/Seam_Reference_Guide/te-IN/Drools.po
trunk/doc/Seam_Reference_Guide/te-IN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/te-IN/Events.po
trunk/doc/Seam_Reference_Guide/te-IN/Excel.po
trunk/doc/Seam_Reference_Guide/te-IN/Feedback.po
trunk/doc/Seam_Reference_Guide/te-IN/Framework.po
trunk/doc/Seam_Reference_Guide/te-IN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/te-IN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/te-IN/Glassfish.po
trunk/doc/Seam_Reference_Guide/te-IN/Groovy.po
trunk/doc/Seam_Reference_Guide/te-IN/Gwt.po
trunk/doc/Seam_Reference_Guide/te-IN/Hsearch.po
trunk/doc/Seam_Reference_Guide/te-IN/I18n.po
trunk/doc/Seam_Reference_Guide/te-IN/Itext.po
trunk/doc/Seam_Reference_Guide/te-IN/Jbpm.po
trunk/doc/Seam_Reference_Guide/te-IN/Jms.po
trunk/doc/Seam_Reference_Guide/te-IN/Mail.po
trunk/doc/Seam_Reference_Guide/te-IN/Oc4j.po
trunk/doc/Seam_Reference_Guide/te-IN/Persistence.po
trunk/doc/Seam_Reference_Guide/te-IN/Preface.po
trunk/doc/Seam_Reference_Guide/te-IN/Remoting.po
trunk/doc/Seam_Reference_Guide/te-IN/Revision_History.po
trunk/doc/Seam_Reference_Guide/te-IN/Rss.po
trunk/doc/Seam_Reference_Guide/te-IN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/te-IN/Security.po
trunk/doc/Seam_Reference_Guide/te-IN/Spring.po
trunk/doc/Seam_Reference_Guide/te-IN/Testing.po
trunk/doc/Seam_Reference_Guide/te-IN/Text.po
trunk/doc/Seam_Reference_Guide/te-IN/Tools.po
trunk/doc/Seam_Reference_Guide/te-IN/Tutorial.po
trunk/doc/Seam_Reference_Guide/te-IN/Validation.po
trunk/doc/Seam_Reference_Guide/te-IN/Version_Info.po
trunk/doc/Seam_Reference_Guide/te-IN/Weblogic.po
trunk/doc/Seam_Reference_Guide/te-IN/Webservices.po
trunk/doc/Seam_Reference_Guide/te-IN/Websphere.po
trunk/doc/Seam_Reference_Guide/te-IN/Wicket.po
trunk/doc/Seam_Reference_Guide/te-IN/Xml.po
trunk/doc/Seam_Reference_Guide/te-IN/master.po
trunk/doc/Seam_Reference_Guide/zh-CN/Annotations.po
trunk/doc/Seam_Reference_Guide/zh-CN/Author_Group.po
trunk/doc/Seam_Reference_Guide/zh-CN/Book_Info.po
trunk/doc/Seam_Reference_Guide/zh-CN/Cache.po
trunk/doc/Seam_Reference_Guide/zh-CN/Components.po
trunk/doc/Seam_Reference_Guide/zh-CN/Concepts.po
trunk/doc/Seam_Reference_Guide/zh-CN/Configuration.po
trunk/doc/Seam_Reference_Guide/zh-CN/Controls.po
trunk/doc/Seam_Reference_Guide/zh-CN/Conversations.po
trunk/doc/Seam_Reference_Guide/zh-CN/Dependencies.po
trunk/doc/Seam_Reference_Guide/zh-CN/Drools.po
trunk/doc/Seam_Reference_Guide/zh-CN/Elenhancements.po
trunk/doc/Seam_Reference_Guide/zh-CN/Events.po
trunk/doc/Seam_Reference_Guide/zh-CN/Excel.po
trunk/doc/Seam_Reference_Guide/zh-CN/Feedback.po
trunk/doc/Seam_Reference_Guide/zh-CN/Framework.po
trunk/doc/Seam_Reference_Guide/zh-CN/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/zh-CN/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/zh-CN/Glassfish.po
trunk/doc/Seam_Reference_Guide/zh-CN/Groovy.po
trunk/doc/Seam_Reference_Guide/zh-CN/Gwt.po
trunk/doc/Seam_Reference_Guide/zh-CN/Hsearch.po
trunk/doc/Seam_Reference_Guide/zh-CN/I18n.po
trunk/doc/Seam_Reference_Guide/zh-CN/Itext.po
trunk/doc/Seam_Reference_Guide/zh-CN/Jbpm.po
trunk/doc/Seam_Reference_Guide/zh-CN/Jms.po
trunk/doc/Seam_Reference_Guide/zh-CN/Mail.po
trunk/doc/Seam_Reference_Guide/zh-CN/Oc4j.po
trunk/doc/Seam_Reference_Guide/zh-CN/Persistence.po
trunk/doc/Seam_Reference_Guide/zh-CN/Preface.po
trunk/doc/Seam_Reference_Guide/zh-CN/Remoting.po
trunk/doc/Seam_Reference_Guide/zh-CN/Revision_History.po
trunk/doc/Seam_Reference_Guide/zh-CN/Rss.po
trunk/doc/Seam_Reference_Guide/zh-CN/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/zh-CN/Security.po
trunk/doc/Seam_Reference_Guide/zh-CN/Spring.po
trunk/doc/Seam_Reference_Guide/zh-CN/Testing.po
trunk/doc/Seam_Reference_Guide/zh-CN/Text.po
trunk/doc/Seam_Reference_Guide/zh-CN/Tools.po
trunk/doc/Seam_Reference_Guide/zh-CN/Tutorial.po
trunk/doc/Seam_Reference_Guide/zh-CN/Validation.po
trunk/doc/Seam_Reference_Guide/zh-CN/Version_Info.po
trunk/doc/Seam_Reference_Guide/zh-CN/Weblogic.po
trunk/doc/Seam_Reference_Guide/zh-CN/Webservices.po
trunk/doc/Seam_Reference_Guide/zh-CN/Websphere.po
trunk/doc/Seam_Reference_Guide/zh-CN/Wicket.po
trunk/doc/Seam_Reference_Guide/zh-CN/Xml.po
trunk/doc/Seam_Reference_Guide/zh-CN/master.po
trunk/doc/Seam_Reference_Guide/zh-TW/Annotations.po
trunk/doc/Seam_Reference_Guide/zh-TW/Author_Group.po
trunk/doc/Seam_Reference_Guide/zh-TW/Book_Info.po
trunk/doc/Seam_Reference_Guide/zh-TW/Cache.po
trunk/doc/Seam_Reference_Guide/zh-TW/Components.po
trunk/doc/Seam_Reference_Guide/zh-TW/Concepts.po
trunk/doc/Seam_Reference_Guide/zh-TW/Configuration.po
trunk/doc/Seam_Reference_Guide/zh-TW/Controls.po
trunk/doc/Seam_Reference_Guide/zh-TW/Conversations.po
trunk/doc/Seam_Reference_Guide/zh-TW/Dependencies.po
trunk/doc/Seam_Reference_Guide/zh-TW/Drools.po
trunk/doc/Seam_Reference_Guide/zh-TW/Elenhancements.po
trunk/doc/Seam_Reference_Guide/zh-TW/Events.po
trunk/doc/Seam_Reference_Guide/zh-TW/Excel.po
trunk/doc/Seam_Reference_Guide/zh-TW/Feedback.po
trunk/doc/Seam_Reference_Guide/zh-TW/Framework.po
trunk/doc/Seam_Reference_Guide/zh-TW/Getting_Started_With_JBoss_Tools.po
trunk/doc/Seam_Reference_Guide/zh-TW/Gettingstarted.po
trunk/doc/Seam_Reference_Guide/zh-TW/Glassfish.po
trunk/doc/Seam_Reference_Guide/zh-TW/Groovy.po
trunk/doc/Seam_Reference_Guide/zh-TW/Gwt.po
trunk/doc/Seam_Reference_Guide/zh-TW/Hsearch.po
trunk/doc/Seam_Reference_Guide/zh-TW/I18n.po
trunk/doc/Seam_Reference_Guide/zh-TW/Itext.po
trunk/doc/Seam_Reference_Guide/zh-TW/Jbpm.po
trunk/doc/Seam_Reference_Guide/zh-TW/Jms.po
trunk/doc/Seam_Reference_Guide/zh-TW/Mail.po
trunk/doc/Seam_Reference_Guide/zh-TW/Oc4j.po
trunk/doc/Seam_Reference_Guide/zh-TW/Persistence.po
trunk/doc/Seam_Reference_Guide/zh-TW/Preface.po
trunk/doc/Seam_Reference_Guide/zh-TW/Remoting.po
trunk/doc/Seam_Reference_Guide/zh-TW/Revision_History.po
trunk/doc/Seam_Reference_Guide/zh-TW/Rss.po
trunk/doc/Seam_Reference_Guide/zh-TW/Seam_Reference_Guide.po
trunk/doc/Seam_Reference_Guide/zh-TW/Security.po
trunk/doc/Seam_Reference_Guide/zh-TW/Spring.po
trunk/doc/Seam_Reference_Guide/zh-TW/Testing.po
trunk/doc/Seam_Reference_Guide/zh-TW/Text.po
trunk/doc/Seam_Reference_Guide/zh-TW/Tools.po
trunk/doc/Seam_Reference_Guide/zh-TW/Tutorial.po
trunk/doc/Seam_Reference_Guide/zh-TW/Validation.po
trunk/doc/Seam_Reference_Guide/zh-TW/Version_Info.po
trunk/doc/Seam_Reference_Guide/zh-TW/Weblogic.po
trunk/doc/Seam_Reference_Guide/zh-TW/Webservices.po
trunk/doc/Seam_Reference_Guide/zh-TW/Websphere.po
trunk/doc/Seam_Reference_Guide/zh-TW/Wicket.po
trunk/doc/Seam_Reference_Guide/zh-TW/Xml.po
trunk/doc/Seam_Reference_Guide/zh-TW/master.po
Log:
and set eol style for all translations
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/as-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/bn-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/de-DE/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/es-ES/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/fr-FR/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/gu-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/hi-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/it-IT/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ja-JP/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/kn-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ko-KR/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ml-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/mr-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/or-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pa-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/pt-BR/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ru-RU/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/si-LK/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/sl-SL/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/ta-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/te-IN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-CN/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Annotations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Author_Group.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Book_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Cache.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Components.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Concepts.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Configuration.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Controls.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Conversations.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Dependencies.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Drools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Elenhancements.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Events.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Excel.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Feedback.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Framework.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Getting_Started_With_JBoss_Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Gettingstarted.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Glassfish.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Groovy.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Gwt.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Hsearch.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/I18n.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Itext.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Jbpm.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Jms.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Mail.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Oc4j.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Persistence.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Preface.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Remoting.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Revision_History.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Rss.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Seam_Reference_Guide.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Security.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Spring.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Testing.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Text.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Tools.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Tutorial.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Validation.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Version_Info.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Weblogic.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Webservices.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Websphere.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Wicket.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/Xml.po
___________________________________________________________________
Name: svn:eol-style
+ native
Property changes on: trunk/doc/Seam_Reference_Guide/zh-TW/master.po
___________________________________________________________________
Name: svn:eol-style
+ native
16 years, 1 month