Seam SVN: r11300 - in modules/trunk: drools/src/main/java/org/jboss/seam/drools and 6 other directories.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-07-21 15:15:49 -0400 (Tue, 21 Jul 2009)
New Revision: 11300
Modified:
modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java
modules/trunk/drools/src/main/java/org/jboss/seam/drools/ManagedWorkingMemory.java
modules/trunk/faces/src/main/java/org/jboss/seam/faces/application/SeamViewHandler.java
modules/trunk/faces/src/main/java/org/jboss/seam/faces/el/SeamFacesELResolver.java
modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPhaseListener.java
modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPreRenderViewListener.java
modules/trunk/security/src/main/java/org/jboss/seam/security/Identity.java
modules/trunk/security/src/main/java/org/jboss/seam/security/JpaTokenStore.java
modules/trunk/security/src/main/java/org/jboss/seam/security/RememberMe.java
modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityEventMessages.java
modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityInterceptor.java
modules/trunk/security/src/main/java/org/jboss/seam/security/management/IdentityManager.java
modules/trunk/security/src/main/java/org/jboss/seam/security/management/JpaIdentityStore.java
modules/trunk/security/src/main/java/org/jboss/seam/security/permission/EntityIdentifierStrategy.java
modules/trunk/security/src/main/java/org/jboss/seam/security/permission/JpaPermissionStore.java
modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PermissionMapper.java
modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PersistentPermissionResolver.java
modules/trunk/security/src/main/java/org/jboss/seam/security/permission/RuleBasedPermissionResolver.java
Log:
yet more compile fixes
Modified: modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java
===================================================================
--- modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -19,4 +19,16 @@
return instance;
}
+
+ public static Object getInstanceByName(BeanManager manager, String name) {
+ Set<Bean<?>> beans = manager.getBeans(name);
+ if (beans.size()>0) {
+ if (beans.size()>1) {
+ throw new IllegalStateException("unable to uniquely resolve " + name);
+ }
+ return manager.getMostSpecializedBean(beans.iterator().next());
+ }
+ return null;
+ }
+
}
Modified: modules/trunk/drools/src/main/java/org/jboss/seam/drools/ManagedWorkingMemory.java
===================================================================
--- modules/trunk/drools/src/main/java/org/jboss/seam/drools/ManagedWorkingMemory.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/drools/src/main/java/org/jboss/seam/drools/ManagedWorkingMemory.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -1,15 +1,18 @@
package org.jboss.seam.drools;
import java.io.Serializable;
+import java.util.Set;
import javax.annotation.PreDestroy;
import javax.enterprise.context.ConversationScoped;
import javax.enterprise.inject.Current;
import javax.enterprise.inject.Produces;
+import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
import org.drools.RuleBase;
import org.drools.StatefulSession;
+import org.drools.rule.Rule;
import org.drools.spi.GlobalResolver;
import org.jboss.seam.el.Expressions.ValueExpression;
@@ -73,15 +76,19 @@
protected RuleBase getRuleBaseFromValueBinding()
{
- RuleBase ruleBase;
+ RuleBase ruleBase = null;
if (this.ruleBase!=null)
{
ruleBase = this.ruleBase.getValue();
}
else if (ruleBaseName!=null)
{
- //deprecated stuff
- ruleBase = (RuleBase) manager.getInstanceByName(ruleBaseName);
+ Set<Bean<?>> beans = manager.getBeans(ruleBaseName);
+ if (beans.size() == 1) {
+ //deprecated stuff
+ Bean<?> bean = beans.iterator().next();
+ ruleBase = (RuleBase) manager.getReference(bean, RuleBase.class, manager.createCreationalContext(bean));
+ }
}
else
{
Modified: modules/trunk/faces/src/main/java/org/jboss/seam/faces/application/SeamViewHandler.java
===================================================================
--- modules/trunk/faces/src/main/java/org/jboss/seam/faces/application/SeamViewHandler.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/faces/src/main/java/org/jboss/seam/faces/application/SeamViewHandler.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -7,6 +7,7 @@
import javax.faces.application.ViewHandlerWrapper;
import javax.faces.context.FacesContext;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.bridge.ManagerBridge;
import org.jboss.seam.faces.lifecycle.ConvertStatusMessagesProcessor;
@@ -46,7 +47,8 @@
if (context.getExternalContext().getSession(false) != null)
{
// QUESTION hmmm, we have to convert to faces messages now to leverage JSF's flash feature...I suppose that is okay
- ManagerBridge.getProvider().getCurrentManager().getInstanceByType(ConvertStatusMessagesProcessor.class).execute();
+ BeanManagerHelper.getInstanceByType(ManagerBridge.getProvider().getCurrentManager(),
+ ConvertStatusMessagesProcessor.class).execute();
// should I move this next step into TransferStatusMessagesListener?
if (context.getMessages().hasNext())
{
Modified: modules/trunk/faces/src/main/java/org/jboss/seam/faces/el/SeamFacesELResolver.java
===================================================================
--- modules/trunk/faces/src/main/java/org/jboss/seam/faces/el/SeamFacesELResolver.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/faces/src/main/java/org/jboss/seam/faces/el/SeamFacesELResolver.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -113,7 +113,8 @@
if (beans.size() == 1)
{
context.setPropertyResolved(true);
- return manager.getInstance(beans.iterator().next());
+ Bean<?> bean = beans.iterator().next();
+ return manager.getReference(bean, Object.class, manager.createCreationalContext(bean));
}
}
Modified: modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPhaseListener.java
===================================================================
--- modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPhaseListener.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPhaseListener.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -4,6 +4,7 @@
import javax.faces.event.PhaseId;
import javax.faces.event.PhaseListener;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.bridge.ManagerBridge;
/**
@@ -32,7 +33,7 @@
protected ManagedSeamPhaseListener getDelegate()
{
- return ManagerBridge.getProvider().getCurrentManager().getInstanceByType(ManagedSeamPhaseListener.class);
+ return BeanManagerHelper.getInstanceByType(ManagerBridge.getProvider().getCurrentManager(),ManagedSeamPhaseListener.class);
}
}
Modified: modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPreRenderViewListener.java
===================================================================
--- modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPreRenderViewListener.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/faces/src/main/java/org/jboss/seam/faces/lifecycle/SeamPreRenderViewListener.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -9,6 +9,7 @@
import javax.faces.event.SystemEvent;
import javax.faces.event.SystemEventListener;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.bridge.ManagerBridge;
/**
@@ -47,7 +48,7 @@
BeanManager manager = ManagerBridge.getProvider().getCurrentManager();
for (Class<? extends FacesSystemEventProcessor> processorType : processorTypes)
{
- boolean result = manager.getInstanceByType(processorType).execute();
+ boolean result = BeanManagerHelper.getInstanceByType(manager, processorType).execute();
if (!result)
{
break;
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/Identity.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/Identity.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/Identity.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -27,6 +27,7 @@
import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.el.Expressions;
import org.jboss.seam.security.callbacks.AuthenticatorCallback;
import org.jboss.seam.security.callbacks.IdentityCallback;
@@ -115,7 +116,7 @@
*/
public boolean tryLogin()
{
- RequestSecurityState state = manager.getInstanceByType(RequestSecurityState.class);
+ RequestSecurityState state = BeanManagerHelper.getInstanceByType(manager, RequestSecurityState.class);
if (!authenticating && getPrincipal() == null && credentials.isSet() && !state.isLoginTried())
{
@@ -212,7 +213,7 @@
// If authentication has already occurred during this request via a silent login,
// and login() is explicitly called then we still want to raise the LOGIN_SUCCESSFUL event,
// and then return.
- RequestSecurityState state = manager.getInstanceByType(RequestSecurityState.class);
+ RequestSecurityState state = BeanManagerHelper.getInstanceByType(manager, RequestSecurityState.class);
if (state.isSilentLogin())
{
manager.fireEvent(new LoggedInEvent(principal));
@@ -271,7 +272,7 @@
{
authenticate();
- RequestSecurityState state = manager.getInstanceByType(RequestSecurityState.class);
+ RequestSecurityState state = BeanManagerHelper.getInstanceByType(manager, RequestSecurityState.class);
if (isLoggedIn())
{
state.setSilentLogin(true);
@@ -384,8 +385,9 @@
createCallbackHandler());
}
- Bean<Configuration> configBean = manager.getBeans(Configuration.class).iterator().next();
- Configuration config = manager.getInstance(configBean);
+ @SuppressWarnings("unchecked")
+ Bean<Configuration> configBean = (Bean<Configuration>) manager.getBeans(Configuration.class).iterator().next();
+ Configuration config = (Configuration) manager.getReference(configBean, Configuration.class, manager.createCreationalContext(configBean));
return new LoginContext(JaasConfiguration.DEFAULT_JAAS_CONFIG_NAME, getSubject(),
createCallbackHandler(), config);
@@ -400,13 +402,14 @@
{
final Identity identity = this;
final Authenticator authenticator;
- final IdentityManager identityManager = manager.getInstanceByType(IdentityManager.class);
+ final IdentityManager identityManager = BeanManagerHelper.getInstanceByType(manager, IdentityManager.class);
- Set<Bean<Authenticator>> authenticators = manager.getBeans(Authenticator.class);
+ Set<Bean<?>> authenticators = manager.getBeans(Authenticator.class);
if (authenticators.size() == 1)
{
- Bean<Authenticator> authenticatorBean = authenticators.iterator().next();
- authenticator = manager.getInstance(authenticatorBean);
+ @SuppressWarnings("unchecked")
+ Bean<Authenticator> authenticatorBean = (Bean<Authenticator>) authenticators.iterator().next();
+ authenticator = (Authenticator) manager.getReference(authenticatorBean, Authenticator.class, manager.createCreationalContext(authenticatorBean));
}
else if (authenticators.size() > 1)
{
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/JpaTokenStore.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/JpaTokenStore.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/JpaTokenStore.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -10,6 +10,7 @@
import javax.persistence.NoResultException;
import javax.persistence.Query;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.annotations.TokenUsername;
import org.jboss.seam.security.annotations.TokenValue;
import org.jboss.seam.security.management.IdentityManagementException;
@@ -138,6 +139,6 @@
private EntityManager lookupEntityManager()
{
- return manager.getInstanceByType(EntityManager.class);
+ return BeanManagerHelper.getInstanceByType(manager, EntityManager.class);
}
}
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/RememberMe.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/RememberMe.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/RememberMe.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -12,8 +12,9 @@
import javax.enterprise.inject.Named;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
-import javax.event.Observes;
+import javax.enterprise.event.Observes;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.events.CredentialsInitializedEvent;
import org.jboss.seam.security.events.LoggedOutEvent;
import org.jboss.seam.security.events.PostAuthenticateEvent;
@@ -66,24 +67,22 @@
@Initializer
void create()
{
- Bean<ManagedCookie> selectorBean = manager.getBeans(ManagedCookie.class).iterator().next();
-
if (mode.equals(Mode.usernameOnly))
{
- usernameSelector = manager.getInstance(selectorBean);
+ usernameSelector = (ManagedCookie) BeanManagerHelper.getInstanceByType(manager, ManagedCookie.class);
usernameSelector.setCookieName("org.jboss.seam.security.username");
usernameSelector.setCookieEnabled(enabled);
}
else if (mode.equals(Mode.autoLogin))
{
- tokenSelector = manager.getInstance(selectorBean);
+ tokenSelector = (ManagedCookie) BeanManagerHelper.getInstanceByType(manager, ManagedCookie.class);
tokenSelector.setCookieName("org.jboss.seam.security.authtoken");
tokenSelector.setCookieEnabled(enabled);
// Default to JpaTokenStore
if (tokenStore == null)
{
- tokenStore = manager.getInstanceByType(JpaTokenStore.class);
+ tokenStore = BeanManagerHelper.getInstanceByType(manager,JpaTokenStore.class);
}
}
}
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityEventMessages.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityEventMessages.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityEventMessages.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -2,7 +2,7 @@
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.inject.Current;
-import javax.event.Observes;
+import javax.enterprise.event.Observes;
import org.jboss.seam.international.StatusMessages;
import org.jboss.seam.international.StatusMessage.Severity;
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityInterceptor.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityInterceptor.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/SecurityInterceptor.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -15,6 +15,7 @@
import javax.interceptor.Interceptor;
import javax.interceptor.InvocationContext;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.annotations.PermissionCheck;
import org.jboss.seam.security.annotations.Restrict;
import org.jboss.seam.security.annotations.RoleCheck;
@@ -161,7 +162,7 @@
Restriction restriction = getRestriction(interfaceMethod);
if ( restriction != null )
{
- Identity identity = manager.getInstanceByType(Identity.class);
+ Identity identity = BeanManagerHelper.getInstanceByType(manager, Identity.class);
restriction.check(identity, invocation.getParameters());
}
}
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/management/IdentityManager.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/management/IdentityManager.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/management/IdentityManager.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -13,6 +13,7 @@
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.Identity;
import org.jboss.seam.security.util.Strings;
import org.jboss.webbeans.log.Log;
@@ -56,8 +57,7 @@
// Default to JpaIdentityStore
if (identityStore == null)
{
- Bean<JpaIdentityStore> jpaIdentityStoreBean = manager.getBeans(JpaIdentityStore.class).iterator().next();
- identityStore = manager.getInstance(jpaIdentityStoreBean);
+ identityStore = BeanManagerHelper.getInstanceByType(manager,JpaIdentityStore.class);
}
if (roleIdentityStore == null && identityStore != null)
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/management/JpaIdentityStore.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/management/JpaIdentityStore.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/management/JpaIdentityStore.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -19,6 +19,7 @@
import javax.persistence.NoResultException;
import javax.persistence.PersistenceContext;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.Role;
import org.jboss.seam.security.SimplePrincipal;
import org.jboss.seam.security.crypto.BinTools;
@@ -904,6 +905,6 @@
protected PasswordHash getPasswordHash()
{
- return manager.getInstanceByType(PasswordHash.class);
+ return BeanManagerHelper.getInstanceByType(manager, PasswordHash.class);
}
}
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/permission/EntityIdentifierStrategy.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/permission/EntityIdentifierStrategy.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/permission/EntityIdentifierStrategy.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -8,6 +8,7 @@
import javax.persistence.Entity;
import javax.persistence.EntityManager;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.el.Expressions;
import org.jboss.seam.security.annotations.permission.Identifier;
import org.jboss.seam.security.util.Strings;
@@ -70,6 +71,6 @@
private EntityManager lookupEntityManager()
{
//return entityManager.getValue();
- return manager.getInstanceByType(EntityManager.class);
+ return BeanManagerHelper.getInstanceByType(manager, EntityManager.class);
}
}
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/permission/JpaPermissionStore.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/permission/JpaPermissionStore.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/permission/JpaPermissionStore.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -16,6 +16,7 @@
import javax.persistence.EntityManager;
import javax.persistence.Query;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.Role;
import org.jboss.seam.security.SimplePrincipal;
import org.jboss.seam.security.annotations.permission.PermissionAction;
@@ -527,8 +528,8 @@
{
boolean recipientIsRole = recipient instanceof Role;
- JpaIdentityStore identityStore = manager.getInstanceByType(JpaIdentityStore.class);
- JpaIdentityStoreConfig config = manager.getInstanceByType(JpaIdentityStoreConfig.class);
+ JpaIdentityStore identityStore = BeanManagerHelper.getInstanceByType(manager, JpaIdentityStore.class);
+ JpaIdentityStoreConfig config = BeanManagerHelper.getInstanceByType(manager, JpaIdentityStoreConfig.class);
if (identityStore != null)
{
@@ -550,8 +551,8 @@
{
identityManager.getRoleIdentityStore();
- JpaIdentityStore identityStore = manager.getInstanceByType(JpaIdentityStore.class);
- JpaIdentityStoreConfig config = manager.getInstanceByType(JpaIdentityStoreConfig.class);
+ JpaIdentityStore identityStore = BeanManagerHelper.getInstanceByType(manager, JpaIdentityStore.class);
+ JpaIdentityStoreConfig config = BeanManagerHelper.getInstanceByType(manager, JpaIdentityStoreConfig.class);
if (principal instanceof String)
{
@@ -753,7 +754,7 @@
private EntityManager lookupEntityManager()
{
- return manager.getInstanceByType(EntityManager.class);
+ return BeanManagerHelper.getInstanceByType(manager, EntityManager.class);
}
public Class<?> getUserPermissionClass()
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PermissionMapper.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PermissionMapper.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PermissionMapper.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -12,6 +12,7 @@
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.events.DefaultResolverChainCreatedEvent;
/**
@@ -51,13 +52,13 @@
Map<String,String> chains = resolverChains.get(target);
if (chains != null && chains.containsKey(action))
{
- return (ResolverChain) manager.getInstanceByName(chains.get(action));
+ return (ResolverChain) BeanManagerHelper.getInstanceByName(manager, chains.get(action));
}
}
if (defaultResolverChain != null && !"".equals(defaultResolverChain))
{
- return (ResolverChain) manager.getInstanceByName(defaultResolverChain);
+ return (ResolverChain) BeanManagerHelper.getInstanceByName(manager,defaultResolverChain);
}
return createDefaultResolverChain();
@@ -149,10 +150,10 @@
{
chain = new ResolverChain();
- Set<Bean<PermissionResolver>> resolvers = manager.getBeans(PermissionResolver.class);
- for (Bean<PermissionResolver> resolverBean : resolvers)
+ Set<Bean<?>> resolvers = manager.getBeans(PermissionResolver.class);
+ for (Bean<?> resolverBean : resolvers)
{
- chain.getResolvers().add(manager.getInstance(resolverBean));
+ chain.getResolvers().add((PermissionResolver) manager.getReference(resolverBean, PermissionResolver.class, manager.createCreationalContext(resolverBean)));
}
// TODO fix
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PersistentPermissionResolver.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PersistentPermissionResolver.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/permission/PersistentPermissionResolver.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -9,6 +9,7 @@
import javax.enterprise.inject.Initializer;
import javax.enterprise.inject.spi.BeanManager;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.security.Identity;
import org.jboss.seam.security.Role;
import org.jboss.seam.security.SimplePrincipal;
@@ -38,7 +39,7 @@
{
if (permissionStore == null)
{
- permissionStore = manager.getInstanceByType(JpaPermissionStore.class);
+ permissionStore = BeanManagerHelper.getInstanceByType(manager, JpaPermissionStore.class);
}
if (permissionStore == null)
Modified: modules/trunk/security/src/main/java/org/jboss/seam/security/permission/RuleBasedPermissionResolver.java
===================================================================
--- modules/trunk/security/src/main/java/org/jboss/seam/security/permission/RuleBasedPermissionResolver.java 2009-07-21 07:33:58 UTC (rev 11299)
+++ modules/trunk/security/src/main/java/org/jboss/seam/security/permission/RuleBasedPermissionResolver.java 2009-07-21 19:15:49 UTC (rev 11300)
@@ -13,7 +13,7 @@
import javax.enterprise.inject.Current;
import javax.enterprise.inject.Initializer;
import javax.enterprise.inject.spi.BeanManager;
-import javax.event.Observes;
+import javax.enterprise.event.Observes;
import org.drools.FactHandle;
import org.drools.RuleBase;
15 years, 4 months
Seam SVN: r11299 - in branches/community/Seam_2_2/src/test/ftest: examples/rss/src/org/jboss/seam/example/rss/test/selenium and 3 other directories.
by seam-commits@lists.jboss.org
Author: kpiwko(a)redhat.com
Date: 2009-07-21 03:33:58 -0400 (Tue, 21 Jul 2009)
New Revision: 11299
Added:
branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/xml/
branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/xml/SeamXMLRSSTest.java
branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/
branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/NodeCondition.java
branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/SeamXMLTest.java
Modified:
branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/selenium/SeleniumRSSTest.java
Log:
JBQA-2276 missing JAXP based test sources
Modified: branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/selenium/SeleniumRSSTest.java
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/selenium/SeleniumRSSTest.java 2009-07-21 06:46:08 UTC (rev 11298)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/selenium/SeleniumRSSTest.java 2009-07-21 07:33:58 UTC (rev 11299)
@@ -22,7 +22,7 @@
/**
* Place holder - just verifies that example deploys
*/
- @Test
+ @Test(alwaysRun=false)
public void homePageLoadTest()
{
assertEquals("Unexpected page title.", HOME_PAGE_TITLE, browser.getTitle());
Added: branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/xml/SeamXMLRSSTest.java
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/xml/SeamXMLRSSTest.java (rev 0)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/src/org/jboss/seam/example/rss/test/xml/SeamXMLRSSTest.java 2009-07-21 07:33:58 UTC (rev 11299)
@@ -0,0 +1,67 @@
+package org.jboss.seam.example.rss.test.xml;
+
+import static org.testng.AssertJUnit.assertEquals;
+import static org.testng.AssertJUnit.assertTrue;
+
+import java.io.IOException;
+import java.util.Iterator;
+import java.util.List;
+
+import javax.xml.namespace.NamespaceContext;
+import javax.xml.parsers.ParserConfigurationException;
+import javax.xml.xpath.XPathExpressionException;
+
+import org.jboss.seam.example.common.test.xml.NodeCondition;
+import org.jboss.seam.example.common.test.xml.SeamXMLTest;
+import org.testng.annotations.BeforeClass;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+import org.w3c.dom.Document;
+import org.w3c.dom.Element;
+import org.w3c.dom.Node;
+import org.xml.sax.SAXException;
+
+public class SeamXMLRSSTest extends SeamXMLTest
+{
+ public static final String HOME_PAGE = "/rss.seam";
+ public static final String HOME_PAGE_TITLE = "Title Feed";
+ public static final String TITLE_XPATH = "/feed/title";
+
+ public static final String ATOM_NS_URI = "http://www.w3.org/2005/Atom";
+
+ private Document doc;
+
+ @BeforeMethod
+ public void setDocument() throws IOException, SAXException
+ {
+ doc = db.parse(BROWSER_URL + CONTEXT_PATH + HOME_PAGE);
+ }
+
+ /**
+ * Verifies that example deploys and has title
+ *
+ * @throws XPathExpressionException If XPath expression cannot be compiled or
+ * executed
+ */
+ @Test
+ public void testRSSTitle() throws XPathExpressionException
+ {
+ List<Node> list = evaluateXPath(doc.getDocumentElement(), TITLE_XPATH);
+ assertEquals("There is only on title", 1, list.size());
+ assertTrue("Document title equals to \"Title Feed\"", evaluateCondition(list, titleCondition));
+ }
+
+ private final NodeCondition titleCondition = new NodeCondition()
+ {
+
+ public boolean match(Node node)
+ {
+ if (node instanceof Element)
+ {
+ Element element = (Element) node;
+ return HOME_PAGE_TITLE.equals(element.getTextContent());
+ }
+ return false;
+ }
+ };
+}
Added: branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/NodeCondition.java
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/NodeCondition.java (rev 0)
+++ branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/NodeCondition.java 2009-07-21 07:33:58 UTC (rev 11299)
@@ -0,0 +1,41 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, 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.common.test.xml;
+
+import org.w3c.dom.Node;
+
+/**
+ * This interface allows execution of arbitrary test on node
+ *
+ * @author Karel Piwko
+ *
+ */
+public interface NodeCondition
+{
+ /**
+ * Executes conditional test on give node.
+ *
+ * @param node Node to be tested
+ * @return {@code true} if node matches condition, {@code false} otherwise
+ */
+ public boolean match(Node node);
+}
Added: branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/SeamXMLTest.java
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/SeamXMLTest.java (rev 0)
+++ branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/xml/SeamXMLTest.java 2009-07-21 07:33:58 UTC (rev 11299)
@@ -0,0 +1,143 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, 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.common.test.xml;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.xml.parsers.DocumentBuilder;
+import javax.xml.parsers.DocumentBuilderFactory;
+import javax.xml.parsers.ParserConfigurationException;
+import javax.xml.xpath.XPath;
+import javax.xml.xpath.XPathConstants;
+import javax.xml.xpath.XPathExpressionException;
+import javax.xml.xpath.XPathFactory;
+
+import org.testng.annotations.BeforeClass;
+import org.testng.annotations.Optional;
+import org.testng.annotations.Parameters;
+import org.w3c.dom.Node;
+import org.w3c.dom.NodeList;
+
+/**
+ * This class encapsulates XML factories to makes XML testing easier.
+ * It accepts and requires this properties:
+ *
+ * <ul>
+ * <li><b>selenium.browser.url</b> for URL where server is running</li>
+ * <li><b>example.context.path</b> for context path of example</li>
+ * <li><b>xml.namespace.aware</b> for namaspace awareness during parse, default <code>true</code></li>
+ * </ul>
+ *
+ * @author Karel Piwko
+ *
+ */
+public abstract class SeamXMLTest
+{
+
+ private static DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
+ private static XPathFactory xpf = XPathFactory.newInstance();
+
+ protected String BROWSER_URL;
+ protected String CONTEXT_PATH;
+ protected boolean NAMESPACE_AWARE;
+ protected DocumentBuilder db;
+ protected XPath xp;
+
+ /**
+ * Initializes context path for given test
+ *
+ * @param contextPath
+ */
+ @BeforeClass
+ @Parameters( { "selenium.browser.url", "example.context.path", "xml.namespace.aware" })
+ public void setParameters(String browserURL, @Optional("") String contextPath, @Optional("true") String namespaceAware)
+ {
+ BROWSER_URL = browserURL;
+ CONTEXT_PATH = contextPath;
+ NAMESPACE_AWARE = Boolean.parseBoolean(namespaceAware);
+ }
+
+ /**
+ * Initializes DocumentBuilder and XPath generic factories.
+ * Sets document builder factory to ignore namespaces.
+ *
+ * @throws ParserConfigurationException If document builder factory couldn't
+ * be created
+ */
+ @BeforeClass
+ @Parameters( {"xml.namespace.aware"})
+ public void initializeBuilders() throws ParserConfigurationException
+ {
+ dbf.setNamespaceAware(NAMESPACE_AWARE);
+ db = dbf.newDocumentBuilder();
+ xp = xpf.newXPath();
+ }
+
+ /**
+ * Evaluates XPath on given part of DOM document
+ *
+ * @param root Relative root for XPath evaluation
+ * @param xpath XPath expression
+ * @return List of node returned by evaluation
+ * @throws XPathExpressionException If XPath expression is invalid
+ */
+ protected List<Node> evaluateXPath(Node root, String xpath) throws XPathExpressionException
+ {
+ NodeList nl = (NodeList) xp.compile(xpath).evaluate(root, XPathConstants.NODESET);
+ List<Node> list = new ArrayList<Node>(nl.getLength());
+ for (int i = 0, max = nl.getLength(); i < max; i++)
+ {
+ list.add(nl.item(i));
+ }
+ return list;
+ }
+
+ /**
+ * Evaluates XPath on given part of DOM document and tests all returned
+ * results againts condition
+ *
+ * @param root Relative root for XPath evaluation
+ * @param xpath XPath expression
+ * @param conditions Conditions evaluated on each node
+ * @return List of node returned by evaluation
+ * @throws XPathExpressionException If XPath expression is invalid
+ */
+ protected boolean evaluateXPathCondition(Node root, String xpath, NodeCondition... conditions) throws XPathExpressionException
+ {
+ return evaluateCondition(evaluateXPath(root, xpath), conditions);
+ }
+
+ protected boolean evaluateCondition(List<Node> list, NodeCondition... conditions)
+ {
+ for (Node node : list)
+ {
+ for (NodeCondition condition : conditions)
+ {
+ if (!condition.match(node))
+ return false;
+ }
+ }
+ return true;
+ }
+
+}
\ No newline at end of file
15 years, 4 months
Seam SVN: r11298 - in branches/community/Seam_2_2/src/test/ftest: examples/rss and 1 other directory.
by seam-commits@lists.jboss.org
Author: kpiwko(a)redhat.com
Date: 2009-07-21 02:46:08 -0400 (Tue, 21 Jul 2009)
New Revision: 11298
Modified:
branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml
branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml
branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml
branches/community/Seam_2_2/src/test/ftest/readme.txt
Log:
JBQA-2276 rewritten rss-example test to use JAXP instead of Selenium
Modified: branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml 2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml 2009-07-21 06:46:08 UTC (rev 11298)
@@ -22,6 +22,5 @@
-->
<project name="rss.ftest.build" basedir="." default="build">
<property name="example.name" value="rss" />
-
<import file="../build.xml" />
</project>
Modified: branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml 2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml 2009-07-21 06:46:08 UTC (rev 11298)
@@ -18,9 +18,10 @@
<!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" >
<suite name="RSS example" verbose="2" parallel="false">
<test name="rss_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
+ <parameter name="PROPERTY_FILE" value="" />
+ <parameter name="xml.namespace.aware" value="false" />
<classes>
- <class name="org.jboss.seam.example.rss.test.selenium.SeleniumRSSTest" />
+ <class name="org.jboss.seam.example.rss.test.xml.SeamXMLRSSTest" />
</classes>
</test>
</suite>
Modified: branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml 2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml 2009-07-21 06:46:08 UTC (rev 11298)
@@ -19,8 +19,9 @@
<suite name="RSS example" verbose="2" parallel="false">
<test name="rss_jboss5">
<parameter name="PROPERTY_FILE" value="" />
+ <parameter name="xml.namespace.aware" value="false" />
<classes>
- <class name="org.jboss.seam.example.rss.test.selenium.SeleniumRSSTest" />
+ <class name="org.jboss.seam.example.rss.test.xml.SeamXMLRSSTest" />
</classes>
</test>
</suite>
Modified: branches/community/Seam_2_2/src/test/ftest/readme.txt
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/readme.txt 2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/readme.txt 2009-07-21 06:46:08 UTC (rev 11298)
@@ -26,6 +26,7 @@
How To:
----------
+* Build seam from $SEAM_HOME directory to update maven repository for current snapshot
* Follow specific instructions for your OS
* Change to the $SEAM_HOME/src/test/ftest directory
* Set jboss*.home properties in ftest.properties to point to your application server locations
@@ -58,6 +59,7 @@
* Set selenium.server.cmd.args= -singleWindow in ftest.properties - some tests are behaving unexpectedly in multiwindow mode on IE
* Set security and privacy levels to lowest possible and turn off pop-up blocker in Internet options -> Security -> Custom level
+
Unix/Linux Setup
-----------------
* You must set to the location of your firefox browser like this:
15 years, 4 months
Seam SVN: r11297 - in modules/trunk: international/src/main/java/org/jboss/seam/international and 2 other directories.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-07-20 18:51:43 -0400 (Mon, 20 Jul 2009)
New Revision: 11297
Added:
modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java
Modified:
modules/trunk/beans/src/main/java/org/jboss/seam/beans/RuntimeBeanSelector.java
modules/trunk/international/src/main/java/org/jboss/seam/international/SeamResourceBundleAdapter.java
modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessage.java
modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessages.java
modules/trunk/resources/src/main/java/org/jboss/seam/resources/ResourceLoadingException.java
modules/trunk/web/src/main/java/org/jboss/seam/web/SeamFilter.java
Log:
some more api updates
Added: modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java
===================================================================
--- modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java (rev 0)
+++ modules/trunk/beans/src/main/java/org/jboss/seam/beans/BeanManagerHelper.java 2009-07-20 22:51:43 UTC (rev 11297)
@@ -0,0 +1,22 @@
+package org.jboss.seam.beans;
+
+import java.lang.annotation.Annotation;
+import java.util.Set;
+
+import javax.enterprise.inject.spi.Bean;
+import javax.enterprise.inject.spi.BeanManager;
+
+public class BeanManagerHelper {
+ public static <T> T getInstanceByType(BeanManager manager, Class<T> beanType, Annotation... bindings)
+ {
+ Set<Bean<?>> beans = manager.getBeans(beanType, bindings);
+ Bean<?> bean = manager.resolve(beans);
+ Object reference = manager.getReference(bean, beanType, manager.createCreationalContext(bean));
+
+ @SuppressWarnings("unchecked")
+ T instance = (T) reference;
+
+ return instance;
+ }
+
+}
Modified: modules/trunk/beans/src/main/java/org/jboss/seam/beans/RuntimeBeanSelector.java
===================================================================
--- modules/trunk/beans/src/main/java/org/jboss/seam/beans/RuntimeBeanSelector.java 2009-07-20 15:49:08 UTC (rev 11296)
+++ modules/trunk/beans/src/main/java/org/jboss/seam/beans/RuntimeBeanSelector.java 2009-07-20 22:51:43 UTC (rev 11297)
@@ -55,17 +55,19 @@
throw new AmbiguousResolutionException("Too many instances active for type " + getType().getTypeParameters()[0]);
}
}
+
+ @SuppressWarnings("unchecked")
protected void registerImplementations()
{
- defaultInstance = manager.getInstanceByType(getType(), new AnnotationLiteral<Default>() {});
+ defaultInstance = BeanManagerHelper.getInstanceByType(manager, getType(), new AnnotationLiteral<Default>() {});
- Set<Bean<T>> implementations = manager.getBeans(getType(), new AnnotationLiteral<RuntimeSelected>() {});
- for (Bean<T> candidate : implementations)
+ Set<Bean<?>> implementations = manager.getBeans(getType(), new AnnotationLiteral<RuntimeSelected>() {});
+ for (Bean<?> candidate : implementations)
{
if (candidate.getTypes().contains(RuntimeSelectedBean.class))
{
- instances.add(manager.getInstance(candidate));
+ instances.add((T) manager.getReference(candidate, getType(), null));
}
}
}
Modified: modules/trunk/international/src/main/java/org/jboss/seam/international/SeamResourceBundleAdapter.java
===================================================================
--- modules/trunk/international/src/main/java/org/jboss/seam/international/SeamResourceBundleAdapter.java 2009-07-20 15:49:08 UTC (rev 11296)
+++ modules/trunk/international/src/main/java/org/jboss/seam/international/SeamResourceBundleAdapter.java 2009-07-20 22:51:43 UTC (rev 11297)
@@ -7,6 +7,7 @@
import javax.enterprise.inject.AnnotationLiteral;
import javax.enterprise.inject.spi.BeanManager;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.bridge.ManagerBridge;
/**
@@ -39,7 +40,7 @@
protected ResourceBundle getMessages()
{
- return getCurrentManager().getInstanceByType(ResourceBundle.class, new AnnotationLiteral<AutoInterpolatedMessages>(){});
+ return BeanManagerHelper.getInstanceByType(getCurrentManager(), ResourceBundle.class, new AnnotationLiteral<AutoInterpolatedMessages>(){});
}
protected BeanManager getCurrentManager()
Modified: modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessage.java
===================================================================
--- modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessage.java 2009-07-20 15:49:08 UTC (rev 11296)
+++ modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessage.java 2009-07-20 22:51:43 UTC (rev 11297)
@@ -37,6 +37,8 @@
*/
public class StatusMessage implements Serializable
{
+ private static final long serialVersionUID = -177606761939586298L;
+
/**
* The severity of the status message
*/
Modified: modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessages.java
===================================================================
--- modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessages.java 2009-07-20 15:49:08 UTC (rev 11296)
+++ modules/trunk/international/src/main/java/org/jboss/seam/international/StatusMessages.java 2009-07-20 22:51:43 UTC (rev 11297)
@@ -42,6 +42,7 @@
import javax.enterprise.inject.spi.BeanManager;
import javax.validation.ConstraintViolation;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.international.StatusMessage.Severity;
import org.jboss.webbeans.log.Log;
import org.jboss.webbeans.log.Logger;
@@ -457,7 +458,10 @@
// FIXME this is a hack because I can't inject it since ResourceBundle is not proxyable
if (manager.getBeans(ResourceBundle.class, new AnnotationLiteral<Messages>() {}).size() == 1)
{
- ResourceBundle resourceBundle = manager.getInstanceByType(ResourceBundle.class, new AnnotationLiteral<Messages>() {});
+ ResourceBundle resourceBundle =
+ BeanManagerHelper.getInstanceByType(manager,
+ ResourceBundle.class,
+ new AnnotationLiteral<Messages>() {});
try
{
String bundleMessage = resourceBundle.getString(key);
Modified: modules/trunk/resources/src/main/java/org/jboss/seam/resources/ResourceLoadingException.java
===================================================================
--- modules/trunk/resources/src/main/java/org/jboss/seam/resources/ResourceLoadingException.java 2009-07-20 15:49:08 UTC (rev 11296)
+++ modules/trunk/resources/src/main/java/org/jboss/seam/resources/ResourceLoadingException.java 2009-07-20 22:51:43 UTC (rev 11297)
@@ -3,14 +3,14 @@
*/
package org.jboss.seam.resources;
-import javax.inject.ExecutionException;
+//import javax.inject.ExecutionException;
/**
* Exception thrown when errors occur while loading resource
*
* @author Pete Muir
*/
-public class ResourceLoadingException extends ExecutionException
+public class ResourceLoadingException extends RuntimeException // extends ExecutionException
{
private static final long serialVersionUID = 1L;
Modified: modules/trunk/web/src/main/java/org/jboss/seam/web/SeamFilter.java
===================================================================
--- modules/trunk/web/src/main/java/org/jboss/seam/web/SeamFilter.java 2009-07-20 15:49:08 UTC (rev 11296)
+++ modules/trunk/web/src/main/java/org/jboss/seam/web/SeamFilter.java 2009-07-20 22:51:43 UTC (rev 11297)
@@ -2,6 +2,7 @@
import java.io.IOException;
+import javax.enterprise.inject.spi.BeanManager;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
@@ -12,6 +13,7 @@
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpSession;
+import org.jboss.seam.beans.BeanManagerHelper;
import org.jboss.seam.bridge.ManagerBridge;
/**
@@ -60,7 +62,9 @@
private void registerSession(HttpSession session)
{
- ManagerBridge.getProvider().getCurrentManager().getInstanceByType(HttpSessionManager.class).setSession(session);
+ BeanManager manager = ManagerBridge.getProvider().getCurrentManager();
+ HttpSessionManager sessionManager = BeanManagerHelper.getInstanceByType(manager, HttpSessionManager.class);
+ sessionManager.setSession(session);
registeredSession = session;
}
15 years, 4 months
Seam SVN: r11295 - in modules/trunk/bridge-api/src: test/java/org/jboss/seam/bridge and 1 other directories.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-07-17 17:32:06 -0400 (Fri, 17 Jul 2009)
New Revision: 11295
Modified:
modules/trunk/bridge-api/src/main/java/org/jboss/seam/bridge/ManagerBridge.java
modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeOverrideTest.java
modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeTest.java
modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/stubs/IncorrectManagerProviderStub.java
Log:
resolve a few build issues
Modified: modules/trunk/bridge-api/src/main/java/org/jboss/seam/bridge/ManagerBridge.java
===================================================================
--- modules/trunk/bridge-api/src/main/java/org/jboss/seam/bridge/ManagerBridge.java 2009-07-15 12:01:38 UTC (rev 11294)
+++ modules/trunk/bridge-api/src/main/java/org/jboss/seam/bridge/ManagerBridge.java 2009-07-17 21:32:06 UTC (rev 11295)
@@ -2,7 +2,7 @@
import javax.enterprise.inject.spi.AfterBeanDiscovery;
import javax.enterprise.inject.spi.BeanManager;
-import javax.event.Observes;
+import javax.enterprise.event.Observes;
import org.jboss.seam.bridge.spi.ManagerProvider;
import org.jboss.webbeans.log.LogProvider;
@@ -89,7 +89,7 @@
*
* @param manager The deployed Manager instance
*/
- public void onStartup(@Observes @AfterBeanDiscovery BeanManager manager)
+ public void onStartup(@Observes AfterBeanDiscovery event, BeanManager manager)
{
// intended for a mock environment, skip discovery
if (!discover)
Modified: modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeOverrideTest.java
===================================================================
--- modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeOverrideTest.java 2009-07-15 12:01:38 UTC (rev 11294)
+++ modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeOverrideTest.java 2009-07-17 21:32:06 UTC (rev 11295)
@@ -26,7 +26,7 @@
ManagerBridge bridge = new ManagerBridge();
// no scanning should occur; ensure by forcing NullPointerException if it does
bridge.setResolverClass(null);
- bridge.onStartup(null);
+ bridge.onStartup(null, null);
assertSame(ManagerBridge.getProvider(), provider);
}
Modified: modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeTest.java
===================================================================
--- modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeTest.java 2009-07-15 12:01:38 UTC (rev 11294)
+++ modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/ManagerBridgeTest.java 2009-07-17 21:32:06 UTC (rev 11295)
@@ -45,7 +45,7 @@
{
ManagerBridge bridge = new ManagerBridge();
bridge.setResolverClass(ManagerProviderResolverStub.class);
- bridge.onStartup(getCurrentManager());
+ bridge.onStartup(null, getCurrentManager());
ManagerProvider provider = ManagerBridge.getProvider();
assertTrue(provider instanceof ManagerProviderStub);
assertSame(provider.getCurrentManager(), getCurrentManager());
@@ -62,7 +62,7 @@
{
ManagerBridge bridge = new ManagerBridge();
bridge.setResolverClass(IncorrectManagerProviderResolverStub.class);
- bridge.onStartup(getCurrentManager());
+ bridge.onStartup(null, getCurrentManager());
ManagerBridge.getProvider();
}
Modified: modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/stubs/IncorrectManagerProviderStub.java
===================================================================
--- modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/stubs/IncorrectManagerProviderStub.java 2009-07-15 12:01:38 UTC (rev 11294)
+++ modules/trunk/bridge-api/src/test/java/org/jboss/seam/bridge/stubs/IncorrectManagerProviderStub.java 2009-07-17 21:32:06 UTC (rev 11295)
@@ -3,8 +3,8 @@
import javax.enterprise.inject.spi.BeanManager;
import org.jboss.seam.bridge.spi.ManagerProvider;
+import org.jboss.webbeans.BeanManagerImpl;
import org.jboss.webbeans.CurrentManager;
-import org.jboss.webbeans.ManagerImpl;
public class IncorrectManagerProviderStub implements ManagerProvider
{
@@ -13,7 +13,7 @@
*/
public BeanManager getCurrentManager()
{
- return ManagerImpl.newChildManager(CurrentManager.rootManager());
+ return BeanManagerImpl.newChildManager(CurrentManager.rootManager());
}
}
\ No newline at end of file
15 years, 4 months
Seam SVN: r11294 - in branches/community/Seam_2_2/doc/Seam_Reference_Guide: bn-IN and 22 other directories.
by seam-commits@lists.jboss.org
Author: nico.ben
Date: 2009-07-15 08:01:38 -0400 (Wed, 15 Jul 2009)
New Revision: 11294
Modified:
branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Guice.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Guice.po
Log:
POT and PO regeneration
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
@@ -129,7 +129,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot 2009-07-15 12:01:38 UTC (rev 11294)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-07-08 14:32+0000\n"
+"POT-Creation-Date: 2009-07-15 11:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Guice.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Guice.po 2009-07-15 11:52:07 UTC (rev 11293)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Guice.po 2009-07-15 12:01:38 UTC (rev 11294)
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-26 07:39+0000\n"
+"POT-Creation-Date: 2009-07-15 11:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -125,7 +125,7 @@
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-" xmlns:guice=\"http://jboss.org/products/seam/guice\"\n"
+" xmlns:guice=\"http://jboss.com/products/seam/guice\"\n"
" xsi:schemaLocation=\"\n"
" http://jboss.com/products/seam/guice\n"
" http://jboss.com/products/seam/guice-2.2.xsd\n"
15 years, 4 months
Seam SVN: r11291 - branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2009-07-14 17:13:26 -0400 (Tue, 14 Jul 2009)
New Revision: 11291
Modified:
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/build.xml
Log:
JBPAPP-2154
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/build.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/build.xml 2009-07-14 18:51:56 UTC (rev 11290)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/build.xml 2009-07-14 21:13:26 UTC (rev 11291)
@@ -22,14 +22,13 @@
-->
<project name="groovybooking.ftest.build" basedir="." default="build">
<property name="example.name" value="groovybooking" />
- <property name="jboss4.deploy.target" value="jbosswar.explode" />
- <property name="jboss4.undeploy.target" value="jbosswar.unexplode" />
- <property name="jboss4.context.path" value="/jboss-seam-groovybooking" />
+ <property name="jboss5.deploy.target" value="jbosswar.explode" />
+ <property name="jboss5.undeploy.target" value="jbosswar.unexplode" />
+ <property name="jboss5.context.path" value="/jboss-seam-groovybooking" />
<property name="loadPersistenceUnits" value="false" />
<target name="set.deploy.properties">
- <propertyset id="jboss4.deploy.properties" />
<propertyset id="jboss5.deploy.properties">
<propertyref name="loadPersistenceUnits" id="loadPersistenceUnits" />
</propertyset>
15 years, 4 months
Seam SVN: r11290 - in branches/enterprise/JBPAPP_5_0: src/test/ftest and 27 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2009-07-14 14:51:56 -0400 (Tue, 14 Jul 2009)
New Revision: 11290
Removed:
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/drools/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/excel/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/tomcat6.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/itext/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/tomcat6.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/mail/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/nestedbooking/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/openid/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/remoting/chatroom/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamdiscs/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamspace/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/spring/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss-embedded.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss4.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/ui/jboss4.xml
Modified:
branches/enterprise/JBPAPP_5_0/examples/build.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/build.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/build.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/build.xml
branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.ci.properties
branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.properties
branches/enterprise/JBPAPP_5_0/src/test/ftest/readme.txt
branches/enterprise/JBPAPP_5_0/src/test/ftest/seamgen/build.xml
Log:
JBPAPP-2154 - removed unsupported container related things
Modified: branches/enterprise/JBPAPP_5_0/examples/build.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/examples/build.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/examples/build.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -41,7 +41,6 @@
<!-- Library directories -->
<property name="lib.dir" value="${seam.dir}/lib" />
<property name="mail.dir" value="${seam.dir}/mail" />
- <property name="meldware.dir" value="${lib.dir}/meldware.deployable" />
<!-- Target directories -->
<property name="dist.dir" value="dist" />
@@ -169,14 +168,6 @@
<include name="commons-httpclient.jar" if="openid.lib" />
</fileset>
- <!-- Seam rss, and dependencies -->
- <fileset id="seam.rss.jar" dir="${lib.dir}">
- <include name="jboss-seam-rss.jar" if="seam.rss.lib" />
- <include name="yarfraw.jar" if="seam.rss.lib" />
- <include name="commons-lang.jar" if="seam.rss.lib" />
- <include name="commons-collections.jar" if="seam.rss.lib" />
- </fileset>
-
<!-- Seam debug, with required dependencies -->
<fileset id="seam.debug.jar" dir="${lib.dir}">
<include name="jboss-seam-debug.jar" if="seam.debug.lib" />
@@ -196,27 +187,7 @@
<fileset id="seam.remoting.jar" dir="${lib.dir}">
<include name="jboss-seam-remoting.jar" if="seam.remoting.lib" />
</fileset>
-
- <!-- Seam Wicket integration, with required dependencies -->
- <fileset id="seam.wicket.jar" dir="${lib.dir}">
- <include name="jboss-seam-wicket.jar" if="seam.wicket.lib" />
- <include name="wicket.jar" if="seam.wicket.lib" />
- <include name="wicket-ioc.jar" if="seam.wicket.lib" />
- <include name="slf4j-api.jar" if="seam.wicket.lib" />
- <include name="slf4j-log4j12.jar" if="seam.wicket.lib" />
- </fileset>
- <!-- Seam RESTEasy integration, with required dependencies -->
- <fileset id="seam.resteasy.jar" dir="${lib.dir}">
- <include name="jboss-seam-resteasy.jar" if="seam.resteasy.lib" />
- <include name="jaxrs-api.jar" if="seam.resteasy.lib" />
- <include name="resteasy-jaxrs.jar" if="seam.resteasy.lib" />
- <include name="resteasy-jaxb-provider.jar" if="seam.resteasy.lib" />
- <include name="resteasy-atom-provider.jar" if="seam.resteasy.lib" />
- <include name="slf4j-api.jar" if="seam.resteasy.lib" />
- <include name="slf4j-log4j12.jar" if="seam.resteasy.lib" />
- </fileset>
-
<!-- Seam IoC Guice, with required dependencies -->
<fileset id="seam.ioc-guice.jar" dir="${lib.dir}">
<include name="jboss-seam-ioc.jar" if="seam.ioc-guice.lib" />
@@ -493,13 +464,11 @@
<path id="build.classpath">
<fileset dir="${lib.dir}">
<include name="*.jar" />
- <include name="jboss-seam-wicket.jar" />
<exclude name="jboss-seam-debug.jar" />
<exclude name="jboss-seam-ui.jar" />
<exclude name="jboss-seam-mail.jar" />
<exclude name="jboss-seam-pdf.jar" />
<exclude name="jboss-seam-excel.jar" />
- <exclude name="jboss-seam-rss.jar" />
</fileset>
<path refid="build.classpath.extras" />
</path>
@@ -512,7 +481,6 @@
<fileset dir="${lib.dir}">
<!-- Don't include seam-ui or interop modules -->
<exclude name="jboss-seam-ui.jar" />
- <exclude name="jboss-seam-wicket.jar" />
<exclude name="interop/**/*" />
<exclude name="gen/**/*" />
<exclude name="src/**/*" />
@@ -711,10 +679,6 @@
<fileset refid="spring.jar" />
<fileset refid="jcaptcha.jar" />
<fileset refid="antlr.jar" />
- <fileset refid="wicket-extensions.jar" />
- <fileset refid="wicket-datetime.jar" />
- <fileset refid="seam.wicket.jar" />
- <fileset refid="seam.resteasy.jar" />
<fileset refid="seam.remoting.jar" />
<fileset refid="seam.ioc-guice.jar" />
<fileset refid="el-ri.jar" />
@@ -739,41 +703,17 @@
</target>
<!-- Deploy the target to JBoss AS -->
- <target name="deploy" depends="archive, datasource, service, meldware" description="Deploy the example to JBoss AS">
+ <target name="deploy" depends="archive, datasource, service" description="Deploy the example to JBoss AS">
<fail unless="jboss.home">
jboss.home not set, update build.properties
</fail>
<copy file="${dist.dir}/${example.name}.ear" todir="${deploy.dir}" />
</target>
- <!-- Deploy meldware to JBoss AS -->
- <target name="meldware" if="deploy.meldware.mail">
- <copyInlineDependencies id="jbosscommoncore" scope="runtime" todir="${meldware.dir}">
- <dependency groupId="org.buni.meldware" artifactId="mail" type="ear" version="1.0M8" />
- <dependency groupId="org.buni.meldware" artifactId="meldware" type="store" version="1.0M8" />
- <dependency groupId="org.buni.meldware" artifactId="meldwarebase" type="sar" version="1.0M8" />
- </copyInlineDependencies>
- <copy todir="${deploy.dir}">
- <fileset dir="${meldware.dir}">
- <patternset refid="meldware.files" />
- </fileset>
- </copy>
- <copy todir="${conf.dir}">
- <fileset dir="${meldware.dir}">
- <patternset refid="meldware.conf.files" />
- </fileset>
- </copy>
- </target>
-
<target name="undeploy" description="Undeploy the example from JBoss">
<delete file="${deploy.dir}/${example.name}.ear" />
<delete file="${deploy.dir}/${example.ds}" />
<delete file="${deploy.dir}/${example.service}" />
- <delete>
- <fileset dir="${deploy.dir}">
- <patternset refid="meldware.files" />
- </fileset>
- </delete>
</target>
<!-- Copy the data source to JBoss AS -->
@@ -831,7 +771,7 @@
<delete file="${farm.deploy.dir}/${example.ds}" />
</target>
- <target name="explode" depends="jar,jboss.war,ear,datasource, meldware" description="Deploy the exploded archive">
+ <target name="explode" depends="jar,jboss.war,ear,datasource" description="Deploy the exploded archive">
<fail unless="jboss.home">jboss.home not set</fail>
<mkdir dir="${jar.deploy.dir}" />
@@ -857,11 +797,6 @@
<delete file="${deploy.dir}/${example.ds}" failonerror="no" />
<delete file="${deploy.dir}/${example.name}-service.xml" failonerror="no" />
<delete dir="${ear.deploy.dir}" failonerror="no" />
- <delete failonerror="no">
- <fileset dir="${deploy.dir}">
- <patternset refid="meldware.files" />
- </fileset>
- </delete>
</target>
<target name="restart" depends="explode" description="Restart the exploded archive">
@@ -897,10 +832,6 @@
<fileset refid="search.jar" />
<fileset refid="richfaces-api.jar" />
<fileset refid="groovy.jar" />
- <fileset refid="wicket-extensions.jar" />
- <fileset refid="wicket-datetime.jar" />
- <fileset refid="seam.wicket.jar" />
- <fileset refid="seam.resteasy.jar" />
<fileset refid="trinidad-api.jar" />
<fileset refid="metawidget.jar" />
<fileset refid="el-ri.jar"/>
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/build.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/build.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/build.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -47,43 +47,6 @@
<antcall target="testall.${container}" />
</target>
- <target name="testall.jboss4" description="Run functional testsuite for JBoss 4">
- <property name="container" value="jboss4" />
- <antcall target="start.container.before.suite" />
- <antcall target="start.selenium.server" />
- <!-- Execute tests for all examples jboss-->
- <testexample name="blog" />
- <testexample name="booking" />
- <testexample name="drools" />
- <testexample name="dvdstore" />
- <testexample name="contactlist" />
- <testexample name="excel" />
- <testexample name="groovybooking" />
- <testexample name="hibernate" />
- <testexample name="icefaces" />
- <testexample name="itext" />
- <testexample name="jpa" />
- <testexample name="mail" />
- <testexample name="messages" />
- <testexample name="nestedbooking" />
- <testexample name="numberguess" />
- <testexample name="openid" />
- <testexample name="quartz" />
- <testexample name="registration" />
- <testexample name="remoting/chatroom" />
- <testexample name="rss" />
- <testexample name="seambay" />
- <testexample name="seamdiscs" />
- <testexample name="seampay" />
- <testexample name="seamspace" />
- <testexample name="spring" />
- <testexample name="todo" />
- <testexample name="ui" />
- <testexample name="wicket" />
- <testexample name="wicket-runtime" />
- <antcall target="stop.selenium.server" />
- </target>
-
<target name="testall.jboss5" description="Run functional testsuite for JBoss 5">
<property name="container" value="jboss5" />
<antcall target="start.container.before.suite" />
@@ -97,7 +60,6 @@
<testexample name="excel" />
<testexample name="groovybooking" />
<testexample name="hibernate" />
- <testexample name="icefaces" />
<testexample name="itext" />
<testexample name="jee5/booking" />
<testexample name="jpa" />
@@ -109,72 +71,25 @@
<testexample name="quartz" />
<testexample name="registration" />
<testexample name="remoting/chatroom" />
- <testexample name="rss" />
<testexample name="seambay" />
<testexample name="seampay" />
<testexample name="seamspace" />
<testexample name="spring" />
<testexample name="todo" />
<testexample name="ui" />
- <testexample name="wicket" />
- <testexample name="wicket-runtime" />
<antcall target="stop.selenium.server" />
</target>
- <target name="testall.jboss-embedded" description="Run functional testsuite for JBoss Embedded">
- <property name="container" value="jboss-embedded" />
- <antcall target="start.selenium.server" />
- <!-- Execute tests for all examples on jboss-embedded -->
- <testexample name="blog" />
- <testexample name="dvdstore" />
- <testexample name="messages" />
- <testexample name="numberguess" />
- <testexample name="registration" />
- <testexample name="seambay" />
- <testexample name="seampay" />
- <testexample name="todo" />
- <testexample name="booking" />
- <testexample name="jpa" />
- <testexample name="hibernate" />
- <antcall target="stop.selenium.server" />
- </target>
-
- <target name="testall.tomcat6" description="Run functional testsuite for Tomcat 6">
-
- <property name="container" value="tomcat6" />
- <antcall target="start.selenium.server" />
-
- <testexample name="jpa" />
- <testexample name="hibernate" />
-
- <antcall target="stop.selenium.server" />
- </target>
-
<target name="test" description="Run tests for single example. Container selection is based on the value of container property">
<fail unless="container">Please set container property.</fail>
<antcall target="test.${container}" />
</target>
-
- <target name="test.jboss4" description="Run tests for single example on JBoss 4">
- <property name="container" value="jboss4" />
- <antcall target="test.single.example" />
- </target>
<target name="test.jboss5" description="Run tests for single example on JBoss 5">
<property name="container" value="jboss5" />
<antcall target="test.single.example" />
</target>
- <target name="test.tomcat6" description="Run tests for single example on Tomcat 6">
- <property name="container" value="tomcat6" />
- <antcall target="test.single.example" />
- </target>
-
- <target name="test.jboss-embedded" description="Run tests for single example on JBoss Embedded">
- <property name="container" value="jboss-embedded" />
- <antcall target="test.single.example" />
- </target>
-
<target name="test.single.example">
<antcall target="start.selenium.server" />
@@ -193,7 +108,6 @@
<cleanexample name="excel" />
<cleanexample name="groovybooking" />
<cleanexample name="hibernate" />
- <cleanexample name="icefaces" />
<cleanexample name="itext" />
<cleanexample name="jee5/booking" />
<cleanexample name="jpa" />
@@ -205,7 +119,6 @@
<cleanexample name="quartz" />
<cleanexample name="registration" />
<cleanexample name="remoting/chatroom" />
- <cleanexample name="rss" />
<cleanexample name="seambay" />
<cleanexample name="seamdiscs" />
<cleanexample name="seampay" />
@@ -213,8 +126,6 @@
<cleanexample name="spring" />
<cleanexample name="todo" />
<cleanexample name="ui" />
- <cleanexample name="wicket" />
- <cleanexample name="wicket-runtime" />
</target>
<target name="undeployall">
@@ -227,7 +138,6 @@
<undeployexample name="excel" />
<undeployexample name="groovybooking" />
<undeployexample name="hibernate" />
- <undeployexample name="icefaces" />
<undeployexample name="itext" />
<undeployexample name="jee5/booking" />
<undeployexample name="jpa" />
@@ -238,7 +148,6 @@
<undeployexample name="openid" />
<undeployexample name="quartz" />
<undeployexample name="registration" />
- <undeployexample name="rss" />
<undeployexample name="remoting/chatroom" />
<undeployexample name="seambay" />
<undeployexample name="seamdiscs" />
@@ -247,7 +156,6 @@
<undeployexample name="spring" />
<undeployexample name="todo" />
<undeployexample name="ui" />
- <undeployexample name="wicket" />
</target>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Blog example" verbose="2" parallel="false">
- <test name="blog_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/blog/test/selenium/blog.properties" />
- <classes>
- <class name="org.jboss.seam.example.blog.test.selenium.NewEntryTest" />
- <class name="org.jboss.seam.example.blog.test.selenium.SearchTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/blog/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Blog example" verbose="2" parallel="false">
- <test name="blog_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/blog/test/selenium/blog.properties" />
- <classes>
- <class name="org.jboss.seam.example.blog.test.selenium.NewEntryTest" />
- <class name="org.jboss.seam.example.blog.test.selenium.SearchTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="Booking example" verbose="2" parallel="false">
- <test name="booking_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/booking/test/selenium/booking.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/booking/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="Booking example" verbose="2" parallel="false">
- <test name="booking_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/booking/test/selenium/booking.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/build.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/build.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/build.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -39,23 +39,13 @@
<property name="test.report.dir" value="test-report" />
<!-- default deployment targets -->
- <property name="jboss4.deploy.target" value="deploy" />
- <property name="jboss5.deploy.target" value="${jboss4.deploy.target}" />
- <property name="jboss4.undeploy.target" value="undeploy" />
- <property name="jboss5.undeploy.target" value="${jboss4.undeploy.target}" />
- <property name="jboss-embedded.deploy.target" value="tomcat.deploy" />
- <property name="jboss-embedded.undeploy.target" value="tomcat.undeploy" />
- <property name="tomcat6.deploy.target" value="tomcat6.deploy" />
- <property name="tomcat6.undeploy.target" value="tomcat6.undeploy" />
+ <property name="jboss5.deploy.target" value="deploy" />
+ <property name="jboss5.undeploy.target" value="undeploy" />
<!-- default context paths -->
- <property name="jboss4.context.path" value="/seam-${example.name}" />
- <property name="jboss5.context.path" value="${jboss4.context.path}" />
- <property name="jboss-embedded.context.path" value="/jboss-seam-${example.name}" />
- <property name="tomcat6.context.path" value="${jboss-embedded.context.path}" />
+ <property name="jboss5.context.path" value="/seam-${example.name}" />
<!-- common path setup -->
-
<path id="classpath.build">
<fileset dir="${ftest.lib.dir}" includes="**/*.jar" />
</path>
@@ -157,7 +147,6 @@
<echo>Deploying ${example.name} example to ${container} using ${deploy.target} target</echo>
<ant antfile="${seam.dir}/examples/${example.name}/build.xml" target="${deploy.target}" inheritall="false" dir="${seam.dir}/examples/${example.name}">
<property name="jboss.home" value="${container.home}" />
- <property name="tomcat.home" value="${container.home}" />
<propertyset refid="deploy.properties" />
</ant>
<!-- wait for the application to be active -->
@@ -175,7 +164,6 @@
<echo>Undeploying example ${example.name} from ${container} using ${undeploy.target} target</echo>
<ant antfile="${seam.dir}/examples/${example.name}/build.xml" target="${undeploy.target}" inheritall="false" dir="${seam.dir}/examples/${example.name}">
<property name="jboss.home" value="${container.home}" />
- <property name="tomcat.home" value="${container.home}" />
</ant>
</target>
@@ -203,10 +191,7 @@
<!-- this target sets empty deploy property sets by default -->
<!-- override this target in example specific build.xml to specify property sets -->
<target name="set.deploy.properties">
- <propertyset id="jboss4.deploy.properties" />
<propertyset id="jboss5.deploy.properties" />
- <propertyset id="tomcat6.deploy.properties" />
- <propertyset id="jboss-embedded.deploy.properties" />
</target>
<target name="start.container.jboss" depends="container.properties">
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Contactlist example" verbose="2" parallel="false">
- <test name="contactlist_jboss-embedded">
- <parameter name="PROPERTY_FILE" value="empty" />
- <classes>
- <class
- name="org.jboss.seam.example.contactlist.test.selenium.ContactCRUDTest" />
- <class name="org.jboss.seam.example.contactlist.test.selenium.CommentTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/contactlist/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Contactlist example" verbose="2" parallel="false">
- <test name="contactlist_jboss4">
- <parameter name="PROPERTY_FILE" value="empty" />
- <classes>
- <class
- name="org.jboss.seam.example.contactlist.test.selenium.ContactCRUDTest" />
- <class name="org.jboss.seam.example.contactlist.test.selenium.CommentTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/drools/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/drools/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/drools/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,31 +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="Drools example" verbose="2" parallel="false">
- <test name="drools_jboss4">
- <parameter name="PROPERTY_FILE" value="/org/jboss/seam/example/drools/test/selenium/drools.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.numberguess.selenium.CommonNumberGuessTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,30 +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="DVD example" verbose="2" parallel="false">
- <test name="dvdstore_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/dvd/test/selenium/dvd.properties" />
- <classes>
- <class name="org.jboss.seam.example.dvd.test.selenium.LoginTest" />
- <class name="org.jboss.seam.example.dvd.test.selenium.RegistrationTest" />
- <class name="org.jboss.seam.example.dvd.test.selenium.SearchTest" />
- <class name="org.jboss.seam.example.dvd.test.selenium.ShoppingCartTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/dvdstore/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,30 +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="DVD example" verbose="2" parallel="false">
- <test name="dvdstore_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/dvd/test/selenium/dvd.properties" />
- <classes>
- <class name="org.jboss.seam.example.dvd.test.selenium.LoginTest" />
- <class name="org.jboss.seam.example.dvd.test.selenium.RegistrationTest" />
- <class name="org.jboss.seam.example.dvd.test.selenium.SearchTest" />
- <class name="org.jboss.seam.example.dvd.test.selenium.ShoppingCartTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/excel/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/excel/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/excel/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,26 +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="Excel example" verbose="2" parallel="false">
- <test name="excel_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.excel.test.selenium.SeleniumExcelTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/groovybooking/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="Groovybooking example" verbose="2" parallel="false">
- <test name="groovybooking_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/groovybooking/test/selenium/groovybooking.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="Hibernate example" verbose="2" parallel="false">
- <test name="hibernate_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/hibernate/test/selenium/hibernate.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="Hibernate example" verbose="2" parallel="false">
- <test name="hibernate_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/hibernate/test/selenium/hibernate.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/tomcat6.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/tomcat6.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/hibernate/tomcat6.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="Hibernate example" verbose="2" parallel="false">
- <test name="hibernate_tomcat6">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/hibernate/test/selenium/hibernate.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/itext/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/itext/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/itext/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,26 +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="Itext example" verbose="2" parallel="false">
- <test name="itext_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.itext.test.selenium.SeleniumItextTest" />
- </classes>
- </test>
-</suite>
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/build.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/build.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/build.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -22,13 +22,8 @@
-->
<project name="jpa.ftest.build" basedir="." default="build">
<property name="example.name" value="jpa" />
- <property name="jboss4.deploy.target" value="jboss" />
- <property name="jboss4.undeploy.target" value="jboss.undeploy" />
<property name="jboss5.deploy.target" value="jboss5" />
- <property name="jboss-embedded.deploy.target" value="jboss-embedded" />
- <property name="jboss-embedded.undeploy.target" value="jboss-embedded.undeploy" />
- <property name="jboss4.context.path" value="/jboss-seam-jpa" />
-
+ <property name="jboss5.undeploy.target" value="jboss5.undeploy" />
<import file="../build.xml" />
</project>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="JPA example" verbose="2" parallel="false">
- <test name="jpa_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/jpa/test/selenium/jpa.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="JPA example" verbose="2" parallel="false">
- <test name="jpa_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/jpa/test/selenium/jpa.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/tomcat6.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/tomcat6.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/jpa/tomcat6.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="JPA example" verbose="2" parallel="false">
- <test name="jpa_tomcat6">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/jpa/test/selenium/jpa.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/mail/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/mail/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/mail/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,26 +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="Mail example" verbose="2" parallel="false">
- <test name="mail_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.mail.test.selenium.SeleniumMailTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,26 +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="Messages example" verbose="2" parallel="false">
- <test name="messages_jboss-embedded">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.messages.test.selenium.MessageTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/messages/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,26 +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="Messages example" verbose="2" parallel="false">
- <test name="messages_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.messages.test.selenium.MessageTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/nestedbooking/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/nestedbooking/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/nestedbooking/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,34 +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="Nested booking example" verbose="2" parallel="false">
- <test name="nestedbooking_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/nestedbooking/test/selenium/nestedbooking.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.nestedbooking.test.selenium.NestedSimpleBookingTest"></class>
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,29 +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="Numberguess example" verbose="2" parallel="false">
- <test name="numberguess_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/numberguess/test/selenium/numberguess.properties" />
- <parameter name="CONTEXT_PATH" value="/jboss-seam-numberguess" />
- <classes>
- <class
- name="org.jboss.seam.example.numberguess.test.selenium.NumberGuessTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/numberguess/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Numberguess example" verbose="2" parallel="false">
- <test name="numberguess_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/numberguess/test/selenium/numberguess.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.numberguess.test.selenium.NumberGuessTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/openid/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/openid/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/openid/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,27 +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="OpenId example" verbose="2" parallel="false">
- <test name="openid_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class
- name="org.jboss.seam.example.openid.test.selenium.SeleniumOpenIdTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Quartz example" verbose="2" parallel="false">
- <test name="quartz_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/quartz/test/selenium/quartz.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.quartz.test.selenium.QuartzPaymentTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/quartz/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Quartz example" verbose="2" parallel="false">
- <test name="quartz_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/quartz/test/selenium/quartz.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.quartz.test.selenium.QuartzPaymentTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,27 +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="Registration example" verbose="2" parallel="false">
- <test name="registration_jboss-embedded">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class
- name="org.jboss.seam.example.registration.test.selenium.RegistrationTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/registration/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,27 +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="Registration example" verbose="2" parallel="false">
- <test name="registration_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class
- name="org.jboss.seam.example.registration.test.selenium.RegistrationTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/remoting/chatroom/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/remoting/chatroom/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/remoting/chatroom/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,27 +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="Chatroom example" verbose="2" parallel="false">
- <test name="chatroom_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class
- name="org.jboss.seam.example.remoting.chatroom.test.selenium.SeleniumChatroomTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,31 +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="Seambay example" verbose="2" parallel="false">
- <test name="seambay_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/seambay/test/selenium/seambay.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.seambay.test.selenium.RegistrationTest" />
- <class name="org.jboss.seam.example.seambay.test.selenium.SellTest" />
- <class name="org.jboss.seam.example.seambay.test.selenium.SearchTest" />
- <class name="org.jboss.seam.example.seambay.test.selenium.BidTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seambay/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,31 +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="Seambay example" verbose="2" parallel="false">
- <test name="seambay_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/seambay/test/selenium/seambay.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.seambay.test.selenium.RegistrationTest" />
- <class name="org.jboss.seam.example.seambay.test.selenium.SellTest" />
- <class name="org.jboss.seam.example.seambay.test.selenium.SearchTest" />
- <class name="org.jboss.seam.example.seambay.test.selenium.BidTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamdiscs/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamdiscs/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamdiscs/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,32 +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="Seamdiscs example" verbose="2" parallel="false">
- <test name="seamdiscs_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.seamdiscs.test.selenium.LoginTest" />
- <class name="org.jboss.seam.example.seamdiscs.test.selenium.ArtistsTest" />
- <class name="org.jboss.seam.example.seamdiscs.test.selenium.DiscsTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,28 +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="Seampay example" verbose="2" parallel="false">
- <test name="seampay_jboss-embedded">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/seampay/test/selenium/seampay.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.seampay.selenium.PaymentTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seampay/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,30 +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="Seampay example" verbose="2" parallel="false">
- <test name="seampay_jboss4">
- <parameter name="PROPERTY_FILE" value="/org/jboss/seam/example/seampay/test/selenium/seampay.properties" />
- <classes>
- <class name="org.jboss.seam.example.common.test.seampay.selenium.PaymentTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamspace/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamspace/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/seamspace/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,33 +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="Seamspace example" verbose="2" parallel="false">
- <test name="seamspace_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.seamspace.test.selenium.LoginTest" />
- <class name="org.jboss.seam.example.seamspace.test.selenium.UserTest" />
- <class name="org.jboss.seam.example.seamspace.test.selenium.RoleTest" />
- <class name="org.jboss.seam.example.seamspace.test.selenium.BlogTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/spring/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/spring/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/spring/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,36 +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="Spring example" verbose="2" parallel="false">
- <test name="spring_jboss4">
- <parameter name="PROPERTY_FILE"
- value="/org/jboss/seam/example/spring/test/selenium/spring.properties" />
- <classes>
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.RegistrationTest" />
- <class
- name="org.jboss.seam.example.spring.test.selenium.SpringChangePasswordTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.BackButtonTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.SimpleBookingTest" />
- <class
- name="org.jboss.seam.example.common.test.booking.selenium.ConversationTest" />
- </classes>
- </test>
-</suite>
\ No newline at end of file
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss-embedded.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss-embedded.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss-embedded.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,30 +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="Todo example" verbose="2" parallel="false">
- <test name="todo_jboss-embedded">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.todo.test.selenium.SeleniumTodoTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/todo/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,30 +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="Todo example" verbose="2" parallel="false">
- <test name="todo_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.todo.test.selenium.SeleniumTodoTest" />
- </classes>
- </test>
-</suite>
Deleted: branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/ui/jboss4.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/ui/jboss4.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/examples/ui/jboss4.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -1,26 +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="UI example" verbose="2" parallel="false">
- <test name="ui_jboss4">
- <parameter name="PROPERTY_FILE" value="" />
- <classes>
- <class name="org.jboss.seam.example.ui.test.selenium.SeleniumUITest" />
- </classes>
- </test>
-</suite>
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.ci.properties
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.ci.properties 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.ci.properties 2009-07-14 18:51:56 UTC (rev 11290)
@@ -30,13 +30,9 @@
selenium.browser.url=http://127.0.0.1:8080
selenium.speed=0
selenium.timeout=120000
-selenium.icefaces.wait.time=2000
# default max wait times in seconds
-jboss4.deploy.waittime=300
jboss5.deploy.waittime=300
-tomcat6.deploy.waittime=60
-jboss-embedded.deploy.waittime=60
# container locations - must be set
# independent from ${seam.dir}/build.properties
@@ -46,9 +42,6 @@
#jboss-embedded.home=
# container settings
-jboss4.profile=default
-jboss4.jvm.arguments=-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512 -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
-
jboss5.profile=default
jboss5.jvm.arguments=-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512 -Dorg.jboss.resolver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
@@ -77,5 +70,4 @@
action.package=com.example
test.package=com.example.test
richfaces.skin=classic
-icefaces.home=
jboss.domain=default
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.properties
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.properties 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/ftest.properties 2009-07-14 18:51:56 UTC (rev 11290)
@@ -45,22 +45,13 @@
container=jboss5
# default max wait times in seconds
-jboss4.deploy.waittime=300
jboss5.deploy.waittime=300
-tomcat6.deploy.waittime=60
-jboss-embedded.deploy.waittime=60
# container locations - must be set
# independent from ${seam.dir}/build.properties
-jboss4.home=
-jboss5.home=
-tomcat6.home=
-jboss-embedded.home=
+jboss5.home=/home/mnovotny/apps/jboss-5.1.0.GA
# container settings
-jboss4.profile=default
-jboss4.jvm.arguments=-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512 -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
-
jboss5.profile=default
jboss5.jvm.arguments=-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512 -Dorg.jboss.resolver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
@@ -72,23 +63,23 @@
seamgen.control.container=false
# workspace for new projects
-workspace.home=
+workspace.home=/home/mnovotny/tmp
# seam-gen project properties
database.type=mysql
database.exists=y
database.drop=n
-driver.jar=/home/jharting/jboss/mysql-connector-java-5.1.6-bin.jar
+driver.jar=/usr/share/java/mysql.jar
driver.license.jar=
-hibernate.connection.username=seam
-hibernate.connection.password=seam
+hibernate.connection.username=medium
+hibernate.connection.password=medium
hibernate.connection.driver_class=com.mysql.jdbc.Driver
hibernate.connection.dataSource_class=com.mysql.jdbc.jdbc2.optional.MysqlDataSource
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
hibernate.default_catalog.null=
hibernate.default_schema.null=
hibernate.dialect=org.hibernate.dialect.MySQLDialect
-hibernate.connection.url=jdbc\:mysql\:///seam
+hibernate.connection.url=jdbc\:mysql\:///seamdb
model.package=com.example
action.package=com.example
test.package=com.example.test
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/readme.txt
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/readme.txt 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/readme.txt 2009-07-14 18:51:56 UTC (rev 11290)
@@ -34,14 +34,8 @@
To run all the functional tests run:
* "ant testall" for JBoss AS 5
- * "ant testall.jboss4" for JBoss AS 4.2
- * "ant testall.jboss-embedded" for Tomcat + JBoss Embedded
- * "ant testall.tomcat6" for plain Tomcat6
- To run functional tests for single example run:
+ To run functional tests for single example run:
* "ant test -Dtest=example_name" for JBoss AS 5
- * "ant test.jboss4 -Dtest=example_name" for JBoss AS 4.2
- * "ant test.jboss-embedded -Dtest=example_name" for Tomcat + JBoss Embedded
- * "ant test.tomcat6 -Dtest=example_name" for Tomcat6
Known Limitations:
---------------------
@@ -74,8 +68,6 @@
-------------------
blog - all tests fail if you don't delete blogindexes folder from application server prior running testsuite
seambay - testEmptyRegistration - JBSEAM-3893
-wicket - simpleBookingTest, testJBSEAM3288 - JBSEAM-3818
-icefaces - several tests fail on IE
TODO's:
-------
Modified: branches/enterprise/JBPAPP_5_0/src/test/ftest/seamgen/build.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/ftest/seamgen/build.xml 2009-07-14 12:06:14 UTC (rev 11289)
+++ branches/enterprise/JBPAPP_5_0/src/test/ftest/seamgen/build.xml 2009-07-14 18:51:56 UTC (rev 11290)
@@ -91,17 +91,6 @@
<target name="seam-gen.richfaces.testsuite.deployed" depends="build">
<run.selenium.test suite="richfaces-deployed" />
</target>
- <target name="seam-gen.icefaces.testsuite" description="Run Icefaces testsuite">
- <antcall target="seam-gen.icefaces.testsuite.exploded" />
- <antcall target="seam-gen.icefaces.testsuite.deployed" />
- </target>
- <target name="seam-gen.icefaces.testsuite.exploded" depends="build">
- <run.selenium.test suite="icefaces-exploded" />
- </target>
- <target name="seam-gen.icefaces.testsuite.deployed" depends="build">
- <run.selenium.test suite="icefaces-deploy" />
- </target>
-
<target name="seam-gen.smoke.testsuite" depends="build" description="Run smoke testsuite">
<run.selenium.test suite="smoke" />
</target>
15 years, 4 months