Seam SVN: r15338 - in branches/enterprise/WFK-2_1/examples: remoting/gwt and 15 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-31 12:05:10 -0400 (Wed, 31 Oct 2012)
New Revision: 15338
Removed:
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/src/main/application/META-INF/jboss-deployment-structure.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/HelloWorld.gwt.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/AskQuestionWidget.java
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/HelloWorld.java
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyService.java
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyServiceAsync.java
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/ValidationUtility.java
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/package.html
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/public/HelloWorld.html
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/server/ServiceImpl.java
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/resources/META-INF/ejb-jar.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/resources/seam.properties
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/java/org/jboss/seam/example/remoting/gwt/test/selenium/GwtTest.java
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/resources-ftest/testng.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/web.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/history.html
branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/index.html
branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml
branches/enterprise/WFK-2_1/examples/remoting/gwt/readme.txt
Modified:
branches/enterprise/WFK-2_1/examples/pom.xml
Log:
bz 869701 removed gwt example
Modified: branches/enterprise/WFK-2_1/examples/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/pom.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/pom.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -115,7 +115,6 @@
<module>quartz</module>
<module>registration</module>
<module>remoting/chatroom</module>
- <module>remoting/gwt</module>
<module>remoting/helloworld</module>
<module>restbay</module>
<module>seambay</module>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/pom.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,140 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>gwt</artifactId>
- <groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
-
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ear</artifactId>
- <packaging>ear</packaging>
- <name>Gwt EAR Module (EE6)</name>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-web</artifactId>
- <type>war</type>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ejb</artifactId>
- <type>ejb</type>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- <type>ejb</type>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- </exclusion>
- <exclusion>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam-remoting</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-servlet</artifactId>
- </dependency>
- </dependencies>
-
- <build>
- <finalName>seam-gwt</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-ear-plugin</artifactId>
- <configuration>
- <version>6</version>
- <defaultLibBundleDir>lib</defaultLibBundleDir>
- <filtering>true</filtering>
- <modules>
- <webModule>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-web</artifactId>
- <contextRoot>/seam-gwt</contextRoot>
- <bundleFileName>gwt-web.war</bundleFileName>
- </webModule>
- <ejbModule>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ejb</artifactId>
- <bundleFileName>gwt-ejb.jar</bundleFileName>
- </ejbModule>
- <ejbModule>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- <bundleFileName>jboss-seam.jar</bundleFileName>
- </ejbModule>
- </modules>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>exploded</id>
- <properties>
- <example.name>gwt</example.name>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>package</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ear</artifactId>
- <type>ear</type>
- <overWrite>true</overWrite>
- <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear</outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-web</artifactId>
- <type>war</type>
- <overWrite>true</overWrite>
- <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-web.war</outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ejb</artifactId>
- <type>jar</type>
- <overWrite>true</overWrite>
- <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-ejb.jar</outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-</project>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/src/main/application/META-INF/jboss-deployment-structure.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/src/main/application/META-INF/jboss-deployment-structure.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ear/src/main/application/META-INF/jboss-deployment-structure.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,10 +0,0 @@
-<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.0">
- <deployment>
- <dependencies>
- <module name="org.javassist" export="true"/>
- <module name="org.dom4j" export="true"/>
- <module name="javax.faces.api" export="true"/>
- <module name="com.sun.jsf-impl" export="true"/>
- </dependencies>
- </deployment>
-</jboss-deployment-structure>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/pom.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>gwt</artifactId>
- <groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
-
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ejb</artifactId>
- <packaging>ejb</packaging>
- <name>Gwt EJB Module (EE6)</name>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>gwt-maven-plugin</artifactId>
- <version>1.2</version> <!-- version 1.2 allows us to specify gwt version by gwt-user dependency -->
- <configuration>
- <generateDirectory>${project.build.outoutDirectory}/${project.build.finalName}</generateDirectory>
- <inplace>false</inplace>
- <logLevel>TRACE</logLevel>
- <extraJvmArgs>-Xmx512m -DDEBUG</extraJvmArgs>
- <soyc>false</soyc>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>resources</goal>
- <goal>compile</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- <type>ejb</type>
- </dependency>
- <dependency>
- <groupId>org.jboss.spec.javax.servlet</groupId>
- <artifactId>jboss-servlet-api_3.0_spec</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.spec.javax.ejb</groupId>
- <artifactId>jboss-ejb-api_3.1_spec</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.spec.javax.faces</groupId>
- <artifactId>jboss-jsf-api_2.1_spec</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam-remoting</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-servlet</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-user</artifactId>
- </dependency>
- </dependencies>
-
-</project>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/HelloWorld.gwt.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/HelloWorld.gwt.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/HelloWorld.gwt.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,9 +0,0 @@
-<module>
-
- <!-- Inherit the core Web Toolkit stuff. -->
- <inherits name='com.google.gwt.user.User'/>
-
- <!-- Specify the app entry point class. -->
- <entry-point class='org.jboss.seam.example.remoting.gwt.client.HelloWorld'/>
-
-</module>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/AskQuestionWidget.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/AskQuestionWidget.java 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/AskQuestionWidget.java 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,79 +0,0 @@
-package org.jboss.seam.example.remoting.gwt.client;
-
-import com.google.gwt.core.client.GWT;
-import com.google.gwt.user.client.Window;
-import com.google.gwt.user.client.rpc.AsyncCallback;
-import com.google.gwt.user.client.rpc.ServiceDefTarget;
-import com.google.gwt.user.client.ui.AbsolutePanel;
-import com.google.gwt.user.client.ui.Button;
-import com.google.gwt.user.client.ui.ClickListener;
-import com.google.gwt.user.client.ui.Composite;
-import com.google.gwt.user.client.ui.Label;
-import com.google.gwt.user.client.ui.TextBox;
-import com.google.gwt.user.client.ui.Widget;
-
-/**
- * This shows how to do a a "composite" widget in GWT, as well as how to call back to the server.
- * @author Michael Neale
- */
-public class AskQuestionWidget extends Composite
-{
- private AbsolutePanel panel = new AbsolutePanel();
-
- public AskQuestionWidget()
- {
- Label lbl = new Label("OK, what do you want to know?");
- panel.add(lbl);
- final TextBox box = new TextBox();
- box.setText("What is the meaning of life?");
- panel.add(box);
- Button ok = new Button("Ask");
- ok.addClickListener(new ClickListener()
- {
- public void onClick(Widget w)
- {
- ValidationUtility valid = new ValidationUtility();
- if (!valid.isValid(box.getText()))
- {
- Window.alert("A question has to end with a '?'");
- }
- else
- {
- askServer(box.getText());
- }
- }
- });
- panel.add(ok);
-
- initWidget(panel);
- }
-
- /** Now lets actually go to the server, using a callback - its called Ajax for a reason ! */
- private void askServer(String text)
- {
- getService().askIt(text, new AsyncCallback()
- {
- public void onFailure(Throwable t)
- {
- Window.alert(t.getMessage());
- }
-
- public void onSuccess(Object data)
- {
- Window.alert((String) data);
- }
- });
- }
-
- /**
- * This gets the async service client stub.
- */
- private MyServiceAsync getService()
- {
- String endpointURL = GWT.getModuleBaseURL() + "seam/resource/gwt";
-
- MyServiceAsync svc = (MyServiceAsync) GWT.create(MyService.class);
- ((ServiceDefTarget) svc).setServiceEntryPoint(endpointURL);
- return svc;
- }
-}
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/HelloWorld.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/HelloWorld.java 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/HelloWorld.java 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,27 +0,0 @@
-package org.jboss.seam.example.remoting.gwt.client;
-
-import com.google.gwt.core.client.EntryPoint;
-import com.google.gwt.user.client.ui.RootPanel;
-
-/**
- * This is the "main" entry point, as per GWT.
- * Generally this is a lean class, you tend to use seperate widget classes after this point.
- * This is pretty much boiler plate, you can mostly ignore this.
- *
- * Entry point classes define <code>onModuleLoad()</code>.
- */
-public class HelloWorld implements EntryPoint {
-
- /**
- * This is the entry point method.
- */
- public void onModuleLoad() {
- // Assume that the host HTML has elements defined whose
- // IDs are "slot1", "slot2". In a real app, you probably would not want
- // to hard-code IDs. Instead, you could, for example, search for all
- // elements with a particular CSS class and replace them with widgets.
- //
- RootPanel.get("slot1").add(new AskQuestionWidget());
-
- }
-}
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyService.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyService.java 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyService.java 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,15 +0,0 @@
-package org.jboss.seam.example.remoting.gwt.client;
-
-import com.google.gwt.user.client.rpc.RemoteService;
-
-/**
- * This is a GWT service, which will be implemented as a Seam component on the server
- * (see the server package). GWT uses strongly typed RPC interfaces.
- *
- * @author Michael Neale
- */
-public interface MyService extends RemoteService
-{
- public String askIt(String question);
-
-}
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyServiceAsync.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyServiceAsync.java 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/MyServiceAsync.java 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,16 +0,0 @@
-package org.jboss.seam.example.remoting.gwt.client;
-
-import com.google.gwt.user.client.rpc.AsyncCallback;
-import com.google.gwt.user.client.rpc.RemoteService;
-
-/**
- * This is the interface the client code uses. You NEVER implement this directly,
- * GWT does this for you, and calls are marshalled through to the Sync equivalent method in MyService
- * on the server (which is a Seam component).
- *
- * @author Michael Neale
- */
-public interface MyServiceAsync extends RemoteService
-{
- public void askIt(String question, AsyncCallback callback);
-}
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/ValidationUtility.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/ValidationUtility.java 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/ValidationUtility.java 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,22 +0,0 @@
-package org.jboss.seam.example.remoting.gwt.client;
-
-/**
- * This simple validation utility shows how you can have the same code on the "client"
- * as on the server (ie the server can re-use some code from the client - one of the GWT advantages).
- *
- * @author michael
- */
-public class ValidationUtility
-{
-
- public boolean isValid(String question) {
- if ("".equals(question)) {
- return false;
- } else if (!question.trim().endsWith("?")) {
- return false;
- } else {
- return true;
- }
- }
-
-}
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/package.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/package.html 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/client/package.html 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,6 +0,0 @@
-<body>
-This package is the client side GWT code - which can be run as java in debug mode,
-or compiled to javascript via GWT.
-Code in this package and sub packages can be used on the server, but not vice versa.
-To communicate with the server, the GWT RPC mechanism with Seam remoting is used.
-</body>
\ No newline at end of file
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/public/HelloWorld.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/public/HelloWorld.html 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/public/HelloWorld.html 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,49 +0,0 @@
-<html>
- <head>
-
- <!-- -->
- <!-- Any title is fine -->
- <!-- -->
- <title>Wrapper HTML for HelloWorld</title>
-
- <!-- -->
- <!-- Use normal html, such as style -->
- <!-- -->
- <style>
- body,td,a,div,.p{font-family:arial,sans-serif}
- div,td{color:#000000}
- a:link,.w,.w a:link{color:#0000cc}
- a:visited{color:#551a8b}
- a:active{color:#ff0000}
- </style>
-
- </head>
-
- <!-- -->
- <!-- The body can have arbitrary html, or -->
- <!-- you can leave the body empty if you want -->
- <!-- to create a completely dynamic ui -->
- <!-- -->
- <body>
-
- <script language="javascript" src="org.jboss.seam.example.remoting.gwt.HelloWorld.nocache.js"></script>
-
- <!-- OPTIONAL: include this if you want history support -->
- <iframe id="__gwt_historyFrame" style="width:0;height:0;border:0"></iframe>
-
- <h1>HelloWorld</h1>
-
- <p>
- This is an example of a host page for the HelloWorld application.
- You can attach a Web Toolkit module to any HTML page you like,
- making it easy to add bits of AJAX functionality to existing pages
- without starting from scratch.
- </p>
-
- <table align=center>
- <tr>
- <td id="slot1"></td><td id="slot2"></td>
- </tr>
- </table>
- </body>
-</html>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/server/ServiceImpl.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/server/ServiceImpl.java 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/java/org/jboss/seam/example/remoting/gwt/server/ServiceImpl.java 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,37 +0,0 @@
-package org.jboss.seam.example.remoting.gwt.server;
-
-import org.jboss.seam.annotations.Name;
-import org.jboss.seam.annotations.remoting.WebRemote;
-import org.jboss.seam.example.remoting.gwt.client.MyService;
-import org.jboss.seam.example.remoting.gwt.client.ValidationUtility;
-
-/**
- * This is the seam component that implements the service the GUI uses.
- * Note that @WebRemote is needed, as is @Name to match the service full class name
- * (defaults are not a great idea, as this is open to the wide world !)
- *
- * @author Michael Neale
- */
-@Name("org.jboss.seam.example.remoting.gwt.client.MyService")
-public class ServiceImpl implements MyService
-{
-
- @WebRemote
- public String askIt(String question)
- {
- if (!validate(question)) {
- throw new IllegalStateException("Hey, this shouldn't happen, I checked on the client, " +
- "but its always good to double check.");
- }
- return "42. Its the real question that you seek now.";
- }
-
- /**
- * Woh, we can re-use code from the client !
- */
- public boolean validate(String q) {
- ValidationUtility util = new ValidationUtility();
- return util.isValid(q);
- }
-
-}
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/resources/META-INF/ejb-jar.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/resources/META-INF/ejb-jar.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/resources/META-INF/ejb-jar.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd"
- version="3.0">
-
- <interceptors>
- <interceptor>
- <interceptor-class>org.jboss.seam.ejb.SeamInterceptor</interceptor-class>
- </interceptor>
- </interceptors>
-
- <assembly-descriptor>
- <interceptor-binding>
- <ejb-name>*</ejb-name>
- <interceptor-class>org.jboss.seam.ejb.SeamInterceptor</interceptor-class>
- </interceptor-binding>
- </assembly-descriptor>
-
-</ejb-jar>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-ejb/src/main/resources/seam.properties
===================================================================
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/pom.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>gwt</artifactId>
- <groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
-
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-tests</artifactId>
- <name>Gwt Integration Tests Module (EE6)</name>
-
- <dependencies>
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
-
- </dependency>
- <dependency>
- <groupId>org.seleniumhq.selenium</groupId>
- <artifactId>selenium-server</artifactId>
- </dependency>
- <dependency>
- <groupId>org.seleniumhq.selenium</groupId>
- <artifactId>selenium-java</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam</groupId>
- <artifactId>functional-tests</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skipTests>true</skipTests>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>ftest-jbossas</id>
- <properties>
- <example.context.path>/seam-gwt</example.context.path>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>selenium-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>failsafe-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
-</project>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/java/org/jboss/seam/example/remoting/gwt/test/selenium/GwtTest.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/java/org/jboss/seam/example/remoting/gwt/test/selenium/GwtTest.java 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/java/org/jboss/seam/example/remoting/gwt/test/selenium/GwtTest.java 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,102 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-
-package org.jboss.seam.example.remoting.gwt.test.selenium;
-
-import org.jboss.seam.example.common.test.selenium.SeamSeleniumTest;
-
-
-import org.testng.annotations.BeforeMethod;
-import org.testng.annotations.Test;
-
-import com.thoughtworks.selenium.Wait;
-
-import static org.testng.AssertJUnit.*;
-
-/**
- * This class tests a functionality of remoting/gwt example.
- *
- * @author Martin Gencur
- *
- */
-public class GwtTest extends SeamSeleniumTest
-{
- protected static final String GWT_URL = "/HelloWorld.html";
- protected static final String GWT_TITLE = "Wrapper HTML for HelloWorld";
- protected static final String ASK_BUTTON = "dom=document.getElementsByTagName('button')[0]";
- protected static final String TEXT_FIELD = "dom=document.getElementsByTagName('input')[0]";
- protected static final Long TIMEOUT = 2000L; //2 seconds
-
- protected static final String ENTER_TEXT_WITHOUT = "Text without question mark at the end";
- protected static final String ENTER_TEXT_WITH = "Text WITH question mark at the end?";
-
- protected static final String MESSAGE_WITHOUT = "A question has to end with a \'?\'";
- protected static final String MESSAGE_WITH = "Its the real question that you seek now";
-
- @Override
- @BeforeMethod
- public void setUp()
- {
- super.setUp();
- browser.open(CONTEXT_PATH + GWT_URL);
- }
-
- @Test
- public void simplePageContentTest()
- {
- assertTrue("Home page of Remoting/Gwt Example expected", browser.getLocation().contains(GWT_URL));
- assertTrue("Different page title expected ale je:"+ browser.getTitle(),browser.getTitle().contains(GWT_TITLE));
- assertTrue("Home page should contain Text field", browser.isElementPresent(TEXT_FIELD));
- assertTrue("Home page should contain Ask button", browser.isElementPresent(ASK_BUTTON));
- }
-
- @Test(dependsOnMethods = {"simplePageContentTest"})
- public void withoutQuestionMarkTest(){
- String result = "";
- browser.type(TEXT_FIELD, ENTER_TEXT_WITHOUT);
- browser.click(ASK_BUTTON);
- waitForAlertPresent(TIMEOUT);
- result = browser.getAlert();
- assertTrue("An alert message should show up and should contain message \"" + MESSAGE_WITHOUT + "\"", result.contains(MESSAGE_WITHOUT));
- }
-
- @Test(dependsOnMethods = {"simplePageContentTest"})
- public void withQuestionMarkTest(){
- String result = "";
- browser.type(TEXT_FIELD, ENTER_TEXT_WITH);
- browser.click(ASK_BUTTON);
- waitForAlertPresent(TIMEOUT);
- result = browser.getAlert();
- assertTrue("An alert message should show up and should contain message \"" + MESSAGE_WITH + "\"", result.contains(MESSAGE_WITH));
- }
-
- public void waitForAlertPresent(Long timeout){
- new Wait()
- {
- @Override
- public boolean until()
- {
- return browser.isAlertPresent();
- }
- }.wait("Timeout while waiting for alert window.", timeout);
- }
-}
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/resources-ftest/testng.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/resources-ftest/testng.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-tests/src/test/resources-ftest/testng.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,25 +0,0 @@
-<!--
- JBoss, Home of Professional Open Source Copyright 2008, Red Hat
- Middleware LLC, and individual contributors by the @authors tag. See
- the copyright.txt in the distribution for a full listing of individual
- contributors. This is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public License as
- published by the Free Software Foundation; either version 2.1 of the
- License, or (at your option) any later version. This software is
- distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
- License for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not, write
- to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org.
--->
-<!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" >
-<suite name="Gwt example" verbose="2" parallel="false">
- <test name="remoting_gwt_tests">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.remoting.gwt.test.selenium.GwtTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/pom.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>gwt</artifactId>
- <groupId>org.jboss.seam.examples.remoting</groupId>
- <version>2.3.0.Final-redhat-1</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
-
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-web</artifactId>
- <packaging>war</packaging>
- <name>Gwt Web Module (EE6)</name>
-
- <properties>
- <!-- filtering property for components.xml -->
- <jndiPattern>java:app/gwt-ejb/#{ejbName}</jndiPattern>
- </properties>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <webResources>
- <resource>
- <directory>src/main/webapp</directory>
- <filtering>true</filtering>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-resources</id>
- <phase>validate</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
- <resources>
- <resource>
- <directory>${basedir}/../gwt-ejb/target/gwt-ejb-${project.version}/org.jboss.seam.example.remoting.gwt.HelloWorld</directory>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
-</project>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<components xmlns="http://jboss.org/schema/seam/components"
- xmlns:core="http://jboss.org/schema/seam/core"
- xmlns:remoting="http://jboss.org/schema/seam/remoting"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation=
- "http://jboss.org/schema/seam/core http://jboss.org/schema/seam/core-2.3.xsd
- http://jboss.org/schema/seam/components http://jboss.org/schema/seam/components-2.3.xsd
- http://jboss.org/schema/seam/remoting http://jboss.org/schema/seam/remoting-2.3.xsd">
-
- <core:init jndi-pattern="${jndiPattern}" debug="true"/>
-
-</components>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/web.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/web.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/web.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<web-app version="3.0"
- xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
-
- <!-- Seam -->
-
- <listener>
- <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
- </listener>
-
- <filter>
- <filter-name>Seam Filter</filter-name>
- <filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
- </filter>
-
- <filter-mapping>
- <filter-name>Seam Filter</filter-name>
- <url-pattern>/*</url-pattern>
- </filter-mapping>
-
- <servlet>
- <servlet-name>Seam Resource Servlet</servlet-name>
- <servlet-class>org.jboss.seam.servlet.SeamResourceServlet</servlet-class>
- </servlet>
-
- <servlet-mapping>
- <servlet-name>Seam Resource Servlet</servlet-name>
- <url-pattern>/seam/resource/*</url-pattern>
- </servlet-mapping>
-
-</web-app>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/history.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/history.html 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/history.html 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,21 +0,0 @@
-<html>
-<head>
-<script>
-function hst() {
- var search = location.search;
- var historyToken = '';
- if (search.length > 0)
- historyToken = search.substring(1);
-
- document.getElementById('__gwt_historyToken').value = historyToken;
- if (parent.__gwt_onHistoryLoad) {
- parent.__gwt_onHistoryLoad(historyToken);
- }
-}
-</script></head>
-<body onload='hst()'>
-
-<input type='text' id='__gwt_historyToken' tabIndex='-1'>
-
-</body>
-</html>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/index.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/index.html 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/gwt-web/src/main/webapp/index.html 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,5 +0,0 @@
-<html>
-<head>
- <meta http-equiv="Refresh" content="0; URL=HelloWorld.html">
-</head>
-</html>
\ No newline at end of file
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/pom.xml 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>examples</artifactId>
- <groupId>org.jboss.seam</groupId>
- <version>2.3.0.Final-redhat-1</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam.examples.remoting</groupId>
- <artifactId>gwt</artifactId>
- <packaging>pom</packaging>
- <name>Gwt Example (EE6)</name>
-
- <modules>
- <module>gwt-ejb</module>
- <module>gwt-web</module>
- <module>gwt-ear</module>
- <module>gwt-tests</module>
- </modules>
-
- <properties>
- <example.name>gwt</example.name>
- </properties>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ejb</artifactId>
- <version>${project.version}</version>
- <type>ejb</type>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-web</artifactId>
- <version>${project.version}</version>
- <type>war</type>
- </dependency>
- <dependency>
- <groupId>org.jboss.seam.examples.remoting.gwt</groupId>
- <artifactId>gwt-ear</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
-</project>
Deleted: branches/enterprise/WFK-2_1/examples/remoting/gwt/readme.txt
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/gwt/readme.txt 2012-10-31 16:04:32 UTC (rev 15337)
+++ branches/enterprise/WFK-2_1/examples/remoting/gwt/readme.txt 2012-10-31 16:05:10 UTC (rev 15338)
@@ -1,29 +0,0 @@
-Seam Remoting/Gwt Example
-=========================
-
-This example shows GWT with Seam remoting.
-
-To deploy the example, follow these steps:
-
-* In the example root directory run:
-
- mvn clean install
-
-* Set JBOSS_HOME environment property.
-
-* In the gwt-ear directory run:
-
- mvn jboss-as:deploy
-
-* Open this URL in a web browser: http://localhost:8080/seam-gwt
-
-The Gwt front-end is being generated each time upon issuing "mvn package".
-The artifacts are generated in gwt-ejb submodule and later coppied to
-gwt-web submodule's output directory.
-
-This feature was added in Seam 2.3 version. Before that, the Gwt artifacts
-were pre-build in a source directory.
-
-If you want to use the GWT hosted mode, well, read all about it from the
-GWT docs ! A gwt-maven-plugin generating Gwt front-end has this capability,
-though.
12 years
Seam SVN: r15337 - branches/enterprise/WFK-2_1/jboss-seam-mail/src/main/java/org/jboss/seam/mail/ui.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-31 12:04:32 -0400 (Wed, 31 Oct 2012)
New Revision: 15337
Modified:
branches/enterprise/WFK-2_1/jboss-seam-mail/src/main/java/org/jboss/seam/mail/ui/UIBody.java
Log:
bz 868343 fixed wrong backport for mail multiple attachments
Modified: branches/enterprise/WFK-2_1/jboss-seam-mail/src/main/java/org/jboss/seam/mail/ui/UIBody.java
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-mail/src/main/java/org/jboss/seam/mail/ui/UIBody.java 2012-10-31 14:40:09 UTC (rev 15336)
+++ branches/enterprise/WFK-2_1/jboss-seam-mail/src/main/java/org/jboss/seam/mail/ui/UIBody.java 2012-10-31 16:04:32 UTC (rev 15337)
@@ -1,8 +1,8 @@
package org.jboss.seam.mail.ui;
import java.io.IOException;
+import java.util.ArrayList;
import java.util.List;
-import java.util.ArrayList;
import javax.faces.FacesException;
import javax.faces.component.UIComponent;
@@ -81,11 +81,12 @@
}
else
{
- // reset the attachment list after adding to message body
- // This is because ui:message can be in ui:repeat tag JBSEAM-4811
- findMessage().setAttachments(new ArrayList<MimeBodyPart>());
+ getRootMultipart().addBodyPart(attachment);
}
}
+ // reset the attachment list after adding to message body
+ // This is because ui:message can be in ui:repeat tag JBPAPP-6650
+ findMessage().setAttachments(new ArrayList<MimeBodyPart>());
}
if (bodyMultipart != null)
{
12 years
Seam SVN: r15336 - branches/enterprise/WFK-2_1/jboss-seam-gen/dist/view/resources.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-31 10:40:09 -0400 (Wed, 31 Oct 2012)
New Revision: 15336
Modified:
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/view/resources/theme.ecss
Log:
bz 866976 fixed theme.ecss in seam-gen
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/view/resources/theme.ecss
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/view/resources/theme.ecss 2012-10-31 14:40:01 UTC (rev 15335)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/view/resources/theme.ecss 2012-10-31 14:40:09 UTC (rev 15336)
@@ -17,13 +17,11 @@
color:'#{richSkin.controlTextColor}';
background-position:left top;
background-repeat:repeat-x;
- background-image:"url(#{resource['org.richfaces.renderkit.html.images.SliderFieldGradient']})";
border:1px solid;
border-color:'#{richSkin.tableBorderColor}';
}
select{
background-color:transparent;
- background-image:"url(#{resource['org.richfaces.renderkit.html.images.SliderFieldGradient']})";
}
option{
background-color:'#{richSkin.generalBackgroundColor}';
@@ -36,7 +34,7 @@
}
input[type=submit], input[type=button]{
padding:1px 4px;
- background-image:"url(#{resource['org.richfaces.renderkit.html.GradientA']})";
+ background-image:"url(#{resource['org.richfaces.images\:fuBtnGrad.png']})";
border:1px solid;
border-color:'#{richSkin.headerBackgroundColor}';
color:'#{richSkin.headerTextColor}';
@@ -49,9 +47,6 @@
border:0;
font-size:11px;
}
-.rf-tbl-subheadercell{
- background-image:"url(#{resource['org.richfaces.renderkit.images.TabGradientB']})";
-}
.rf-tb a:link, .rf-tb a:visited, .rf-tb a:active, .rf-tb a:hover{
color:'#{richSkin.headerTextColor}';
}
@@ -64,19 +59,17 @@
.rf-tbl-subheadercell a:hover{
color:'#{richSkin.calendarHolidaysTextColor}';
}
-input[type=text][class*=rich-combobox-button-icon]{
- background-image:"url(#{resource['org.richfaces.renderkit.html.images.ComboBoxArrowImage']})";
+input.rich-combobox-button-icon[type=text]{
+ background-image:"url(#{resource['org.richfaces.images\:sliderSelectedArrowBottom.png']})";
background-color:transparent;
}
input[type=text][class~=rich-combobox-button-icon-disabled]{
- background-image:"url(#{resource['org.richfaces.renderkit.html.images.ComboBoxArrowImageDisable']})";
+ background-image:"url(#{resource['org.richfaces.images\:sliderDisabledArrowBottom.png']})";
background-color:transparent;
}
-input[type=text][class*=rich-combobox-button-background]{
- background-image:"url(#{resource['org.richfaces.renderkit.html.images.SpinnerButtonGradient']})";
+input.rich-combobox-button-background[type=text]{
background-color:'#{richSkin.tabBackgroundColor}';
}
input[type=text][class~=rich-combobox-button-pressed-background]{
- background-image:"url(#{resource['org.richfaces.renderkit.html.images.ComboBoxButtonPressGradient']})";
background-color:'#{richSkin.tabBackgroundColor}';
}
12 years
Seam SVN: r15335 - in branches/enterprise/WFK-2_1/jboss-seam-gen/dist: build-scripts and 1 other directory.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-31 10:40:01 -0400 (Wed, 31 Oct 2012)
New Revision: 15335
Modified:
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build-war.xml
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build.xml
branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml
Log:
fix other issues while creating seam-gen project
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build-war.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build-war.xml 2012-10-31 14:39:52 UTC (rev 15334)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build-war.xml 2012-10-31 14:40:01 UTC (rev 15335)
@@ -54,7 +54,7 @@
<taskdef name="groovyc"
classname ="org.codehaus.groovy.ant.Groovyc"
- classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
+ classpath="${lib.dir}/groovy-all.jar"/>
<mkdir dir="${classes.model.dir}" />
<mkdir dir="${classes.action.dir}" />
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build.xml 2012-10-31 14:39:52 UTC (rev 15334)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build-scripts/build.xml 2012-10-31 14:40:01 UTC (rev 15335)
@@ -51,10 +51,10 @@
</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 -->
+ classpath="${lib.dir}/groovy-all.jar"/>
+
<mkdir dir="${jar.dir}"/>
<mkdir dir="${ear.dir}"/>
<mkdir dir="${war.dir}"/>
Modified: branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml 2012-10-31 14:39:52 UTC (rev 15334)
+++ branches/enterprise/WFK-2_1/jboss-seam-gen/dist/build.xml 2012-10-31 14:40:01 UTC (rev 15335)
@@ -748,7 +748,11 @@
<target name="copy-lib" depends="copy-icefaces-home, copy-icefaces-maven">
<echo message="Copying Seam and dependencies to the ${project.home}/lib directory..."/>
-
+
+ <ant antfile="${seam.dir}/get-arquillian-libs.xml" target="copyarq">
+ <property name="test.lib.dir" value="${seam.dir}/lib/test"/>
+ </ant>
+
<copy todir="${project.home}/lib" overwrite="true">
<fileset dir="${seam.dir}/lib">
<exclude name="richfaces*.jar" if="icefaces.property"/>
12 years
Seam SVN: r15334 - branches/enterprise/WFK-2_1/distribution.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-31 10:39:52 -0400 (Wed, 31 Oct 2012)
New Revision: 15334
Modified:
branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml
Log:
removed extra space
Modified: branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml
===================================================================
--- branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml 2012-10-31 10:07:18 UTC (rev 15333)
+++ branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml 2012-10-31 14:39:52 UTC (rev 15334)
@@ -8,8 +8,8 @@
<property name="test.lib.dir" location="test" />
<property name="version.jboss-as7" value="7.1.1.Final"/>
- <property name="version.arquillian-junit" value="1.0.1.Final"/>
- <target name="copyarq" >
+ <property name="version.arquillian-junit" value="1.0.1.Final"/>
+ <target name="copyarq">
<mkdir dir="${test.lib.dir}"/>
<aether:resolve>
<aether:dependencies>
12 years
Seam SVN: r15333 - branches/enterprise/WFK-2_1/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring.
by seam-commits@lists.jboss.org
Author: vdedik
Date: 2012-10-31 06:07:18 -0400 (Wed, 31 Oct 2012)
New Revision: 15333
Modified:
branches/enterprise/WFK-2_1/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java
Log:
wrong exception message in SeamNamespaceHandler
Modified: branches/enterprise/WFK-2_1/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java 2012-10-31 10:04:58 UTC (rev 15332)
+++ branches/enterprise/WFK-2_1/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java 2012-10-31 10:07:18 UTC (rev 15333)
@@ -133,7 +133,7 @@
{
throw new IllegalStateException("Unable to load class '"
+ SEAM_COMPONENT_POST_PROCESSOR
- + "' make sure you have the spring-web.jar in your classpath.", e);
+ + "' make sure you have the jboss-seam-ioc.jar in your classpath.", e);
}
RootBeanDefinition beanDefinition = new RootBeanDefinition(cls);
beanDefinition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
12 years
Seam SVN: r15332 - branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring.
by seam-commits@lists.jboss.org
Author: vdedik
Date: 2012-10-31 06:04:58 -0400 (Wed, 31 Oct 2012)
New Revision: 15332
Modified:
branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java
Log:
wrong exception message in SeamNamespaceHandler
Modified: branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java 2012-10-30 16:11:14 UTC (rev 15331)
+++ branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java 2012-10-31 10:04:58 UTC (rev 15332)
@@ -133,7 +133,7 @@
{
throw new IllegalStateException("Unable to load class '"
+ SEAM_COMPONENT_POST_PROCESSOR
- + "' make sure you have the spring-web.jar in your classpath.", e);
+ + "' make sure you have the jboss-seam-ioc.jar in your classpath.", e);
}
RootBeanDefinition beanDefinition = new RootBeanDefinition(cls);
beanDefinition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
12 years
Seam SVN: r15331 - in branches/community/Seam_2_3: seam-reference-guide/src/docbook/as-IN and 25 other directories.
by seam-commits@lists.jboss.org
Author: vdedik
Date: 2012-10-30 12:11:14 -0400 (Tue, 30 Oct 2012)
New Revision: 15331
Modified:
branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java
branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Glassfish.xml
branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Weblogic.xml
branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Websphere.xml
branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Glassfish.pot
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Weblogic.pot
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Websphere.pot
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Websphere.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Glassfish.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Weblogic.po
branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Websphere.po
Log:
amend
Modified: branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/jboss-seam-ioc/src/main/java/org/jboss/seam/ioc/spring/SeamNamespaceHandler.java 2012-10-30 16:11:14 UTC (rev 15331)
@@ -133,7 +133,7 @@
{
throw new IllegalStateException("Unable to load class '"
+ SEAM_COMPONENT_POST_PROCESSOR
- + "' make sure you have the jboss-seam-spring.jar in your classpath.", e);
+ + "' make sure you have the spring-web.jar in your classpath.", e);
}
RootBeanDefinition beanDefinition = new RootBeanDefinition(cls);
beanDefinition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/as-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/bn-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/de-DE/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Glassfish.xml
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Glassfish.xml 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Glassfish.xml 2012-10-30 16:11:14 UTC (rev 15331)
@@ -231,7 +231,7 @@
<itemizedlist>
<listitem>
<para>
- Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>.
+ Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>.
</para>
</listitem>
<listitem>
@@ -244,7 +244,7 @@
<listitem>
<para>
You can now access the application at
- <literal>http://localhost:8081/jboss-seam-jpa/</literal>.
+ <literal>http://localhost:8081/jpa-web/</literal>.
</para>
</listitem>
</itemizedlist>
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Weblogic.xml
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Weblogic.xml 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Weblogic.xml 2012-10-30 16:11:14 UTC (rev 15331)
@@ -938,12 +938,12 @@
it into the autodeploy directory.
</para>
- <programlisting>cp ./dist-weblogic10/jboss-seam-jpa.war
+ <programlisting>cp ./dist-weblogic10/jpa-web.war
$BEA_HOME/user_projects/domains/seam_examples/autodeploy</programlisting>
<para>
Check out the application at the following
- <literal>http://localhost:7001/jboss-seam-jpa/</literal>
+ <literal>http://localhost:7001/jpa-web/</literal>
.
</para>
</section>
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Websphere.xml
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Websphere.xml 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/en-US/Websphere.xml 2012-10-30 16:11:14 UTC (rev 15331)
@@ -583,7 +583,7 @@
</para>
<para>
Follow the same instructions as for the <literal>jee5/booking</literal> sample. Select the
- <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</literal> file on the first page and on the
+ <literal>examples/jpa/dist-websphere7/jpa-web.war</literal> file on the first page and on the
<literal>Map context roots for Web modules</literal> page (after the <literal>Map virtual host for Web module</literal>),
enter the context root you want to use for your application in the <literal>Context Root</literal> input field.
</para>
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-ES/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/es-MX/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -300,14 +300,14 @@
#. Tag: para
#: Glassfish.xml:233
#, no-c-format
-msgid "Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
-msgstr "Navigez vers <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+msgid "Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
+msgstr "Navigez vers <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
#. Tag: para
#: Glassfish.xml:245
#, no-c-format
-msgid "You can now access the application at <literal>http://localhost:8081/jboss-seam-jpa/</literal>."
-msgstr "Vous pouvez maintenant accéder à l'application sur <literal>http://localhost:8081/jboss-seam-jpa/</literal>."
+msgid "You can now access the application at <literal>http://localhost:8081/jpa-web/</literal>."
+msgstr "Vous pouvez maintenant accéder à l'application sur <literal>http://localhost:8081/jpa-web/</literal>."
#. Tag: title
#: Glassfish.xml:255
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/fr-FR/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/gu-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/hi-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -302,14 +302,14 @@
#. Tag: para
#: Glassfish.xml:233
#, no-c-format
-msgid "Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
-msgstr "Navigare su <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+msgid "Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
+msgstr "Navigare su <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
#. Tag: para
#: Glassfish.xml:245
#, no-c-format
-msgid "You can now access the application at <literal>http://localhost:8081/jboss-seam-jpa/</literal>."
-msgstr "Ora è possibile accedere all'applicazione all'indirizzo <literal>http://localhost:8081/jboss-seam-jpa/</literal>."
+msgid "You can now access the application at <literal>http://localhost:8081/jpa-web/</literal>."
+msgstr "Ora è possibile accedere all'applicazione all'indirizzo <literal>http://localhost:8081/jpa-web/</literal>."
#. Tag: title
#: Glassfish.xml:255
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1096,17 +1096,17 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
#. Tag: para
#: Weblogic.xml:850
#, no-c-format
-msgid "Check out the application at the following <literal>http://localhost:7001/jboss-seam-jpa/</literal> ."
-msgstr "Verifichiamo il funzionamento all'indirizzo <literal>http://localhost:7001/jboss-seam-jpa/</literal> ."
+msgid "Check out the application at the following <literal>http://localhost:7001/jpa-web/</literal> ."
+msgstr "Verifichiamo il funzionamento all'indirizzo <literal>http://localhost:7001/jpa-web/</literal> ."
#. Tag: title
#: Weblogic.xml:858
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/it-IT/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1054,7 +1054,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
@@ -1069,7 +1069,7 @@
"localhost:9080/<context root></literal>."
msgstr ""
"Si può ora accedere all'applicazione all'indirizzo <literal>http://"
-"localhost:9080/jboss-seam-jpa/index.html</literal>."
+"localhost:9080/jpa-web/index.html</literal>."
#. Tag: title
#: Websphere.xml:571
@@ -1606,7 +1606,7 @@
#~ "pulsante <literal>Install</literal>."
#~ msgid ""
-#~ "Browse to the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+#~ "Browse to the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
#~ "literal> file using the file upload widget."
#~ msgstr ""
#~ "Navigare fino al file <literal>examples/jpa/dist-websphere7/jboss-seam-"
@@ -1644,12 +1644,12 @@
#~ "As with the <literal>jee5</literal> example there are some class loader "
#~ "changes needed before we start the application. Follow the instructions "
#~ "at <xref linkend=\"websphere-app-adj-after-install\"/> but exchange "
-#~ "<literal>jboss-seam-jpa_war</literal> for <literal>Seam Booking</literal>."
+#~ "<literal>jpa-web_war</literal> for <literal>Seam Booking</literal>."
#~ msgstr ""
#~ "Come per l'esempio <literal>jee5</literal> ci sono alcuni cambiamenti "
#~ "necessari al class loader prima di avviare l'applicazione. Seguire le "
#~ "istruzioni in <xref linkend=\"websphere-app-adj-after-install\"/> e "
-#~ "cambiare <literal>jboss-seam-jpa_war</literal> per <literal>Seam Booking</"
+#~ "cambiare <literal>jpa-web_war</literal> per <literal>Seam Booking</"
#~ "literal>."
#~ msgid ""
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -398,9 +398,9 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
-"ブラウザで <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal> "
+"ブラウザで <literal>examples/jpa/dist-glassfish/jpa-web.war</literal> "
"を指定してください。"
#. Tag: para
@@ -410,7 +410,7 @@
"You can now access the application at <literal>http://localhost:8081/jboss-"
"seam-jpa/</literal>."
msgstr ""
-"<literal>http://localhost:8081/jboss-seam-jpa/</literal> からアプリケーション"
+"<literal>http://localhost:8081/jpa-web/</literal> からアプリケーション"
"にアクセスできます。"
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1644,10 +1644,10 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
#. Tag: para
@@ -1655,9 +1655,9 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
-" <literal>http://localhost:7001/jboss-seam-jpa/</literal>に従って、アプリケー"
+" <literal>http://localhost:7001/jpa-web/</literal>に従って、アプリケー"
"ションをチェックアウトしてください。"
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ja-JP/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1056,7 +1056,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
@@ -1070,7 +1070,7 @@
"When started, you can now access the application at the <literal>http://"
"localhost:9080/<context root></literal>."
msgstr ""
-"<literal>http://localhost:9080/jboss-seam-jpa/index.html</literal> からアプリ"
+"<literal>http://localhost:9080/jpa-web/index.html</literal> からアプリ"
"ケーションにアクセスできます。"
#. Tag: title
@@ -1610,11 +1610,11 @@
#, fuzzy
#~ msgid ""
-#~ "Browse to the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+#~ "Browse to the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
#~ "literal> file using the file upload widget."
#~ msgstr ""
#~ "ファイルアップロードのウィジェットを使用して、ブラウザで "
-#~ "<literal>examples/jpa/dist-websphere61/jboss-seam-jpa.war</literal> ファイ"
+#~ "<literal>examples/jpa/dist-websphere61/jpa-web.war</literal> ファイ"
#~ "ルを指定してください。"
#~ msgid ""
@@ -1651,12 +1651,12 @@
#~ "As with the <literal>jee5</literal> example there are some class loader "
#~ "changes needed before we start the application. Follow the instructions "
#~ "at <xref linkend=\"websphere-app-adj-after-install\"/> but exchange "
-#~ "<literal>jboss-seam-jpa_war</literal> for <literal>Seam Booking</literal>."
+#~ "<literal>jpa-web_war</literal> for <literal>Seam Booking</literal>."
#~ msgstr ""
#~ "<literal>jee5</literal> サンプルについては、アプリケーションの実行に前にク"
#~ "ラスローダを変更する必要があります。<xref linkend=\"websphere-app-adj-"
#~ "after-install\"/> の手順に従ってください。但し、<literal>Seam Booking</"
-#~ "literal> を<literal>jboss-seam-jpa</literal> と置き換えて使用してくださ"
+#~ "literal> を<literal>jpa-web</literal> と置き換えて使用してくださ"
#~ "い。"
#~ msgid ""
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/kn-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ko-KR/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ml-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/mr-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/or-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pa-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Glassfish.pot
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Glassfish.pot 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Glassfish.pot 2012-10-30 16:11:14 UTC (rev 15331)
@@ -347,7 +347,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Weblogic.pot
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Weblogic.pot 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Weblogic.pot 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1265,7 +1265,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1274,7 +1274,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Websphere.pot
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Websphere.pot 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pot/Websphere.pot 2012-10-30 16:11:14 UTC (rev 15331)
@@ -955,7 +955,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/pt-BR/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ru-RU/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/si-LK/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/sl-SL/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/ta-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/te-IN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-CN/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Glassfish.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Glassfish.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Glassfish.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -346,7 +346,7 @@
#: Glassfish.xml:233
#, no-c-format
msgid ""
-"Browse to <literal>examples/jpa/dist-glassfish/jboss-seam-jpa.war</literal>."
+"Browse to <literal>examples/jpa/dist-glassfish/jpa-web.war</literal>."
msgstr ""
#. Tag: para
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Weblogic.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Weblogic.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Weblogic.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -1264,7 +1264,7 @@
#: Weblogic.xml:848
#, no-c-format
msgid ""
-"cp ./dist-weblogic10/jboss-seam-jpa.war\n"
+"cp ./dist-weblogic10/jpa-web.war\n"
"$BEA_HOME/user_projects/domains/seam_examples/autodeploy"
msgstr ""
@@ -1273,7 +1273,7 @@
#, no-c-format
msgid ""
"Check out the application at the following <literal>http://localhost:7001/"
-"jboss-seam-jpa/</literal> ."
+"jpa-web/</literal> ."
msgstr ""
#. Tag: title
Modified: branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Websphere.po
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Websphere.po 2012-10-30 16:10:55 UTC (rev 15330)
+++ branches/community/Seam_2_3/seam-reference-guide/src/docbook/zh-TW/Websphere.po 2012-10-30 16:11:14 UTC (rev 15331)
@@ -954,7 +954,7 @@
#, no-c-format
msgid ""
"Follow the same instructions as for the <literal>jee5/booking</literal> "
-"sample. Select the <literal>examples/jpa/dist-websphere7/jboss-seam-jpa.war</"
+"sample. Select the <literal>examples/jpa/dist-websphere7/jpa-web.war</"
"literal> file on the first page and on the <literal>Map context roots for "
"Web modules</literal> page (after the <literal>Map virtual host for Web "
"module</literal>), enter the context root you want to use for your "
12 years