deltaspike git commit: DELTASPIKE-1324 Ensure that class level is read before method level.

2018-03-08 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 2cc5eeb07 -> 0922aa512


DELTASPIKE-1324 Ensure that class level is read before method level.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/0922aa51
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/0922aa51
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/0922aa51

Branch: refs/heads/master
Commit: 0922aa512a2ba68dc685fc0984fd7662df84a3b9
Parents: 2cc5eeb
Author: John D. Ament 
Authored: Thu Mar 8 20:56:27 2018 -0500
Committer: John D. Ament 
Committed: Thu Mar 8 20:56:27 2018 -0500

--
 .../jpa/impl/transaction/TransactionStrategyHelper.java  | 8 ++--
 .../transactional/defaultinjection/TransactionalBean.java| 1 +
 2 files changed, 3 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0922aa51/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/transaction/TransactionStrategyHelper.java
--
diff --git 
a/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/transaction/TransactionStrategyHelper.java
 
b/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/transaction/TransactionStrategyHelper.java
index e6bf768..6c8af2d 100644
--- 
a/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/transaction/TransactionStrategyHelper.java
+++ 
b/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/transaction/TransactionStrategyHelper.java
@@ -21,7 +21,6 @@ package org.apache.deltaspike.jpa.impl.transaction;
 import org.apache.deltaspike.core.util.AnnotationUtils;
 import org.apache.deltaspike.jpa.api.transaction.Transactional;
 import org.apache.deltaspike.jpa.impl.entitymanager.EntityManagerMetadata;
-import org.apache.deltaspike.jpa.impl.entitymanager.EntityManagerRefLookup;
 
 import javax.enterprise.context.Dependent;
 import javax.enterprise.inject.Any;
@@ -49,9 +48,6 @@ public class TransactionStrategyHelper implements Serializable
 @Inject
 private BeanManager beanManager;
 
-@Inject
-private EntityManagerRefLookup entityManagerRefLookup;
-
 /**
  * This method uses the InvocationContext to scan the 
Transactional
  * interceptor for a manually specified Qualifier.
@@ -68,7 +64,7 @@ public class TransactionStrategyHelper implements Serializable
 public Set 
resolveEntityManagerQualifiers(EntityManagerMetadata entityManagerMetadata,

Class interceptedTargetClass)
 {
-Set emQualifiers = new HashSet();
+Set emQualifiers = new HashSet<>();
 Class[] qualifierClasses = 
entityManagerMetadata.getQualifiers();
 
 if (qualifierClasses == null || qualifierClasses.length == 1 && 
Any.class.equals(qualifierClasses[0]) )
@@ -151,8 +147,8 @@ public class TransactionStrategyHelper implements 
Serializable
 EntityManagerMetadata createEntityManagerMetadata(InvocationContext 
context)
 {
 EntityManagerMetadata metadata = new EntityManagerMetadata();
-metadata.readFrom(context.getMethod(), beanManager);
 metadata.readFrom(context.getMethod().getDeclaringClass(), 
beanManager);
+metadata.readFrom(context.getMethod(), beanManager);
 return metadata;
 }
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0922aa51/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/transactional/defaultinjection/TransactionalBean.java
--
diff --git 
a/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/transactional/defaultinjection/TransactionalBean.java
 
b/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/transactional/defaultinjection/TransactionalBean.java
index 6060f4f..2013d3d 100644
--- 
a/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/transactional/defaultinjection/TransactionalBean.java
+++ 
b/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/transactional/defaultinjection/TransactionalBean.java
@@ -25,6 +25,7 @@ import javax.inject.Inject;
 import javax.persistence.EntityManager;
 
 @ApplicationScoped
+@Transactional(readOnly = true)
 public class TransactionalBean
 {
 @Inject



deltaspike git commit: DELTASPIKE-1326 Remove backwards compatible layer for Java 8 in Data Module, since Java 8 is now required. Test against Wildfly 10 by default.

2018-03-08 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 11e1cf724 -> 2cc5eeb07


DELTASPIKE-1326 Remove backwards compatible layer for Java 8 in Data Module, 
since Java 8 is now required.  Test against Wildfly 10 by default.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/2cc5eeb0
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/2cc5eeb0
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/2cc5eeb0

Branch: refs/heads/master
Commit: 2cc5eeb074081aa5157da3420995f5cd85220c40
Parents: 11e1cf7
Author: John D. Ament 
Authored: Thu Mar 8 20:48:23 2018 -0500
Committer: John D. Ament 
Committed: Thu Mar 8 20:48:23 2018 -0500

--
 .../deltaspike/core/util/OptionalUtil.java  |  76 -
 .../apache/deltaspike/core/util/StreamUtil.java |  77 -
 .../deltaspike/core/util/OptionalUtilTest.java  |  65 
 .../deltaspike/core/util/StreamUtilTest.java|  61 
 .../data/impl/builder/DelegateQueryBuilder.java |  10 +-
 .../builder/result/QueryProcessorFactory.java   |   7 +-
 .../impl/handler/EntityRepositoryHandler.java   |   4 +-
 .../RepositoryMethodMetadataInitializer.java|  19 +-
 .../data/test/java8/entity/Simple.java  | 139 +
 .../data/test/java8/repo/SimpleRepository.java  |  38 +++
 .../data/test/java8/repo/SimpleRepository2.java |  38 +++
 .../data/test/java8/test/Java8Test.java | 167 ++
 .../test/java8/util/EntityManagerProducer.java  |  30 ++
 .../data/test/java8/util/TestDeployments.java   |  62 
 deltaspike/modules/data/pom.xml |   8 +-
 deltaspike/modules/data/test-java8/pom.xml  | 305 ---
 .../data/test/java8/entity/Simple.java  | 139 -
 .../data/test/java8/repo/SimpleRepository.java  |  38 ---
 .../data/test/java8/repo/SimpleRepository2.java |  38 ---
 .../data/test/java8/test/Java8Test.java | 167 --
 .../test/java8/util/EntityManagerProducer.java  |  30 --
 .../data/test/java8/util/TestDeployments.java   |  62 
 .../resources-glassfish/test-persistence.xml|  30 --
 .../test/resources-openejb/test-persistence.xml |  31 --
 .../resources-weblogic/test-persistence.xml |  31 --
 .../test/resources-wildfly/test-persistence.xml |  28 --
 deltaspike/parent/code/pom.xml  |   2 +-
 27 files changed, 492 insertions(+), 1210 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2cc5eeb0/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/OptionalUtil.java
--
diff --git 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/OptionalUtil.java
 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/OptionalUtil.java
deleted file mode 100644
index c906af4..000
--- 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/OptionalUtil.java
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.deltaspike.core.util;
-
-import javax.enterprise.inject.Typed;
-import java.lang.reflect.InvocationTargetException;
-import java.lang.reflect.Method;
-
-@Typed()
-public abstract class OptionalUtil
-{
-private static boolean optionalSupported = true;
-private static Class optionalClass;
-private static Method optionalMethod;
-
-static
-{
-try
-{
-optionalClass = Class.forName("java.util.Optional");
-optionalMethod = optionalClass.getMethod("ofNullable", 
Object.class);
-}
-catch (Exception e)
-{
-optionalSupported = false;
-optionalClass = null;
-optionalMethod = null;
-}
-}
-
-public static boolean isOptionalSupported()
-{
-return optionalSupported;
-}
-
-public static boolean isOptionalReturned(Method method)
-{
-return optionalSupported && 

deltaspike git commit: DELTASPIKE-1299: fixed orderby item order

2017-12-30 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master d95abe8c0 -> 2c4c80d65


DELTASPIKE-1299: fixed orderby item order


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/2c4c80d6
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/2c4c80d6
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/2c4c80d6

Branch: refs/heads/master
Commit: 2c4c80d65984648437dcd602f2ba57f9deca91f6
Parents: d95abe8
Author: Moritz Becker 
Authored: Sun Nov 12 16:30:13 2017 +0100
Committer: John D. Ament 
Committed: Sat Dec 30 11:09:39 2017 -0500

--
 .../data/impl/builder/part/OrderByQueryPart.java |  4 ++--
 .../data/impl/builder/part/QueryRootTest.java| 16 
 deltaspike/modules/partial-bean/impl/pom.xml | 19 +++
 3 files changed, 37 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c4c80d6/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/builder/part/OrderByQueryPart.java
--
diff --git 
a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/builder/part/OrderByQueryPart.java
 
b/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/builder/part/OrderByQueryPart.java
index c4b241e..6185dd5 100644
--- 
a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/builder/part/OrderByQueryPart.java
+++ 
b/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/builder/part/OrderByQueryPart.java
@@ -27,7 +27,7 @@ import java.util.Iterator;
 import java.util.LinkedList;
 import java.util.List;
 import java.util.Set;
-import java.util.TreeSet;
+import java.util.LinkedHashSet;
 
 import org.apache.deltaspike.data.impl.builder.QueryBuilder;
 import org.apache.deltaspike.data.impl.builder.QueryBuilderContext;
@@ -43,7 +43,7 @@ public class OrderByQueryPart extends BasePropertyQueryPart
 @Override
 protected QueryPart build(String queryPart, String method, 
RepositoryMetadata repo)
 {
-Set collect = new TreeSet();
+Set collect = new LinkedHashSet();
 List ascSplit = new LinkedList();
 split(queryPart, KEYWORD_ASC, ascSplit);
 for (String ascPart : ascSplit)

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c4c80d6/deltaspike/modules/data/impl/src/test/java/org/apache/deltaspike/data/impl/builder/part/QueryRootTest.java
--
diff --git 
a/deltaspike/modules/data/impl/src/test/java/org/apache/deltaspike/data/impl/builder/part/QueryRootTest.java
 
b/deltaspike/modules/data/impl/src/test/java/org/apache/deltaspike/data/impl/builder/part/QueryRootTest.java
index 02528d9..9312203 100644
--- 
a/deltaspike/modules/data/impl/src/test/java/org/apache/deltaspike/data/impl/builder/part/QueryRootTest.java
+++ 
b/deltaspike/modules/data/impl/src/test/java/org/apache/deltaspike/data/impl/builder/part/QueryRootTest.java
@@ -167,6 +167,22 @@ public class QueryRootTest
 assertEquals(expected, result);
 }
 
+@Test
+public void should_apply_order_by_in_order()
+{
+// given
+final String name = "findAllOrderByNameDescIdAsc";
+final String expected =
+"select e from Simple e " +
+"order by e.name desc, e.id asc";
+
+// when
+String result = QueryRoot.create(name, repo, 
prefix(name)).getJpqlQuery().trim();
+
+// then
+assertEquals(expected, result);
+}
+
 private RepositoryMethodPrefix prefix(final String name)
 {
 return new RepositoryMethodPrefix("", name);

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c4c80d6/deltaspike/modules/partial-bean/impl/pom.xml
--
diff --git a/deltaspike/modules/partial-bean/impl/pom.xml 
b/deltaspike/modules/partial-bean/impl/pom.xml
index 8adc249..e501383 100644
--- a/deltaspike/modules/partial-bean/impl/pom.xml
+++ b/deltaspike/modules/partial-bean/impl/pom.xml
@@ -69,5 +69,24 @@
 org.apache.deltaspike.modules
 deltaspike-proxy-module-impl-asm5
 
+
+
+org.ow2.asm
+asm
+5.0.3
+test
+
+
+org.ow2.asm
+asm-commons
+5.0.3
+test
+
+
+org.ow2.asm
+asm-tree
+5.0.3
+test
+
 
 



deltaspike git commit: Disabling java 8 tests as recent jenkins changes make this profile broken.

2017-11-30 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master e10e8863a -> 2847590c4


Disabling java 8 tests as recent jenkins changes make this profile broken.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/2847590c
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/2847590c
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/2847590c

Branch: refs/heads/master
Commit: 2847590c4fff5dbdfa59b125b7d07db16ab896c3
Parents: e10e886
Author: John D. Ament 
Authored: Thu Nov 30 09:57:45 2017 -0500
Committer: John D. Ament 
Committed: Thu Nov 30 09:57:45 2017 -0500

--
 deltaspike/modules/data/pom.xml | 3 ---
 1 file changed, 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2847590c/deltaspike/modules/data/pom.xml
--
diff --git a/deltaspike/modules/data/pom.xml b/deltaspike/modules/data/pom.xml
index 9970ea7..1c1f6f2 100755
--- a/deltaspike/modules/data/pom.xml
+++ b/deltaspike/modules/data/pom.xml
@@ -74,9 +74,6 @@
 
 
 java8.tests
-
-1.8
-
 
 test-java8
 



deltaspike git commit: DELTASPIKE-1281 - Updating test.

2017-08-12 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master c7b5471c2 -> 618dd99b6


DELTASPIKE-1281 - Updating test.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/618dd99b
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/618dd99b
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/618dd99b

Branch: refs/heads/master
Commit: 618dd99b6861c80250d2724208e77807c14b5f32
Parents: c7b5471
Author: John D. Ament 
Authored: Sat Aug 12 19:06:10 2017 -0400
Committer: John D. Ament 
Committed: Sat Aug 12 19:06:10 2017 -0400

--
 .../api/entitymanager/PersistenceConfigurationProviderTest.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/618dd99b/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/entitymanager/PersistenceConfigurationProviderTest.java
--
diff --git 
a/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/entitymanager/PersistenceConfigurationProviderTest.java
 
b/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/entitymanager/PersistenceConfigurationProviderTest.java
index ff69d5f..2bd6f9d 100644
--- 
a/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/entitymanager/PersistenceConfigurationProviderTest.java
+++ 
b/deltaspike/modules/jpa/impl/src/test/java/org/apache/deltaspike/test/jpa/api/entitymanager/PersistenceConfigurationProviderTest.java
@@ -23,6 +23,7 @@ import javax.persistence.EntityManager;
 import javax.persistence.spi.PersistenceProviderResolverHolder;
 import java.util.Properties;
 
+import org.apache.deltaspike.core.api.provider.BeanManagerProvider;
 import 
org.apache.deltaspike.jpa.spi.entitymanager.PersistenceConfigurationProvider;
 import org.apache.deltaspike.test.category.SeCategory;
 import org.apache.deltaspike.test.jpa.api.shared.TestEntityManager;
@@ -69,7 +70,8 @@ public class PersistenceConfigurationProviderTest
 public void testPersistenceConfigurationProvider()
 {
 Properties myUnitConfig = 
persistenceConfigurationProvider.getEntityManagerFactoryConfiguration("MyUnit");
-Assert.assertEquals(3, myUnitConfig.size());
+Assert.assertEquals(4, myUnitConfig.size());
+
Assert.assertEquals(BeanManagerProvider.getInstance().getBeanManager(), 
myUnitConfig.get("javax.persistence.bean.manager"));
 Assert.assertEquals("blub", 
myUnitConfig.get("javax.persistence.jdbc.password"));
 Assert.assertEquals("sa", 
myUnitConfig.get("javax.persistence.jdbc.user"));
 Assert.assertEquals("some.jdbc.Driver", 
myUnitConfig.get("javax.persistence.jdbc.driver"));



deltaspike git commit: DELTASPIKE-1278: Added an additonal check to ensure local resources do exist to respect optional flag. [Forced Update!]

2017-08-12 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 6befd1231 -> c7b5471c2 (forced update)


DELTASPIKE-1278: Added an additonal check to ensure local resources do exist to 
respect optional flag.

This closes #74


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/c7b5471c
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/c7b5471c
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/c7b5471c

Branch: refs/heads/master
Commit: c7b5471c2912b68775ae887ab99d3e6cac57a053
Parents: 7594ba6
Author: Dennis Rippinger 
Authored: Sun Jul 2 14:43:31 2017 +0200
Committer: John D. Ament 
Committed: Sat Aug 12 18:26:53 2017 -0400

--
 .../deltaspike/core/util/PropertyFileUtils.java  | 19 +--
 .../core/util/PropertyFileUtilsTest.java | 14 +-
 .../EnvironmentPropertyConfigSourceProvider.java |  6 ++
 3 files changed, 36 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/c7b5471c/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
--
diff --git 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
index ad9e10b..813b988 100644
--- 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
+++ 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
@@ -22,6 +22,7 @@ import javax.enterprise.inject.Typed;
 import java.io.File;
 import java.io.IOException;
 import java.io.InputStream;
+import java.net.URISyntaxException;
 import java.net.URL;
 import java.util.Collections;
 import java.util.Enumeration;
@@ -41,13 +42,27 @@ public abstract class PropertyFileUtils
 // prevent instantiation
 }
 
-public static Enumeration resolvePropertyFiles(String 
propertyFileName) throws IOException
+public static Enumeration resolvePropertyFiles(String 
propertyFileName) throws IOException, URISyntaxException
 {
 if (propertyFileName != null && (propertyFileName.contains("://") || 
propertyFileName.startsWith("file:")))
 {
 // the given string is actually already an URL
 Vector propertyFileUrls = new Vector();
-propertyFileUrls.add(new URL(propertyFileName));
+URL url = new URL(propertyFileName);
+
+if (propertyFileName.startsWith("file:"))
+{
+File file = new File(url.toURI());
+if (file.exists())
+{
+propertyFileUrls.add(url);
+}
+}
+else
+{
+propertyFileUrls.add(url);
+}
+
 return propertyFileUrls.elements();
 }
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/c7b5471c/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
--
diff --git 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
index cde3d5b..6c8c021 100644
--- 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
+++ 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
@@ -25,6 +25,7 @@ import org.junit.runners.Parameterized;
 import java.io.File;
 import java.io.IOException;
 import java.net.MalformedURLException;
+import java.net.URISyntaxException;
 import java.net.URL;
 import java.util.Arrays;
 import java.util.Enumeration;
@@ -77,6 +78,17 @@ public class PropertyFileUtilsTest
 assertFalse(result.hasMoreElements());
 }
 }
+},
+new Object[] // url not existent
+{
+new Case(new 
File("src/test/resources/test_not_existent.properties").toURI().toURL().toExternalForm())
+{
+@Override
+public void run()
+{
+assertFalse(result.hasMoreElements());
+}
+}
 });
 }
 
@@ -88,7 +100,7 @@ public class PropertyFileUtilsTest
 }
 
 @Test

deltaspike git commit: DELTASPIKE-1278: Added an additonal check to ensure local resources do exist to respect optional flag.

2017-08-12 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 7594ba6e3 -> 6befd1231


DELTASPIKE-1278: Added an additonal check to ensure local resources do exist to 
respect optional flag.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/6befd123
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/6befd123
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/6befd123

Branch: refs/heads/master
Commit: 6befd1231ca07059d8d02158c91c6ddf9ffa481d
Parents: 7594ba6
Author: Dennis Rippinger 
Authored: Sun Jul 2 14:43:31 2017 +0200
Committer: John D. Ament 
Committed: Sat Aug 12 18:26:07 2017 -0400

--
 .../deltaspike/core/util/PropertyFileUtils.java  | 19 +--
 .../core/util/PropertyFileUtilsTest.java | 14 +-
 .../EnvironmentPropertyConfigSourceProvider.java |  6 ++
 3 files changed, 36 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/6befd123/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
--
diff --git 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
index ad9e10b..813b988 100644
--- 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
+++ 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/PropertyFileUtils.java
@@ -22,6 +22,7 @@ import javax.enterprise.inject.Typed;
 import java.io.File;
 import java.io.IOException;
 import java.io.InputStream;
+import java.net.URISyntaxException;
 import java.net.URL;
 import java.util.Collections;
 import java.util.Enumeration;
@@ -41,13 +42,27 @@ public abstract class PropertyFileUtils
 // prevent instantiation
 }
 
-public static Enumeration resolvePropertyFiles(String 
propertyFileName) throws IOException
+public static Enumeration resolvePropertyFiles(String 
propertyFileName) throws IOException, URISyntaxException
 {
 if (propertyFileName != null && (propertyFileName.contains("://") || 
propertyFileName.startsWith("file:")))
 {
 // the given string is actually already an URL
 Vector propertyFileUrls = new Vector();
-propertyFileUrls.add(new URL(propertyFileName));
+URL url = new URL(propertyFileName);
+
+if (propertyFileName.startsWith("file:"))
+{
+File file = new File(url.toURI());
+if (file.exists())
+{
+propertyFileUrls.add(url);
+}
+}
+else
+{
+propertyFileUrls.add(url);
+}
+
 return propertyFileUrls.elements();
 }
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/6befd123/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
--
diff --git 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
index cde3d5b..6c8c021 100644
--- 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
+++ 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/core/util/PropertyFileUtilsTest.java
@@ -25,6 +25,7 @@ import org.junit.runners.Parameterized;
 import java.io.File;
 import java.io.IOException;
 import java.net.MalformedURLException;
+import java.net.URISyntaxException;
 import java.net.URL;
 import java.util.Arrays;
 import java.util.Enumeration;
@@ -77,6 +78,17 @@ public class PropertyFileUtilsTest
 assertFalse(result.hasMoreElements());
 }
 }
+},
+new Object[] // url not existent
+{
+new Case(new 
File("src/test/resources/test_not_existent.properties").toURI().toURL().toExternalForm())
+{
+@Override
+public void run()
+{
+assertFalse(result.hasMoreElements());
+}
+}
 });
 }
 
@@ -88,7 +100,7 @@ public class PropertyFileUtilsTest
 }
 
 @Test
-public void run() throws 

deltaspike git commit: DELTASPIKE-1281 - Add JPA Expected attribute for BeanManager.

2017-08-12 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 56d56989d -> 7594ba6e3


DELTASPIKE-1281 - Add JPA Expected attribute for BeanManager.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/7594ba6e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/7594ba6e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/7594ba6e

Branch: refs/heads/master
Commit: 7594ba6e36ccdf2bd0ea0e32926745b42c0eba63
Parents: 56d5698
Author: John D. Ament 
Authored: Sat Aug 12 17:51:54 2017 -0400
Committer: John D. Ament 
Committed: Sat Aug 12 17:51:54 2017 -0400

--
 .../impl/entitymanager/PersistenceConfigurationProviderImpl.java | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/7594ba6e/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/PersistenceConfigurationProviderImpl.java
--
diff --git 
a/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/PersistenceConfigurationProviderImpl.java
 
b/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/PersistenceConfigurationProviderImpl.java
index 8f97a90..6ef85d2 100644
--- 
a/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/PersistenceConfigurationProviderImpl.java
+++ 
b/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/PersistenceConfigurationProviderImpl.java
@@ -27,6 +27,7 @@ import java.util.Set;
 
 import org.apache.deltaspike.core.api.config.ConfigResolver;
 import org.apache.deltaspike.core.api.config.PropertyLoader;
+import org.apache.deltaspike.core.api.provider.BeanManagerProvider;
 import 
org.apache.deltaspike.jpa.spi.entitymanager.PersistenceConfigurationProvider;
 
 /**
@@ -65,6 +66,9 @@ public class PersistenceConfigurationProviderImpl implements 
PersistenceConfigur
 
 unitProperties = addConfigProperties(unitProperties, 
persistenceUnitName);
 
+// add spec expected attributes
+unitProperties.put("javax.persistence.bean.manager", 
BeanManagerProvider.getInstance().getBeanManager());
+
 return unitProperties;
 }
 



deltaspike git commit: DELTASPIKE-940 - Introduce an SPI based defualt resolver based on qualifiers.

2017-08-12 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 28bcefc88 -> 56d56989d


DELTASPIKE-940 - Introduce an SPI based defualt resolver based on qualifiers.

Adding note to not use the deprecated classes.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/56d56989
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/56d56989
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/56d56989

Branch: refs/heads/master
Commit: 56d56989d4aa3f34e4353da42bca428f6a6751d2
Parents: 28bcefc
Author: John D. Ament 
Authored: Sat Aug 12 17:49:13 2017 -0400
Committer: John D. Ament 
Committed: Sat Aug 12 17:49:13 2017 -0400

--
 .../data/api/EntityManagerConfig.java   |  4 +
 .../impl/meta/RepositoryMetadataHandler.java| 19 -
 .../meta/RepositoryMetadataInitializer.java | 12 ++-
 .../QualifierBackedEntityManagerResolver.java   | 86 
 .../entitymanager/EntityManagerMetadata.java| 11 +++
 .../entitymanager/EntityManagerRefLookup.java   |  8 +-
 .../ResourceLocalTransactionStrategy.java   | 37 +
 .../NoEntityManagerProducerTest.java|  4 +-
 8 files changed, 121 insertions(+), 60 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/56d56989/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
--
diff --git 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
index 8a1a5f4..b3a032f 100644
--- 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
+++ 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
@@ -26,8 +26,12 @@ import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 
+import org.apache.deltaspike.jpa.api.entitymanager.EntityManagerResolver;
+
 /**
  * Configure the EntityManager for a specific repository.
+ *
+ * This class is deprecated, instead use {@link 
org.apache.deltaspike.jpa.api.entitymanager.EntityManagerConfig}
  */
 @Target(ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/56d56989/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataHandler.java
--
diff --git 
a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataHandler.java
 
b/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataHandler.java
index 2c03aa8..2e0622f 100644
--- 
a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataHandler.java
+++ 
b/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataHandler.java
@@ -71,21 +71,6 @@ public class RepositoryMetadataHandler
 }
 throw new RuntimeException("Unknown Repository classes " + 
candidateClasses);
 }
-
-/**
- * Lookup the {@link RepositoryMetadata} for a specific Repository class.
- *
- * @param repositoryClass The repository class to lookup the method for
- * @return A {@link RepositoryMetadata}.
- */
-public RepositoryMetadata lookupMetadata(Class repositoryClass)
-{
-if (repositoriesMetadata.containsKey(repositoryClass))
-{
-return repositoriesMetadata.get(repositoryClass);
-}
-throw new RuntimeException("Unknown Repository class " + 
repositoryClass.getName());
-}
 
 /**
  * lookup the {@link RepositoryMethodMetadata} for a specific repository 
and method.
@@ -99,8 +84,4 @@ public class RepositoryMetadataHandler
 return repositoryMetadata.getMethodsMetadata().get(method);
 }
 
-public Map getRepositories()
-{
-return repositoriesMetadata;
-}
 }

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/56d56989/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataInitializer.java
--
diff --git 
a/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataInitializer.java
 
b/deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/meta/RepositoryMetadataInitializer.java
index 6ecda3e..8fc8ff8 100644
--- 

deltaspike git commit: DELTASPIKE-940 - Avoid reading transactional annotation.

2017-08-12 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master a4998790a -> 28bcefc88


DELTASPIKE-940 - Avoid reading transactional annotation.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/28bcefc8
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/28bcefc8
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/28bcefc8

Branch: refs/heads/master
Commit: 28bcefc88dc38c27ad6acfe28a46f1810af81c56
Parents: a499879
Author: John D. Ament 
Authored: Sat Aug 12 13:29:40 2017 -0400
Committer: John D. Ament 
Committed: Sat Aug 12 13:29:40 2017 -0400

--
 .../api/entitymanager/EntityManagerConfig.java  |  2 +-
 .../entitymanager/EntityManagerMetadata.java| 46 +++-
 .../ResourceLocalTransactionStrategy.java   |  7 ++-
 .../transaction/TransactionStrategyHelper.java  | 24 ++
 .../noentitymanager/TransactionalBean.java  |  4 +-
 .../manual/ManualTransactionBean.java   |  4 +-
 6 files changed, 63 insertions(+), 24 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/28bcefc8/deltaspike/modules/jpa/api/src/main/java/org/apache/deltaspike/jpa/api/entitymanager/EntityManagerConfig.java
--
diff --git 
a/deltaspike/modules/jpa/api/src/main/java/org/apache/deltaspike/jpa/api/entitymanager/EntityManagerConfig.java
 
b/deltaspike/modules/jpa/api/src/main/java/org/apache/deltaspike/jpa/api/entitymanager/EntityManagerConfig.java
index 0155916..de451ed 100644
--- 
a/deltaspike/modules/jpa/api/src/main/java/org/apache/deltaspike/jpa/api/entitymanager/EntityManagerConfig.java
+++ 
b/deltaspike/modules/jpa/api/src/main/java/org/apache/deltaspike/jpa/api/entitymanager/EntityManagerConfig.java
@@ -32,7 +32,7 @@ import java.lang.annotation.Target;
 /**
  * Configure the EntityManager for a specific repository.
  */
-@Target(ElementType.TYPE)
+@Target( { ElementType.TYPE, ElementType.METHOD } )
 @Retention(RetentionPolicy.RUNTIME)
 @Documented
 @Inherited

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/28bcefc8/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/EntityManagerMetadata.java
--
diff --git 
a/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/EntityManagerMetadata.java
 
b/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/EntityManagerMetadata.java
index 1e9b902..2827fd7 100644
--- 
a/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/EntityManagerMetadata.java
+++ 
b/deltaspike/modules/jpa/impl/src/main/java/org/apache/deltaspike/jpa/impl/entitymanager/EntityManagerMetadata.java
@@ -27,6 +27,7 @@ import javax.enterprise.inject.spi.Bean;
 import javax.enterprise.inject.spi.BeanManager;
 import javax.persistence.FlushModeType;
 import java.lang.annotation.Annotation;
+import java.lang.reflect.AnnotatedElement;
 import java.util.Set;
 
 public class EntityManagerMetadata
@@ -35,6 +36,7 @@ public class EntityManagerMetadata
 private Class[] qualifiers;
 private boolean entityManagerResolverIsNormalScope;
 private FlushModeType entityManagerFlushMode;
+private boolean readOnly = false;
 
 public Class 
getEntityManagerResolverClass()
 {
@@ -76,9 +78,36 @@ public class EntityManagerMetadata
 this.qualifiers = qualifiers;
 }
 
-public boolean readFrom(Class componentClass, BeanManager beanManager)
+public boolean readFrom(AnnotatedElement method, BeanManager beanManager)
+{
+EntityManagerConfig entityManagerConfig = 
method.getAnnotation(EntityManagerConfig.class);
+boolean processed = false;
+processed = processEntityManagerConfig(beanManager, 
entityManagerConfig);
+
+Transactional transactional = 
method.getAnnotation(Transactional.class);
+
+processed = processTransactional(processed, transactional);
+
+return processed;
+}
+
+private boolean processTransactional(boolean processed, Transactional 
transactional)
+{
+if (transactional != null && this.qualifiers == null)
+{
+processed = true;
+this.setQualifiers(transactional.qualifier());
+}
+
+if (transactional != null)
+{
+this.readOnly = transactional.readOnly();
+}
+return processed;
+}
+
+private boolean processEntityManagerConfig(BeanManager beanManager, 
EntityManagerConfig entityManagerConfig)
 {
-EntityManagerConfig entityManagerConfig = 
componentClass.getAnnotation(EntityManagerConfig.class);
 boolean processed = false;

deltaspike git commit: DELTASPIKE-940 - First step in merging support for qualifiers and entity manager resolvers in data and JPA modules.

2017-06-24 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 764545c2d -> 256431539


DELTASPIKE-940 - First step in merging support for qualifiers and entity 
manager resolvers in data and JPA modules.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/25643153
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/25643153
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/25643153

Branch: refs/heads/master
Commit: 256431539ca8b01aa237d33f5bcb723e292f8893
Parents: 764545c
Author: John D. Ament 
Authored: Sat Jun 24 21:03:10 2017 -0400
Committer: John D. Ament 
Committed: Sat Jun 24 21:03:10 2017 -0400

--
 deltaspike/modules/data/api/pom.xml |   5 +
 .../data/api/EntityManagerConfig.java   |   4 +-
 .../data/api/EntityManagerResolver.java |  10 +-
 .../data/impl/handler/EntityManagerRef.java |  98 -
 .../impl/handler/EntityManagerRefLookup.java| 136 ---
 .../data/impl/handler/QueryHandler.java |   2 +
 .../data/impl/meta/RepositoryMetadata.java  |  39 +-
 .../meta/RepositoryMetadataInitializer.java |  29 ++--
 .../data/impl/handler/EntityManagerTest.java|  21 ++-
 .../service/BasicEntityManagerResolver.java |  38 ++
 ...gacyRepositoryWithEntityManagerResolver.java |  36 +
 ...mpleRepositoryWithEntityManagerResolver.java |   2 +-
 .../SimplisticEntityManagerResolver.java|   4 +-
 .../api/entitymanager/EntityManagerConfig.java  |  58 
 .../entitymanager/EntityManagerResolver.java|  36 +
 .../jpa/api/transaction/Transactional.java  |   5 +
 .../entitymanager/EntityManagerMetadata.java| 114 
 .../impl/entitymanager/EntityManagerRef.java|  99 ++
 .../entitymanager/EntityManagerRefLookup.java   | 136 +++
 19 files changed, 572 insertions(+), 300 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/25643153/deltaspike/modules/data/api/pom.xml
--
diff --git a/deltaspike/modules/data/api/pom.xml 
b/deltaspike/modules/data/api/pom.xml
index 31e2fa1..9b4e920 100755
--- a/deltaspike/modules/data/api/pom.xml
+++ b/deltaspike/modules/data/api/pom.xml
@@ -59,6 +59,11 @@
 deltaspike-partial-bean-module-api
 
 
+
+org.apache.deltaspike.modules
+deltaspike-jpa-module-api
+
+
 
 
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/25643153/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
--
diff --git 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
index e0bfb96..8a1a5f4 100644
--- 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
+++ 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerConfig.java
@@ -18,6 +18,7 @@
  */
 package org.apache.deltaspike.data.api;
 
+import javax.persistence.FlushModeType;
 import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Inherited;
@@ -25,8 +26,6 @@ import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 
-import javax.persistence.FlushModeType;
-
 /**
  * Configure the EntityManager for a specific repository.
  */
@@ -34,6 +33,7 @@ import javax.persistence.FlushModeType;
 @Retention(RetentionPolicy.RUNTIME)
 @Documented
 @Inherited
+@Deprecated
 public @interface EntityManagerConfig
 {
 /**

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/25643153/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerResolver.java
--
diff --git 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerResolver.java
 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerResolver.java
index de10da3..388d1d8 100644
--- 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerResolver.java
+++ 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/EntityManagerResolver.java
@@ -18,15 +18,13 @@
  */
 package org.apache.deltaspike.data.api;
 
-import javax.persistence.EntityManager;
-
 /**
  * Resolve the EntityManager used for a specific repository.
  * Only necessary if there is more than one 

deltaspike git commit: DELTASPIKE-1273 - Adding OWB2 profile for cdictrl

2017-06-18 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 82cd29fba -> 764545c2d


DELTASPIKE-1273 - Adding OWB2 profile for cdictrl


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/764545c2
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/764545c2
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/764545c2

Branch: refs/heads/master
Commit: 764545c2d0f902cd15b42a47a82e724f409557fe
Parents: 82cd29f
Author: John D. Ament 
Authored: Sun Jun 18 21:32:55 2017 -0400
Committer: John D. Ament 
Committed: Sun Jun 18 21:32:55 2017 -0400

--
 deltaspike/cdictrl/impl-owb/pom.xml | 70 +++-
 deltaspike/cdictrl/pom.xml  | 11 +
 2 files changed, 80 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/764545c2/deltaspike/cdictrl/impl-owb/pom.xml
--
diff --git a/deltaspike/cdictrl/impl-owb/pom.xml 
b/deltaspike/cdictrl/impl-owb/pom.xml
index e1d36c9..6fb0af4 100644
--- a/deltaspike/cdictrl/impl-owb/pom.xml
+++ b/deltaspike/cdictrl/impl-owb/pom.xml
@@ -124,7 +124,7 @@
 
 
 
-
+
 OWB15
 
 
@@ -178,6 +178,74 @@
 
 
 
+
+OWB2
+
+
+1.8
+
+
+
+apache-snapshot-repository
+http://repository.apache.org/snapshots/
+
+false
+
+
+true
+
+
+
+
+
+
+
+org.apache.geronimo.specs
+geronimo-atinject_1.0_spec
+
+
+org.apache.geronimo.specs
+geronimo-annotation_1.3_spec
+${geronimo-jcdi-2.0-spec.version}
+provided
+
+
+org.apache.geronimo.specs
+geronimo-jcdi_2.0_spec
+${geronimo-jcdi-2.0-spec.version}
+provided
+
+
+org.apache.geronimo.specs
+geronimo-interceptor_1.2_spec
+${geronimo-interceptor-1.2-spec.version}
+provided
+
+
+org.apache.geronimo.specs
+geronimo-el_2.2_spec
+1.0.2
+
+
+
+org.apache.openwebbeans
+openwebbeans-impl
+provided
+
+
+org.apache.openwebbeans
+openwebbeans-spi
+provided
+
+
+org.apache.openwebbeans
+openwebbeans-resource
+provided
+
+
+
+
+
 owbweb
 
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/764545c2/deltaspike/cdictrl/pom.xml
--
diff --git a/deltaspike/cdictrl/pom.xml b/deltaspike/cdictrl/pom.xml
index 3a8132c..9bba3f0 100644
--- a/deltaspike/cdictrl/pom.xml
+++ b/deltaspike/cdictrl/pom.xml
@@ -57,6 +57,17 @@
 
 
 
+OWB2
+
+
+api
+impl-owb
+servlet
+tck
+
+
+
+
 Weld1
 
 



deltaspike git commit: DELTASPIKE-1273 - Add testing against OWB2, minor fix for the weld3 profile to use latest stable by default.

2017-06-18 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master bdcbd2098 -> 82cd29fba


DELTASPIKE-1273 - Add testing against OWB2, minor fix for the weld3 profile to 
use latest stable by default.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/82cd29fb
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/82cd29fb
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/82cd29fb

Branch: refs/heads/master
Commit: 82cd29fba2368363ad23f97288fd1e2235d3730a
Parents: bdcbd20
Author: John D. Ament 
Authored: Sun Jun 18 08:13:31 2017 -0400
Committer: John D. Ament 
Committed: Sun Jun 18 08:13:31 2017 -0400

--
 deltaspike/parent/code/pom.xml | 109 +++-
 deltaspike/parent/pom.xml  |   5 +-
 2 files changed, 109 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/82cd29fb/deltaspike/parent/code/pom.xml
--
diff --git a/deltaspike/parent/code/pom.xml b/deltaspike/parent/code/pom.xml
index 5961161..59ec60e 100644
--- a/deltaspike/parent/code/pom.xml
+++ b/deltaspike/parent/code/pom.xml
@@ -218,7 +218,7 @@
 
 
 
-
+
 OWB15
 
 
@@ -269,7 +269,110 @@
 
 org.apache.geronimo.specs
 geronimo-annotation_1.2_spec
-1.0.MR2-SNAPSHOT
+${geronimo-annotation_1.2_spec.version}
+provided
+
+
+org.apache.geronimo.specs
+geronimo-el_2.2_spec
+1.0.2
+
+
+
+org.apache.openwebbeans
+openwebbeans-impl
+
+
+org.apache.openwebbeans
+openwebbeans-spi
+
+
+org.apache.openwebbeans
+openwebbeans-resource
+
+
+
+org.apache.openwebbeans.arquillian
+owb-arquillian-standalone
+${owb.version}
+test
+
+
+
+org.apache.bval
+bval-jsr303
+test
+
+
+
+
+
+
+OWB2
+
+
+2.0.0-SNAPSHOT
+owb-${owb.version}
+1.8
+
+
+
+
+apache-snapshot-repository
+http://repository.apache.org/snapshots/
+
+false
+
+
+true
+
+
+
+
+
+
+
+org.apache.maven.plugins
+maven-surefire-plugin
+
+
+
${cdicontainer.version}
+
+
+
+
+
org.apache.deltaspike.test.category.WebProfileCategory,
+
org.apache.deltaspike.test.category.WebEE7ProfileCategory,
+
org.apache.deltaspike.test.category.FullProfileCategory,
+
org.apache.deltaspike.test.category.EnterpriseArchiveProfileCategory
+
+
+
+
+
+
+
+
+
+org.apache.geronimo.specs
+geronimo-atinject_1.0_spec
+
+
+org.apache.geronimo.specs
+geronimo-annotation_1.3_spec
+${geronimo-jcdi-2.0-spec.version}
+provided
+
+
+org.apache.geronimo.specs
+geronimo-jcdi_2.0_spec
+${geronimo-jcdi-2.0-spec.version}
+provided
+
+
+org.apache.geronimo.specs
+geronimo-interceptor_1.2_spec
+${geronimo-interceptor-1.2-spec.version}
 provided
 
 
@@ -523,7 +626,7 @@
 
 
 
-3.0.0.Beta1
+3.0.0.Final
 
weld-${weld.version}
  

svn commit: r20064 - in /release/deltaspike: 1.7.2/ 1.8.0/

2017-06-18 Thread johndament
Author: johndament
Date: Sun Jun 18 11:58:49 2017
New Revision: 20064

Log:
Removing 1.7.2, adding 1.8.0 release.

Added:
release/deltaspike/1.8.0/
release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip   (with props)
release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.asc
release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.md5
release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.sha1
release/deltaspike/1.8.0/deltaspike-1.8.0.pom
release/deltaspike/1.8.0/deltaspike-1.8.0.pom.asc
release/deltaspike/1.8.0/deltaspike-1.8.0.pom.md5
release/deltaspike/1.8.0/deltaspike-1.8.0.pom.sha1
release/deltaspike/1.8.0/distribution-full-1.8.0-tests.jar   (with props)
release/deltaspike/1.8.0/distribution-full-1.8.0-tests.jar.asc
release/deltaspike/1.8.0/distribution-full-1.8.0-tests.jar.asc.asc
release/deltaspike/1.8.0/distribution-full-1.8.0-tests.jar.md5
release/deltaspike/1.8.0/distribution-full-1.8.0-tests.jar.sha1
release/deltaspike/1.8.0/distribution-full-1.8.0.pom
release/deltaspike/1.8.0/distribution-full-1.8.0.pom.asc
release/deltaspike/1.8.0/distribution-full-1.8.0.pom.asc.asc
release/deltaspike/1.8.0/distribution-full-1.8.0.pom.md5
release/deltaspike/1.8.0/distribution-full-1.8.0.pom.sha1
release/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz   (with props)
release/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz.asc
release/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz.asc.asc
release/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz.md5
release/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz.sha1
release/deltaspike/1.8.0/distribution-full-1.8.0.zip   (with props)
release/deltaspike/1.8.0/distribution-full-1.8.0.zip.asc
release/deltaspike/1.8.0/distribution-full-1.8.0.zip.asc.asc
release/deltaspike/1.8.0/distribution-full-1.8.0.zip.md5
release/deltaspike/1.8.0/distribution-full-1.8.0.zip.sha1
Removed:
release/deltaspike/1.7.2/

Added: release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip
==
Binary file - no diff available.

Propchange: release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip
--
svn:mime-type = application/octet-stream

Added: release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.asc
==
--- release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.asc (added)
+++ release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.asc Sun Jun 18 
11:58:49 2017
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJZKpw8AAoJEOkSh4Iv24Gxb+QQAIrORIN6dFa0XfHw+DD1Jmc5
+MdaYXzatmLc+d0QokyK3Fv3v7aaMdoemkKDh1GnkqIONo05uagzfil59UALnj4Vp
+Wv9KQO/+E8zx3zimjw+hA9yWEX/Rw+IAvh4jBc40xvXy713YBKib0c/mYjTKsG6P
+L+uYDCIabytw4NS6khI1RQvWq/0WzV22q1jJEuHlkJs81r62FYijBkXMcqFxpm5U
+BgGvvUXFqiRPF4klEBHKftUB+9FD69ezh9r/yUDiMZR8dMAL3BwsYqSshDuPWgG7
+OQ1KbNTkeNP5MHldCuMfMkODc9ZAZIt38sAt90kmgixHhPL5QnOcJNRTWTSI72js
+xVGo0ZOiJvKEpLGw/QTXPKKdhrOwMRzYWi5vUmuNocD8/D9diuww/29D7lWYauHt
+Pmu46kRF+aGXGDLB8h20XMA0Lj4PFSJFYsYOgsBpp77XOzB/sCmtGuObb13B4vY8
+/nTKyiWYo616z+gyN+mBKKc12GpT+UZYpuUk/zv2sQGvRTer7tgyBlxl67rBhVZs
+uAFgRZG9CMuiloF3650tan7PzDqj4+0WmX8Pnli9Z8UIDT6eEHYjDrStf/XcWWyw
+iDWwbR1wp6ke2uXinVqVkEYETy05u/tDN1FLfUGrFD6HxOKvHu1Y5xafM2ZQwEm4
+ui/UKkdKoMfmIpEbquVr
+=tNnZ
+-END PGP SIGNATURE-

Added: release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.md5
==
--- release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.md5 (added)
+++ release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.md5 Sun Jun 18 
11:58:49 2017
@@ -0,0 +1 @@
+be2509a747194b492680660ebd6a6267
\ No newline at end of file

Added: release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.sha1
==
--- release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.sha1 (added)
+++ release/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.sha1 Sun Jun 
18 11:58:49 2017
@@ -0,0 +1 @@
+47c05e221b637343fc07e629bf89565381f63f6b
\ No newline at end of file

Added: release/deltaspike/1.8.0/deltaspike-1.8.0.pom
==
--- release/deltaspike/1.8.0/deltaspike-1.8.0.pom (added)
+++ release/deltaspike/1.8.0/deltaspike-1.8.0.pom Sun Jun 18 11:58:49 2017
@@ -0,0 +1,162 @@
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+4.0.0
+
+
+org.apache
+apache
+18
+
+
+
+org.apache.deltaspike
+ 

svn commit: r1014191 - /websites/production/deltaspike/content/

2017-06-18 Thread johndament
Author: johndament
Date: Sun Jun 18 11:48:19 2017
New Revision: 1014191

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r1014190, websites/staging/deltaspike/trunk/content/



svn commit: r1014190 - /websites/production/deltaspike/content/

2017-06-18 Thread johndament
Author: johndament
Date: Sun Jun 18 11:47:38 2017
New Revision: 1014190

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r1014189, websites/staging/deltaspike/trunk/content/



svn commit: r1797503 - /deltaspike/site/trunk/content/documentation/data.html

2017-06-03 Thread johndament
Author: johndament
Date: Sat Jun  3 13:58:58 2017
New Revision: 1797503

URL: http://svn.apache.org/viewvc?rev=1797503=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/data.html

Modified: deltaspike/site/trunk/content/documentation/data.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/data.html?rev=1797503=1797502=1797503=diff
==
--- deltaspike/site/trunk/content/documentation/data.html (original)
+++ deltaspike/site/trunk/content/documentation/data.html Sat Jun  3 13:58:58 
2017
@@ -824,7 +824,7 @@ generate the query implementation out of
 
 
 
-The query method must either return an entity or a list of entities.
+The query method must return an entity, an Optional of an 
entity, a list of entities or a stream of entities.
 
 
 It must start with the findBy prefix (or related 
findOptionalBy, findAnyBy, findAll, 
findFirst or findTop).




deltaspike git commit: DELTASPIKE-1252 - Clarifying text for what can be returned.

2017-06-03 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master b1276fcd3 -> fbf62e3bb


DELTASPIKE-1252 - Clarifying text for what can be returned.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/fbf62e3b
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/fbf62e3b
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/fbf62e3b

Branch: refs/heads/master
Commit: fbf62e3bbc17310ff2c8eccd096f19764e02d4c1
Parents: b1276fc
Author: John D. Ament 
Authored: Sat Jun 3 09:58:18 2017 -0400
Committer: John D. Ament 
Committed: Sat Jun 3 09:58:18 2017 -0400

--
 documentation/src/main/asciidoc/data.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/fbf62e3b/documentation/src/main/asciidoc/data.adoc
--
diff --git a/documentation/src/main/asciidoc/data.adoc 
b/documentation/src/main/asciidoc/data.adoc
index e38a3ed..efe7b98 100644
--- a/documentation/src/main/asciidoc/data.adoc
+++ b/documentation/src/main/asciidoc/data.adoc
@@ -470,7 +470,7 @@ generate the query implementation out of it (in EBNF-like 
form):
 
 Or in more concrete words:
 
-* The query method must either return an entity or a list of entities.
+* The query method must return an entity, an `Optional` of an entity, a list 
of entities or a stream of entities.
 * It must start with the `findBy` prefix (or related `findOptionalBy`, 
`findAnyBy`, `findAll`, `findFirst` or `findTop`).
 * Followed by a property of the Repository entity and an optional comparator 
(we'll define this later). The property will be used in the query together with 
the comparator. Note that the number of arguments passed to the method depend 
on the comparator.
 * You can add more blocks of property-comparator which have to be concatenated 
by a boolean operator. This is either an `And` or `Or`.



svn commit: r1797502 - in /deltaspike/site/trunk/content/javadoc/1.8.0: ./ org/ org/apache/ org/apache/deltaspike/ org/apache/deltaspike/cdise/ org/apache/deltaspike/cdise/api/ org/apache/deltaspike/c

2017-06-03 Thread johndament
Author: johndament
Date: Sat Jun  3 13:12:46 2017
New Revision: 1797502

URL: http://svn.apache.org/viewvc?rev=1797502=rev
Log:
Site checkin for project Apache DeltaSpike Sources


[This commit notification would consist of 137 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1797501 - /deltaspike/site/trunk/content/javadoc/1.8.0/

2017-06-03 Thread johndament
Author: johndament
Date: Sat Jun  3 13:09:46 2017
New Revision: 1797501

URL: http://svn.apache.org/viewvc?rev=1797501=rev
Log:
Automatic svn path creation: 
https://svn.apache.org/repos/asf/deltaspike/site/trunk/content/javadoc/1.8.0

Added:
deltaspike/site/trunk/content/javadoc/1.8.0/



svn commit: r1797500 - in /deltaspike/site/trunk/content: download.html examples.html javadoc.html

2017-06-03 Thread johndament
Author: johndament
Date: Sat Jun  3 13:07:34 2017
New Revision: 1797500

URL: http://svn.apache.org/viewvc?rev=1797500=rev
Log:
Site checkin for project Apache DeltaSpike Site

Modified:
deltaspike/site/trunk/content/download.html
deltaspike/site/trunk/content/examples.html
deltaspike/site/trunk/content/javadoc.html

Modified: deltaspike/site/trunk/content/download.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/download.html?rev=1797500=1797499=1797500=diff
==
--- deltaspike/site/trunk/content/download.html (original)
+++ deltaspike/site/trunk/content/download.html Sat Jun  3 13:07:34 2017
@@ -256,7 +256,7 @@ table.CodeRay td.code>pre{padding:0}
 Latest Release
 
 
-v1.7.2
+v1.8.0
 
 
 
@@ -266,28 +266,28 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.2/distribution-full-1.7.2.zip;>distribution-full-1.7.2.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.8.0/distribution-full-1.8.0.zip;>distribution-full-1.8.0.zip
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.zip.asc;>distribution-full-1.7.2.zip.asc
+http://www.apache.org/dist/deltaspike/1.8.0/distribution-full-1.8.0.zip.asc;>distribution-full-1.8.0.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.zip.md5;>distribution-full-1.7.2.zip.md5
+http://www.apache.org/dist/deltaspike/1.8.0/distribution-full-1.8.0.zip.md5;>distribution-full-1.8.0.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.zip.sha1;>distribution-full-1.7.2.zip.sha1
+http://www.apache.org/dist/deltaspike/1.8.0/distribution-full-1.8.0.zip.sha1;>distribution-full-1.8.0.zip.sha1
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz;>distribution-full-1.7.2.tar.gz
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz;>distribution-full-1.8.0.tar.gz
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.asc;>distribution-full-1.7.2.tar.gz.asc
+http://www.apache.org/dist/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz.asc;>distribution-full-1.8.0.tar.gz.asc
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.md5;>distribution-full-1.7.2.tar.gz.md5
+http://www.apache.org/dist/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz.md5;>distribution-full-1.8.0.tar.gz.md5
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.sha1;>distribution-full-1.7.2.tar.gz.sha1
+http://www.apache.org/dist/deltaspike/1.8.0/distribution-full-1.8.0.tar.gz.sha1;>distribution-full-1.8.0.tar.gz.sha1
 
 
 
@@ -299,16 +299,16 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip;>deltaspike-1.7.2-source-release.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip;>deltaspike-1.8.0-source-release.zip
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.asc;>deltaspike-1.7.2-source-release.zip.asc
+http://www.apache.org/dist/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.asc;>deltaspike-1.8.0-source-release.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.md5;>deltaspike-1.7.2-source-release.zip.md5
+http://www.apache.org/dist/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.md5;>deltaspike-1.8.0-source-release.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.sha1;>deltaspike-1.7.2-source-release.zip.sha1
+http://www.apache.org/dist/deltaspike/1.8.0/deltaspike-1.8.0-source-release.zip.sha1;>deltaspike-1.8.0-source-release.zip.sha1
 
 
 
@@ -351,7 +351,7 @@ the signatures using e.g.:
 
 
 $ pgpk -a KEYS
-$ pgpv deltaspike-project-1.7.2-source-release.zip.asc
+$ pgpv deltaspike-project-1.8.0-source-release.zip.asc
 
 
 
@@ -360,7 +360,7 @@ $ pgpv deltaspike-project-1.7.2-source-r
 
 
 $ pgp -ka KEYS
-$ pgp deltaspike-project-1.7.2-source-release.zip.asc
+$ pgp deltaspike-project-1.8.0-source-release.zip.asc
 
 
 
@@ -369,7 +369,7 @@ $ pgp deltaspike-project-1.7.2-source-re
 
 
 $ gpg --import KEYS
-$ gpg --verify deltaspike-project-1.7.2-source-release.zip.asc
+$ gpg --verify deltaspike-project-1.8.0-source-release.zip.asc
 
 
 

Modified: deltaspike/site/trunk/content/examples.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/examples.html?rev=1797500=1797499=1797500=diff
==
--- deltaspike/site/trunk/content/examples.html (original)
+++ deltaspike/site/trunk/content/examples.html Sat Jun  3 13:07:34 2017
@@ -255,7 +255,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-A collection of ready-to

svn commit: r1797499 - in /deltaspike/site/trunk/content/documentation: build.html configuration.html configure.html core.html encryption.html scheduler.html snapshots.html

2017-06-03 Thread johndament
Author: johndament
Date: Sat Jun  3 13:06:05 2017
New Revision: 1797499

URL: http://svn.apache.org/viewvc?rev=1797499=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Added:
deltaspike/site/trunk/content/documentation/encryption.html
Modified:
deltaspike/site/trunk/content/documentation/build.html
deltaspike/site/trunk/content/documentation/configuration.html
deltaspike/site/trunk/content/documentation/configure.html
deltaspike/site/trunk/content/documentation/core.html
deltaspike/site/trunk/content/documentation/scheduler.html
deltaspike/site/trunk/content/documentation/snapshots.html

Modified: deltaspike/site/trunk/content/documentation/build.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/build.html?rev=1797499=1797498=1797499=diff
==
--- deltaspike/site/trunk/content/documentation/build.html (original)
+++ deltaspike/site/trunk/content/documentation/build.html Sat Jun  3 13:06:05 
2017
@@ -277,7 +277,7 @@ table.CodeRay td.code>pre{padding:0}
 The DeltaSpike source (modules and examples) is provided for inspection, 
contribution and testing purposes. The source must be built with Maven, which 
has been used to automate the compilation, testing and packaging processes. 
Arquillian tests are included with the source and a CDI implementation or 
container can be specified with which to carry out the tests.
 
 
-In all cases, to obtain the DeltaSpike source, https://deltaspike.apache.org/download.html;>download 
deltaspike-project-1.7.2-source-release.zip and extract the 
contents.
+In all cases, to obtain the DeltaSpike source, https://deltaspike.apache.org/download.html;>download 
deltaspike-project-1.8.0-source-release.zip and extract the 
contents.
 
 
 
@@ -301,7 +301,7 @@ You can also obtain the DeltaSpike sourc
 
 
 
-$ cd 
/path/to/deltaspike-project-1.7.2/
+$ cd 
/path/to/deltaspike-project-1.8.0/
 $ mvn clean install
 
 

Modified: deltaspike/site/trunk/content/documentation/configuration.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/configuration.html?rev=1797499=1797498=1797499=diff
==
--- deltaspike/site/trunk/content/documentation/configuration.html (original)
+++ deltaspike/site/trunk/content/documentation/configuration.html Sat Jun  3 
13:06:05 2017
@@ -1071,12 +1071,22 @@ log.
 
 public class DecryptingConfigFilter implements ConfigFilter
 {
+private DefaultCipherService ciperSvc = 
new DefaultCipherService();
+private String masterSalt = someApplicationMasterSalt;
+
 @Override
 public String filterValue(String key, String value)
 {
-if (key.contains(encrypted))
+if (key.contains(password))
 {
-return decrypt(value);
+try
+{
+return cipherSvc.decrypt(value, 
masterSalt);
+}
+catch (Exception e)
+{
+return value;
+}
 }
 return value;
 }
@@ -1084,15 +1094,23 @@ log.
 @Override
 public String filterValueForLog(String key, String value)
 {
-return value 
encrypted;
+if (key.contains(password))
+{
+return ***;
+}
+
+return value;
 }
 }
 
 
 
+For more information about the CipherService please see the Encryption section.
+
+
 Since 1.8.0 you can also decorate a CDI ConfigFilter with 
@Filter and it will
-be added to DeltaSpike configuration once the CDI container is 
started (it means
-you cant use this source in an Extension).
+be added to DeltaSpike configuration once the CDI container is 
started (Note that this means
+you cant use this ConfigFilter in a CDI Extension).
 
 
 

Modified: deltaspike/site/trunk/content/documentation/configure.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/configure.html?rev=1797499=1797498=1797499=diff
==
--- deltaspike/site/trunk/content/documentation/configure.html (original)
+++ deltaspike/site/trunk/content/documentation/configure.html Sat Jun  3 
13:06:05 2017
@@ -309,7 +309,7 @@ You can also opt to use the lastest Delt
 
 
 properties
-deltaspike.version1.7.2/deltaspike.version
+deltaspike.version1.8.0/deltaspike.version
 /properties
 
 
@@ -418,7 +418,7 @@ repositories {
 }
 dependencyManagement {
 imports {
-mavenBom 'org.apache.deltaspike.distribution:distributions-bom:1.7.2'
+mavenBom 'org.apache.deltaspike.distribution:distributions-bom:1.8.0'
 }
 }
 dependencies {

Modified: deltaspike/site/trunk/content/documentation/core.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/core.html?rev=1797499=1797498=179

svn commit: r1011919 - /websites/production/deltaspike/content/

2017-05-09 Thread johndament
Author: johndament
Date: Tue May  9 11:42:29 2017
New Revision: 1011919

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r1011918, websites/staging/deltaspike/trunk/content/



svn commit: r1794542 - in /deltaspike/site/trunk/content/documentation: configuration.html data.html

2017-05-09 Thread johndament
Author: johndament
Date: Tue May  9 11:36:19 2017
New Revision: 1794542

URL: http://svn.apache.org/viewvc?rev=1794542=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/configuration.html
deltaspike/site/trunk/content/documentation/data.html

Modified: deltaspike/site/trunk/content/documentation/configuration.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/configuration.html?rev=1794542=1794541=1794542=diff
==
--- deltaspike/site/trunk/content/documentation/configuration.html (original)
+++ deltaspike/site/trunk/content/documentation/configuration.html Tue May  9 
11:36:19 2017
@@ -635,6 +635,27 @@ If you use different TypedResolver
 
 
 
+
+List Values handling
+
+As of DeltaSpike-1.8.0, the Typed Resolver is also able to 
handle list values.
+Resolve a list of e.g. retry interval values via:
+
+
+
+ListInteger retryIntervals
+= ConfigResolver.resolve(myapp.retry.intervalls)
+.as(Integer.class)
+.asList()
+.getValue();
+
+
+
+The values get configured as comma (',') separated value 
String.
+A Comma inside a value can be escaped with a backslash (\,), 
backslashes should be escaped with double-backslash (\\).
+Trailing and leading whitespaces get trimmed for each value.
+
+
 
 
 Injection 
of configured values into beans using @ConfigProperty
@@ -981,6 +1002,10 @@ classpath to get picked up as ConfigSour
 class which implements the PropertyFileConfig interface.
 
 
+If getPropertyFileName() returns an URL, e.g. file:///var/opt/myapp/my.properties" then this will be 
used to pick up the configured values.
+In other words: with using file:// you can specify a file on the 
file system.
+
+
 The method isOptional indicates whether your custom property 
file is mandatory.
 If a mandatory property file is not found during deployment, DeltaSpike throws
 an IllegalStateException and stops the deployment.
@@ -1114,6 +1139,7 @@ you cant use this source in an 
 Supported types
 Dynamic Reloading
+List Values handling
 
 
 Injection
 of configured values into beans using @ConfigProperty

Modified: deltaspike/site/trunk/content/documentation/data.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/data.html?rev=1794542=1794541=1794542=diff
==
--- deltaspike/site/trunk/content/documentation/data.html (original)
+++ deltaspike/site/trunk/content/documentation/data.html Tue May  9 11:36:19 
2017
@@ -815,7 +815,7 @@ generate the query implementation out of
 
 
 
-(Entity|ListEntity) (prefix)(Property[Comparator]){Operator 
Property [Comparator]}
+(Entity|OptionalEntity|ListEntity|StreamEntity) 
(prefix)(Property[Comparator]){Operator Property [Comparator]}
 
 
 




deltaspike git commit: DELTASPIKE-1252 - Adding Java 8 semantics to EBNF-like form.

2017-05-09 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 2aff96921 -> d1e4739e3


DELTASPIKE-1252 - Adding Java 8 semantics to EBNF-like form.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/d1e4739e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/d1e4739e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/d1e4739e

Branch: refs/heads/master
Commit: d1e4739e3b25fc93e4206344d61ddb24dc1a1391
Parents: 2aff969
Author: John D. Ament 
Authored: Tue May 9 07:35:25 2017 -0400
Committer: John D. Ament 
Committed: Tue May 9 07:35:25 2017 -0400

--
 documentation/src/main/asciidoc/data.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/d1e4739e/documentation/src/main/asciidoc/data.adoc
--
diff --git a/documentation/src/main/asciidoc/data.adoc 
b/documentation/src/main/asciidoc/data.adoc
index 076ac4e..e38a3ed 100644
--- a/documentation/src/main/asciidoc/data.adoc
+++ b/documentation/src/main/asciidoc/data.adoc
@@ -465,7 +465,7 @@ module can translate method names following a given format 
and directly
 generate the query implementation out of it (in EBNF-like form):
 
 
--
-(Entity|List) (prefix)(Property[Comparator]){Operator Property 
[Comparator]}
+(Entity|Optional|List|Stream) 
(prefix)(Property[Comparator]){Operator Property [Comparator]}
 
--
 
 Or in more concrete words:



deltaspike git commit: Update Arquillian Weld version.

2017-04-04 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 7ff97717f -> 3dcd84b81


Update Arquillian Weld version.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/3dcd84b8
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/3dcd84b8
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/3dcd84b8

Branch: refs/heads/master
Commit: 3dcd84b817f8cf5256c951cb49d9bb7c82e3c2dc
Parents: 7ff9771
Author: Tomas Remes 
Authored: Tue Apr 4 10:00:50 2017 +0200
Committer: Tomas Remes 
Committed: Tue Apr 4 10:00:50 2017 +0200

--
 deltaspike/parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/3dcd84b8/deltaspike/parent/pom.xml
--
diff --git a/deltaspike/parent/pom.xml b/deltaspike/parent/pom.xml
index 035970f..db671ef 100644
--- a/deltaspike/parent/pom.xml
+++ b/deltaspike/parent/pom.xml
@@ -101,7 +101,7 @@
 
 0.7.4.201502262128
 
-1.0.0.CR9
+1.0.0.Final
 
 
 
version="[$(version;==;${deltaspike.osgi.version.clean}),$(version;=+;${deltaspike.osgi.version.clean}))"



deltaspike git commit: DELTASPIKE-1231 Update build profile for Weld3.

2017-01-20 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 08d5916ed -> 9c811f2e7


DELTASPIKE-1231 Update build profile for Weld3.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/9c811f2e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/9c811f2e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/9c811f2e

Branch: refs/heads/master
Commit: 9c811f2e74c542bdceedec83af089034267705ae
Parents: 08d5916
Author: John D. Ament 
Authored: Fri Jan 20 08:16:12 2017 -0500
Committer: John D. Ament 
Committed: Fri Jan 20 08:16:12 2017 -0500

--
 deltaspike/parent/code/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/9c811f2e/deltaspike/parent/code/pom.xml
--
diff --git a/deltaspike/parent/code/pom.xml b/deltaspike/parent/code/pom.xml
index b82426d..5f0ece4 100644
--- a/deltaspike/parent/code/pom.xml
+++ b/deltaspike/parent/code/pom.xml
@@ -523,8 +523,9 @@
 
 
 
-3.0.0.Alpha16
+3.0.0.Beta1
 
weld-${weld.version}
+1.8
 
 
 



deltaspike git commit: DELTASPIKE-1224: update to latest RAT release

2016-11-25 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master a7e242ce1 -> a94386f01


DELTASPIKE-1224: update to latest RAT release

Update to latest RAT release - 
https://issues.apache.org/jira/browse/DELTASPIKE-1224

Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/a94386f0
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/a94386f0
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/a94386f0

Branch: refs/heads/master
Commit: a94386f019225f42aa051673c99da09ddccb1094
Parents: a7e242c
Author: P. Ottlinger 
Authored: Thu Nov 24 22:48:58 2016 +0100
Committer: GitHub 
Committed: Thu Nov 24 22:48:58 2016 +0100

--
 deltaspike/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/a94386f0/deltaspike/pom.xml
--
diff --git a/deltaspike/pom.xml b/deltaspike/pom.xml
index 1460bb0..dd6835f 100644
--- a/deltaspike/pom.xml
+++ b/deltaspike/pom.xml
@@ -83,7 +83,7 @@
 
 org.apache.rat
 apache-rat-plugin
-0.8
+0.12
 
 
 .idea/**/*



svn commit: r1001122 - /websites/production/deltaspike/content/

2016-11-14 Thread johndament
Author: johndament
Date: Tue Nov 15 01:08:37 2016
New Revision: 1001122

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r1001121, websites/staging/deltaspike/trunk/content/



svn commit: r1769708 - in /deltaspike/site/trunk/content/documentation: configuration.html snapshots.html

2016-11-14 Thread johndament
Author: johndament
Date: Tue Nov 15 01:06:02 2016
New Revision: 1769708

URL: http://svn.apache.org/viewvc?rev=1769708=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/configuration.html
deltaspike/site/trunk/content/documentation/snapshots.html

Modified: deltaspike/site/trunk/content/documentation/configuration.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/configuration.html?rev=1769708=1769707=1769708=diff
==
--- deltaspike/site/trunk/content/documentation/configuration.html (original)
+++ deltaspike/site/trunk/content/documentation/configuration.html Tue Nov 15 
01:06:02 2016
@@ -351,10 +351,13 @@ application.
 
 @ConfigProperty for injection of configured values into 
beans
 
+
+interface based configuration
+
 
 
 
-All three mechanisms are described in the following sections.
+All four mechanisms are described in the following sections.
 
 
 ConfigResolver methods
@@ -747,6 +750,89 @@ obtained in the producer using get
 
 
 
+Interface based configuration
+
+
+The interfaces decorated with @Configuration are converted 
during CDI startup
+to Beans matching the interface type. Concretely this interface:
+
+
+
+@Configuration
+public interface MyConfig {
+}
+
+
+
+Will use accessible using:
+
+
+
+@Inject
+private MyConfig config;
+
+
+
+To define a configuration entry in this mode you define an interface method
+and decorate it with @ConfigProperty exactly as a normal 
injection:
+
+
+
+@Configuration
+public interface MyConfig {
+@ConfigProperty(name = "my.config")
+String url();
+}
+
+
+
+
+
+
+
+
+
+this mode also supports primitives like int, 
boolean,  as returned types.
+
+
+
+
+
+The methods are no parameter and not returning void methods.
+
+
+If all your keys use the same prefix you can configure it on 
@Configuration:
+
+
+
+@Configuration(prefix = "client.")
+public interface MyConfig {
+@ConfigProperty(name = "url")
+String url();
+
+@ConfigProperty(name = "timeout", defaultValue = "3")
+long timeout();
+}
+
+
+
+Finally, you can also access the caching feature of the 
TypedResolver through @Configuration:
+
+
+
+@Configuration(cacheFor = 30, cacheUnit = 
TimeUnit.SECONDS)
+public interface MyConfig {
+@ConfigProperty(name = "url")
+String url();
+
+@ConfigProperty(name = "timeout", defaultValue = "3")
+long timeout();
+}
+
+
+
+
+
 Providing configuration 
using ConfigSources
 
 
@@ -882,6 +968,11 @@ implementations provided by DeltaSpike d
 
 
 
+
+Since 1.8.0 you can also decorate a CDI ConfigSource with 
@Source and it will
+be added to DeltaSpike configuration once the CDI container is 
started (it means
+you cant use this source in an Extension).
+
 
 PropertyFileConfig
 
@@ -973,6 +1064,11 @@ log.
 }
 
 
+
+Since 1.8.0 you can also decorate a CDI ConfigFilter with 
@Filter and it will
+be added to DeltaSpike configuration once the CDI container is 
started (it means
+you cant use this source in an Extension).
+
 
 
 
@@ -1027,6 +1123,7 @@ log.
 
 
 
+Interface based 
configuration
 Providing 
configuration using ConfigSources
 
 ConfigSources Provided by 
Default

Modified: deltaspike/site/trunk/content/documentation/snapshots.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/snapshots.html?rev=1769708=1769707=1769708=diff
==
--- deltaspike/site/trunk/content/documentation/snapshots.html (original)
+++ deltaspike/site/trunk/content/documentation/snapshots.html Tue Nov 15 
01:06:02 2016
@@ -343,7 +343,7 @@ Snapshots provide previews of DeltaSpike
 
 
 properties
-deltaspike.version1.7.3-SNAPSHOT/deltaspike.version
+deltaspike.version1.8.0-SNAPSHOT/deltaspike.version
 /properties
 
 




svn commit: r1769707 - /deltaspike/site/trunk/content/javadoc.html

2016-11-14 Thread johndament
Author: johndament
Date: Tue Nov 15 01:05:41 2016
New Revision: 1769707

URL: http://svn.apache.org/viewvc?rev=1769707=rev
Log:
Site checkin for project Apache DeltaSpike Site

Modified:
deltaspike/site/trunk/content/javadoc.html

Modified: deltaspike/site/trunk/content/javadoc.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/javadoc.html?rev=1769707=1769706=1769707=diff
==
--- deltaspike/site/trunk/content/javadoc.html (original)
+++ deltaspike/site/trunk/content/javadoc.html Tue Nov 15 01:05:41 2016
@@ -258,7 +258,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-1.7.3-SNAPSHOT
+1.8.0-SNAPSHOT
 
 
 




deltaspike git commit: Setting master to 1.8.0-SNAPSHOT

2016-11-14 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 277994f97 -> b51e9ff0d


Setting master to 1.8.0-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/b51e9ff0
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/b51e9ff0
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/b51e9ff0

Branch: refs/heads/master
Commit: b51e9ff0da2d51c1d1c78a9122f961ae87ecd0ca
Parents: 277994f
Author: John D. Ament 
Authored: Mon Nov 14 20:00:54 2016 -0500
Committer: John D. Ament 
Committed: Mon Nov 14 20:03:53 2016 -0500

--
 deltaspike/cdictrl/api/pom.xml   | 2 +-
 deltaspike/cdictrl/impl-openejb/pom.xml  | 2 +-
 deltaspike/cdictrl/impl-owb/pom.xml  | 2 +-
 deltaspike/cdictrl/impl-weld/pom.xml | 2 +-
 deltaspike/cdictrl/pom.xml   | 2 +-
 deltaspike/cdictrl/servlet/pom.xml   | 2 +-
 deltaspike/cdictrl/tck/pom.xml   | 2 +-
 deltaspike/checkstyle-rules/pom.xml  | 2 +-
 deltaspike/core/api/pom.xml  | 2 +-
 deltaspike/core/impl/pom.xml | 2 +-
 deltaspike/core/pom.xml  | 2 +-
 deltaspike/dist/bom/pom.xml  | 2 +-
 deltaspike/dist/full/pom.xml | 2 +-
 deltaspike/dist/pom.xml  | 4 ++--
 deltaspike/examples/data-examples/pom.xml| 2 +-
 deltaspike/examples/jpa-examples/pom.xml | 2 +-
 deltaspike/examples/jse-examples/pom.xml | 2 +-
 deltaspike/examples/jsf-examples/pom.xml | 2 +-
 deltaspike/examples/jsf-playground/pom.xml   | 2 +-
 deltaspike/examples/pom.xml  | 2 +-
 deltaspike/examples/scheduler-playground/pom.xml | 2 +-
 .../examples/security-requested-page-after-login-cdi/pom.xml | 2 +-
 .../security-requested-page-after-login-picketlink/pom.xml   | 2 +-
 deltaspike/modules/bean-validation/api/pom.xml   | 2 +-
 deltaspike/modules/bean-validation/impl/pom.xml  | 2 +-
 deltaspike/modules/bean-validation/pom.xml   | 4 ++--
 deltaspike/modules/data/api/pom.xml  | 2 +-
 deltaspike/modules/data/impl/pom.xml | 2 +-
 deltaspike/modules/data/pom.xml  | 2 +-
 deltaspike/modules/data/test-ee7/pom.xml | 2 +-
 deltaspike/modules/data/test-java8/pom.xml   | 2 +-
 deltaspike/modules/jpa/api/pom.xml   | 2 +-
 deltaspike/modules/jpa/impl/pom.xml  | 2 +-
 deltaspike/modules/jpa/pom.xml   | 4 ++--
 deltaspike/modules/jsf/api/pom.xml   | 2 +-
 deltaspike/modules/jsf/impl-ee6/pom.xml  | 2 +-
 deltaspike/modules/jsf/impl/pom.xml  | 2 +-
 deltaspike/modules/jsf/pom.xml   | 4 ++--
 deltaspike/modules/partial-bean/api/pom.xml  | 2 +-
 deltaspike/modules/partial-bean/impl/pom.xml | 2 +-
 deltaspike/modules/partial-bean/pom.xml  | 4 ++--
 deltaspike/modules/pom.xml   | 4 ++--
 deltaspike/modules/proxy/api/pom.xml | 2 +-
 deltaspike/modules/proxy/impl-asm5/pom.xml   | 2 +-
 deltaspike/modules/proxy/pom.xml | 4 ++--
 deltaspike/modules/scheduler/api/pom.xml | 2 +-
 deltaspike/modules/scheduler/impl/pom.xml| 2 +-
 deltaspike/modules/scheduler/pom.xml | 4 ++--
 deltaspike/modules/security/api/pom.xml  | 2 +-
 deltaspike/modules/security/impl/pom.xml | 2 +-
 deltaspike/modules/security/pom.xml  | 4 ++--
 deltaspike/modules/servlet/api/pom.xml   | 2 +-
 deltaspike/modules/servlet/impl/pom.xml  | 2 +-
 deltaspike/modules/servlet/pom.xml   | 4 ++--
 deltaspike/modules/test-control/api/pom.xml  | 2 +-
 deltaspike/modules/test-control/impl/pom.xml | 2 +-
 deltaspike/modules/test-control/pom.xml  | 4 ++--
 deltaspike/parent/code/pom.xml   | 2 +-
 

deltaspike git commit: DELTASPIKE-1217 Introduce a README to improve project browse-ability in github.

2016-11-06 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 81d3b5d26 -> a60cb32e8


DELTASPIKE-1217 Introduce a README to improve project browse-ability in github.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/a60cb32e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/a60cb32e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/a60cb32e

Branch: refs/heads/master
Commit: a60cb32e8d0d65e91be2bec636a2b324ce965dc6
Parents: 81d3b5d
Author: John D. Ament 
Authored: Sun Nov 6 19:32:07 2016 -0500
Committer: John D. Ament 
Committed: Sun Nov 6 19:41:32 2016 -0500

--
 README.md | 39 +++
 1 file changed, 39 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/a60cb32e/README.md
--
diff --git a/README.md b/README.md
new file mode 100644
index 000..0f2f1fb
--- /dev/null
+++ b/README.md
@@ -0,0 +1,39 @@
+# Apache DeltaSpike
+
+* [Documentation](https://deltaspike.apache.org/documentation/)
+* [Mailing Lists](http://deltaspike.apache.org/community.html#Mailinglists)
+* CDI 1.0 Build Status [![CDI 1.0 Build 
Status](https://builds.apache.org/buildStatus/icon?job=DeltaSpike for CDI 
1.0)](https://builds.apache.org/view/A-D/view/DeltaSpike/job/DeltaSpike%20for%20CDI%201.0/)
+* CDI 1.1/1.2 Build Status [![CDI 1.1/1.2 Build 
Status](https://builds.apache.org/buildStatus/icon?job=DeltaSpike for CDI 1.1 
and 
1.2)](https://builds.apache.org/view/A-D/view/DeltaSpike/job/DeltaSpike%20for%20CDI%201.1%20and%201.2/)
+* [Contribution Guide](http://deltaspike.apache.org/source.html)
+* [JIRA](https://issues.apache.org/jira/browse/DELTASPIKE)
+* [Apache 
2.0](https://git-wip-us.apache.org/repos/asf?p=deltaspike.git;a=blob;f=LICENSE.txt;hb=HEAD)
+
+
+**Apache DeltaSpike** is a suite of portable CDI (Contexts & Dependency
+Injection) extensions intended to make application development easier when
+working with CDI and Java EE.  Some of its key features include:
+
+- A core runtime that supports component configuration, type safe messaging
+and internationalization, and exception handling.
+- A suite of utilities to make programmatic bean lookup easier.
+- A plugin for Java SE to bootstrap both JBoss Weld and Apache OpenWebBeans
+outside of a container.
+- JSF integration, including backporting of JSF 2.2 features for Java EE 6.
+- JPA integration and transaction support.
+- A Data module, to create an easy to use repository pattern on top of JPA.
+- Quartz integration
+
+Testing support is also provided, to allow you to do low level unit testing
+of your CDI enabled projects. 
+
+## Getting Started
+
+The easiest way to get started with DeltaSpike is to use Maven or Gradle as a 
build tool, as described in [configuring in your 
project](http://deltaspike.apache.org/documentation/configure.html)
+
+## Requirements to Build
+
+- Git
+- JDK 6
+- Maven
+
+Just run `mvn clean install` from the top level directory, `deltaspike` to 
build the source code.
\ No newline at end of file



deltaspike git commit: DELTASPIKE-1216 AbstractFullEntityRepository should implement FullEntityRepository

2016-11-06 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 35f44ab6d -> 81d3b5d26


DELTASPIKE-1216 AbstractFullEntityRepository should implement 
FullEntityRepository

This closes #71


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/81d3b5d2
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/81d3b5d2
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/81d3b5d2

Branch: refs/heads/master
Commit: 81d3b5d2680814d2c0b1d8787a93b773558457f6
Parents: 35f44ab
Author: Anthony Vanelverdinghe 
Authored: Thu Nov 3 19:35:44 2016 +0100
Committer: John D. Ament 
Committed: Sun Nov 6 19:17:42 2016 -0500

--
 .../apache/deltaspike/data/api/AbstractFullEntityRepository.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/81d3b5d2/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractFullEntityRepository.java
--
diff --git 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractFullEntityRepository.java
 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractFullEntityRepository.java
index 64b5e5d..0bc750f 100644
--- 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractFullEntityRepository.java
+++ 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractFullEntityRepository.java
@@ -20,8 +20,6 @@ package org.apache.deltaspike.data.api;
 
 import java.io.Serializable;
 
-import org.apache.deltaspike.data.api.criteria.CriteriaSupport;
-
 /**
  * Full repository base class to be extended by concrete implementations. A 
convenience class
  * combining {@code AbstractEntityRepository}, {@code EntityManagerDelegate} 
and
@@ -33,6 +31,6 @@ import 
org.apache.deltaspike.data.api.criteria.CriteriaSupport;
  *Primary key type.
  */
 public abstract class AbstractFullEntityRepository 
extends
-AbstractEntityRepository implements EntityManagerDelegate, 
CriteriaSupport
+AbstractEntityRepository implements FullEntityRepository
 {
 }



svn commit: r1000597 - /websites/production/deltaspike/content/

2016-11-06 Thread johndament
Author: johndament
Date: Mon Nov  7 00:12:10 2016
New Revision: 1000597

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r1000596, websites/staging/deltaspike/trunk/content/



deltaspike git commit: DELTASPIKE-1214 Fixed URL for release notes.

2016-11-06 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 6fbb4bab6 -> 35f44ab6d


DELTASPIKE-1214 Fixed URL for release notes.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/35f44ab6
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/35f44ab6
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/35f44ab6

Branch: refs/heads/master
Commit: 35f44ab6d5d10fa2307cdaffea6b1ffed3576f5e
Parents: 6fbb4ba
Author: John D. Ament 
Authored: Sun Nov 6 19:09:43 2016 -0500
Committer: John D. Ament 
Committed: Sun Nov 6 19:09:43 2016 -0500

--
 site/src/main/asciidoc/news.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/35f44ab6/site/src/main/asciidoc/news.adoc
--
diff --git a/site/src/main/asciidoc/news.adoc b/site/src/main/asciidoc/news.adoc
index 03a8107..a287ac2 100644
--- a/site/src/main/asciidoc/news.adoc
+++ b/site/src/main/asciidoc/news.adoc
@@ -7,7 +7,7 @@
 == 28th Release (1.7.2) (06.11.2016)
 
 The Apache DeltaSpike team is pleased to announce the 28th release
-(v1.7.2).  Release notes can be found 
https://s.apache.org/DeltaSpike-1.7.1[here]
+(v1.7.2).  Release notes can be found 
https://s.apache.org/DeltaSpike-1.7.2[here]
 
 == 27th Release (1.7.1) (20.07.2016)
 



svn commit: r1768415 - /deltaspike/site/trunk/content/news.html

2016-11-06 Thread johndament
Author: johndament
Date: Mon Nov  7 00:09:04 2016
New Revision: 1768415

URL: http://svn.apache.org/viewvc?rev=1768415=rev
Log:
Site checkin for project Apache DeltaSpike Site

Modified:
deltaspike/site/trunk/content/news.html

Modified: deltaspike/site/trunk/content/news.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/news.html?rev=1768415=1768414=1768415=diff
==
--- deltaspike/site/trunk/content/news.html (original)
+++ deltaspike/site/trunk/content/news.html Mon Nov  7 00:09:04 2016
@@ -257,7 +257,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 The Apache DeltaSpike team is pleased to announce the 28th release
-(v1.7.2).  Release notes can be found https://s.apache.org/DeltaSpike-1.7.1;>here
+(v1.7.2).  Release notes can be found https://s.apache.org/DeltaSpike-1.7.2;>here
 
 
 




svn commit: r1000594 - /websites/production/deltaspike/content/

2016-11-06 Thread johndament
Author: johndament
Date: Mon Nov  7 00:03:07 2016
New Revision: 1000594

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r1000593, websites/staging/deltaspike/trunk/content/



svn commit: r1768414 - /deltaspike/site/trunk/content/index.html

2016-11-06 Thread johndament
Author: johndament
Date: Sun Nov  6 23:59:21 2016
New Revision: 1768414

URL: http://svn.apache.org/viewvc?rev=1768414=rev
Log:
Site checkin for project Apache DeltaSpike Site

Modified:
deltaspike/site/trunk/content/index.html

Modified: deltaspike/site/trunk/content/index.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/index.html?rev=1768414=1768413=1768414=diff
==
--- deltaspike/site/trunk/content/index.html (original)
+++ deltaspike/site/trunk/content/index.html Sun Nov  6 23:59:21 2016
@@ -318,7 +318,7 @@ box by the CDI spec (Security, JPA, â€
 
 
 Apache 
DeltaSpike 1.7.2 is now out!
-View details »
+View details »
 See the 
following examples which are part of the project to discover how
 to use DeltaSpike project.
 View details »




deltaspike git commit: DELTASPIKE-1214 Updating contents for release.

2016-11-06 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master b7bd20495 -> 6fbb4bab6


DELTASPIKE-1214 Updating contents for release.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/6fbb4bab
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/6fbb4bab
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/6fbb4bab

Branch: refs/heads/master
Commit: 6fbb4bab65de1d3dc797758049ef750e5cc4411e
Parents: b7bd204
Author: John D. Ament 
Authored: Sun Nov 6 18:56:54 2016 -0500
Committer: John D. Ament 
Committed: Sun Nov 6 18:56:54 2016 -0500

--
 site/src/main/asciidoc/index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/6fbb4bab/site/src/main/asciidoc/index.adoc
--
diff --git a/site/src/main/asciidoc/index.adoc 
b/site/src/main/asciidoc/index.adoc
index b024a03..6e82dfc 100644
--- a/site/src/main/asciidoc/index.adoc
+++ b/site/src/main/asciidoc/index.adoc
@@ -38,7 +38,7 @@ link:/documentation/modules.html[View details »]
 |*News* | *Examples*
 | Apache DeltaSpike 1.7.2 is now out!
 
-link:/news.html#_28th_release_1_7_2_06-11_2016[View details »]
+link:/news.html#_28th_release_1_7_2_06_11_2016[View details »]
 
 | See the following examples which are part of the project to discover how
 to use DeltaSpike project.



svn commit: r1768413 - in /deltaspike/site/trunk/content/javadoc/1.7.2: ./ org/ org/apache/ org/apache/deltaspike/ org/apache/deltaspike/cdise/ org/apache/deltaspike/cdise/api/ org/apache/deltaspike/c

2016-11-06 Thread johndament
Author: johndament
Date: Sun Nov  6 23:54:54 2016
New Revision: 1768413

URL: http://svn.apache.org/viewvc?rev=1768413=rev
Log:
Site checkin for project Apache DeltaSpike Sources


[This commit notification would consist of 136 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1768412 - /deltaspike/site/trunk/content/javadoc/1.7.2/

2016-11-06 Thread johndament
Author: johndament
Date: Sun Nov  6 23:51:54 2016
New Revision: 1768412

URL: http://svn.apache.org/viewvc?rev=1768412=rev
Log:
Automatic svn path creation: 
https://svn.apache.org/repos/asf/deltaspike/site/trunk/content/javadoc/1.7.2

Added:
deltaspike/site/trunk/content/javadoc/1.7.2/



deltaspike git commit: DELTASPIKE-1214 Updating contents for release.

2016-11-06 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master dc5d085ac -> b7bd20495


DELTASPIKE-1214 Updating contents for release.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/b7bd2049
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/b7bd2049
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/b7bd2049

Branch: refs/heads/master
Commit: b7bd20495085a71ff5139058e1b6663695a8910a
Parents: dc5d085
Author: John D. Ament 
Authored: Sun Nov 6 18:50:28 2016 -0500
Committer: John D. Ament 
Committed: Sun Nov 6 18:50:28 2016 -0500

--
 documentation/pom.xml   | 18 --
 pom.xml |  4 ++--
 site/pom.xml| 18 --
 site/src/main/asciidoc/index.adoc   |  4 ++--
 site/src/main/asciidoc/news.adoc|  5 +
 site/src/main/asciidoc/steps_for_a_release.adoc |  1 +
 6 files changed, 10 insertions(+), 40 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b7bd2049/documentation/pom.xml
--
diff --git a/documentation/pom.xml b/documentation/pom.xml
index 77fea1c..c227657 100644
--- a/documentation/pom.xml
+++ b/documentation/pom.xml
@@ -19,24 +19,6 @@
   -->
 
 http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
-
 4.0.0
 
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b7bd2049/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 5655400..52019f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -48,8 +48,8 @@
 
 
 1.5.2
-
1.7.1
-
1.7.2-SNAPSHOT
+
1.7.2
+
1.7.3-SNAPSHOT
 
${project.build.directory}/co-site
 
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b7bd2049/site/pom.xml
--
diff --git a/site/pom.xml b/site/pom.xml
index 81f2ac7..9d061c0 100644
--- a/site/pom.xml
+++ b/site/pom.xml
@@ -19,24 +19,6 @@
   -->
 
 http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
-
 4.0.0
 
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b7bd2049/site/src/main/asciidoc/index.adoc
--
diff --git a/site/src/main/asciidoc/index.adoc 
b/site/src/main/asciidoc/index.adoc
index ca645ed..b024a03 100644
--- a/site/src/main/asciidoc/index.adoc
+++ b/site/src/main/asciidoc/index.adoc
@@ -36,9 +36,9 @@ link:/documentation/modules.html[View details »]
 [options="header,footer"]
 |===
 |*News* | *Examples*
-| Apache DeltaSpike 1.7.1 is now out!
+| Apache DeltaSpike 1.7.2 is now out!
 
-link:/news.html#_27th_release_1_7_1_20_07_2016[View details »]
+link:/news.html#_28th_release_1_7_2_06-11_2016[View details »]
 
 | See the following examples which are part of the project to discover how
 to use DeltaSpike project.

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b7bd2049/site/src/main/asciidoc/news.adoc
--
diff --git a/site/src/main/asciidoc/news.adoc b/site/src/main/asciidoc/news.adoc
index 6164af0..03a8107 100644
--- a/site/src/main/asciidoc/news.adoc
+++ b/site/src/main/asciidoc/news.adoc
@@ -4,6 +4,11 @@
 
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more 
contributor license agreements. See the NOTICE file distributed with this work 
for additional information regarding copyright ownership. The ASF licenses this 
file to you under the Apache License, Version 2.0 (the "License"); you may not 
use this file except in compliance with the License. You may obtain a copy of 
the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by 
applicable law or agreed to in writing, software distributed under the License 
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY 
KIND, either express or implied. See the License for the specific language 
governing permissions and limitations under the License.
 
+== 28th Release (1.7.2) (06.11.2016)
+
+The Apache DeltaSpike team is pleased to announce the 28th release
+(v1.7.2).  Release notes can be found 
https://s.apache.org/DeltaSpike-1.7.1[here]
+
 == 27th Release (1.7.1) (20.07.2016)
 
 The Apache DeltaSpike team is pleased to announce the 27th release


svn commit: r1768411 - in /deltaspike/site/trunk/content: download.html examples.html index.html javadoc.html news.html steps_for_a_release.html

2016-11-06 Thread johndament
Author: johndament
Date: Sun Nov  6 23:44:53 2016
New Revision: 1768411

URL: http://svn.apache.org/viewvc?rev=1768411=rev
Log:
Site checkin for project Apache DeltaSpike Site

Modified:
deltaspike/site/trunk/content/download.html
deltaspike/site/trunk/content/examples.html
deltaspike/site/trunk/content/index.html
deltaspike/site/trunk/content/javadoc.html
deltaspike/site/trunk/content/news.html
deltaspike/site/trunk/content/steps_for_a_release.html

Modified: deltaspike/site/trunk/content/download.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/download.html?rev=1768411=1768410=1768411=diff
==
--- deltaspike/site/trunk/content/download.html (original)
+++ deltaspike/site/trunk/content/download.html Sun Nov  6 23:44:53 2016
@@ -256,7 +256,7 @@ table.CodeRay td.code>pre{padding:0}
 Latest Release
 
 
-v1.7.1
+v1.7.2
 
 
 
@@ -266,28 +266,28 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.1/distribution-full-1.7.1.zip;>distribution-full-1.7.1.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.2/distribution-full-1.7.2.zip;>distribution-full-1.7.2.zip
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/distribution-full-1.7.1.zip.asc;>distribution-full-1.7.1.zip.asc
+http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.zip.asc;>distribution-full-1.7.2.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/distribution-full-1.7.1.zip.md5;>distribution-full-1.7.1.zip.md5
+http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.zip.md5;>distribution-full-1.7.2.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/distribution-full-1.7.1.zip.sha1;>distribution-full-1.7.1.zip.sha1
+http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.zip.sha1;>distribution-full-1.7.2.zip.sha1
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.1/distribution-full-1.7.1.tar.gz;>distribution-full-1.7.1.tar.gz
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz;>distribution-full-1.7.2.tar.gz
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/distribution-full-1.7.1.tar.gz.asc;>distribution-full-1.7.1.tar.gz.asc
+http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.asc;>distribution-full-1.7.2.tar.gz.asc
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/distribution-full-1.7.1.tar.gz.md5;>distribution-full-1.7.1.tar.gz.md5
+http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.md5;>distribution-full-1.7.2.tar.gz.md5
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/distribution-full-1.7.1.tar.gz.sha1;>distribution-full-1.7.1.tar.gz.sha1
+http://www.apache.org/dist/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.sha1;>distribution-full-1.7.2.tar.gz.sha1
 
 
 
@@ -299,16 +299,16 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.1/deltaspike-1.7.1-source-release.zip;>deltaspike-1.7.1-source-release.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip;>deltaspike-1.7.2-source-release.zip
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/deltaspike-1.7.1-source-release.zip.asc;>deltaspike-1.7.1-source-release.zip.asc
+http://www.apache.org/dist/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.asc;>deltaspike-1.7.2-source-release.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/deltaspike-1.7.1-source-release.zip.md5;>deltaspike-1.7.1-source-release.zip.md5
+http://www.apache.org/dist/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.md5;>deltaspike-1.7.2-source-release.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.7.1/deltaspike-1.7.1-source-release.zip.sha1;>deltaspike-1.7.1-source-release.zip.sha1
+http://www.apache.org/dist/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.sha1;>deltaspike-1.7.2-source-release.zip.sha1
 
 
 
@@ -351,7 +351,7 @@ the signatures using e.g.:
 
 
 $ pgpk -a KEYS
-$ pgpv deltaspike-project-1.7.1-source-release.zip.asc
+$ pgpv deltaspike-project-1.7.2-source-release.zip.asc
 
 
 
@@ -360,7 +360,7 @@ $ pgpv deltaspike-project-1.7.1-source-r
 
 
 $ pgp -ka KEYS
-$ pgp deltaspike-project-1.7.1-source-release.zip.asc
+$ pgp deltaspike-project-1.7.2-source-release.zip.asc
 
 
 
@@ -369,7 +369,7 @@ $ pgp deltaspike-project-1.7.1-source-re
 
 
 $ gpg --import KEYS
-$ gpg --verify deltaspike-project-1.7.1-source-release.zip.asc
+$ gpg --verify deltaspike-project-1.7.2-source-release.zip.asc
 
 
 

Modified: deltaspike/site/trunk/content/examples.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/examples.html?rev=1768411=1768410=1768411=diff
==
--- deltaspike/site/trunk/content/examples.html (original)
+++ deltaspike/site/trunk/content

svn commit: r1768406 - in /deltaspike/site/trunk/content/documentation: build.html configure.html scheduler.html snapshots.html

2016-11-06 Thread johndament
Author: johndament
Date: Sun Nov  6 23:40:17 2016
New Revision: 1768406

URL: http://svn.apache.org/viewvc?rev=1768406=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/build.html
deltaspike/site/trunk/content/documentation/configure.html
deltaspike/site/trunk/content/documentation/scheduler.html
deltaspike/site/trunk/content/documentation/snapshots.html

Modified: deltaspike/site/trunk/content/documentation/build.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/build.html?rev=1768406=1768405=1768406=diff
==
--- deltaspike/site/trunk/content/documentation/build.html (original)
+++ deltaspike/site/trunk/content/documentation/build.html Sun Nov  6 23:40:17 
2016
@@ -277,7 +277,7 @@ table.CodeRay td.code>pre{padding:0}
 The DeltaSpike source (modules and examples) is provided for inspection, 
contribution and testing purposes. The source must be built with Maven, which 
has been used to automate the compilation, testing and packaging processes. 
Arquillian tests are included with the source and a CDI implementation or 
container can be specified with which to carry out the tests.
 
 
-In all cases, to obtain the DeltaSpike source, https://deltaspike.apache.org/download.html;>download 
deltaspike-project-1.7.1-source-release.zip and extract the 
contents.
+In all cases, to obtain the DeltaSpike source, https://deltaspike.apache.org/download.html;>download 
deltaspike-project-1.7.2-source-release.zip and extract the 
contents.
 
 
 
@@ -301,7 +301,7 @@ You can also obtain the DeltaSpike sourc
 
 
 
-$ cd 
/path/to/deltaspike-project-1.7.1/
+$ cd 
/path/to/deltaspike-project-1.7.2/
 $ mvn clean install
 
 

Modified: deltaspike/site/trunk/content/documentation/configure.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/configure.html?rev=1768406=1768405=1768406=diff
==
--- deltaspike/site/trunk/content/documentation/configure.html (original)
+++ deltaspike/site/trunk/content/documentation/configure.html Sun Nov  6 
23:40:17 2016
@@ -309,7 +309,7 @@ You can also opt to use the lastest Delt
 
 
 properties
-deltaspike.version1.7.1/deltaspike.version
+deltaspike.version1.7.2/deltaspike.version
 /properties
 
 
@@ -418,7 +418,7 @@ repositories {
 }
 dependencyManagement {
 imports {
-mavenBom 'org.apache.deltaspike.distribution:distributions-bom:1.7.1'
+mavenBom 'org.apache.deltaspike.distribution:distributions-bom:1.7.2'
 }
 }
 dependencies {

Modified: deltaspike/site/trunk/content/documentation/scheduler.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/scheduler.html?rev=1768406=1768405=1768406=diff
==
--- deltaspike/site/trunk/content/documentation/scheduler.html (original)
+++ deltaspike/site/trunk/content/documentation/scheduler.html Sun Nov  6 
23:40:17 2016
@@ -609,7 +609,7 @@ Such an adapter just needs to implement
 
 
 It is possible to replace the default integration with Quartz. Any 
scheduler that supports cron-expressions for job-classes can be used.
-For more information, see https://deltaspike.apache.org/javadoc/1.7.1/org/apache/deltaspike/scheduler/spi/Scheduler.html;>Scheduler
 javadoc.
+For more information, see https://deltaspike.apache.org/javadoc/1.7.2/org/apache/deltaspike/scheduler/spi/Scheduler.html;>Scheduler
 javadoc.
 
 
 

Modified: deltaspike/site/trunk/content/documentation/snapshots.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/snapshots.html?rev=1768406=1768405=1768406=diff
==
--- deltaspike/site/trunk/content/documentation/snapshots.html (original)
+++ deltaspike/site/trunk/content/documentation/snapshots.html Sun Nov  6 
23:40:17 2016
@@ -343,7 +343,7 @@ Snapshots provide previews of DeltaSpike
 
 
 properties
-deltaspike.version1.7.2-SNAPSHOT/deltaspike.version
+deltaspike.version1.7.3-SNAPSHOT/deltaspike.version
 /properties
 
 




svn commit: r16862 - in /release/deltaspike: 1.7.1/ 1.7.2/

2016-11-06 Thread johndament
Author: johndament
Date: Sun Nov  6 23:37:35 2016
New Revision: 16862

Log:
adding 1.7.2 release, dropping 1.7.1

Added:
release/deltaspike/1.7.2/
release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip   (with props)
release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.asc
release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.md5
release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.sha1
release/deltaspike/1.7.2/deltaspike-1.7.2.pom
release/deltaspike/1.7.2/deltaspike-1.7.2.pom.asc
release/deltaspike/1.7.2/deltaspike-1.7.2.pom.md5
release/deltaspike/1.7.2/deltaspike-1.7.2.pom.sha1
release/deltaspike/1.7.2/distribution-full-1.7.2-tests.jar   (with props)
release/deltaspike/1.7.2/distribution-full-1.7.2-tests.jar.asc
release/deltaspike/1.7.2/distribution-full-1.7.2-tests.jar.md5
release/deltaspike/1.7.2/distribution-full-1.7.2-tests.jar.sha1
release/deltaspike/1.7.2/distribution-full-1.7.2.pom
release/deltaspike/1.7.2/distribution-full-1.7.2.pom.asc
release/deltaspike/1.7.2/distribution-full-1.7.2.pom.md5
release/deltaspike/1.7.2/distribution-full-1.7.2.pom.sha1
release/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz   (with props)
release/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.asc
release/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.md5
release/deltaspike/1.7.2/distribution-full-1.7.2.tar.gz.sha1
release/deltaspike/1.7.2/distribution-full-1.7.2.zip   (with props)
release/deltaspike/1.7.2/distribution-full-1.7.2.zip.asc
release/deltaspike/1.7.2/distribution-full-1.7.2.zip.md5
release/deltaspike/1.7.2/distribution-full-1.7.2.zip.sha1
Removed:
release/deltaspike/1.7.1/

Added: release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip
==
Binary file - no diff available.

Propchange: release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip
--
svn:mime-type = application/octet-stream

Added: release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.asc
==
--- release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.asc (added)
+++ release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.asc Sun Nov  6 
23:37:35 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJYGS/wAAoJEPZdiOApWysvTnoP/A7Cq5epj9ScfJRAD1i3YjMI
+8kXnwTOxurd5JWPBkO9eIhyfx47snNp0Ryw1BccKzuujwGFE3rcMUdtpn/HEjOBt
+lw8eM/7lhAionwU0FTtZV98WnJGF/DNFB516YztZgoCcDsiuGBY/fC6cGJT9HEmB
+eMjaEIe+1HOlmXN1FjiuXIZCMHgrN6WPThUelmScbAckmT7T/nLu0yS2VtStmD1O
+YxUnjgQyLcQZqz/yiCsyJzsyt3295Cz1gddXBhlv6BBeF99piAIt+yA7xvfavsYy
+JJNuiHuq3h/0VVop9hZzVPOEHVmWgn4TnUkGpQLJWHFMTazr2uijUgsNvrUftxxO
+iA7/5440ZgjlEooQfXRdNIPSYP81wDFLBYs78JceC+jWcuM6Lo+NU1io1AldZ8BQ
+fDkqPtGYxeyQ42WmShTaWuu6HTCyiNcXZyn2UBjF01W5axs0HYHY3wI2ynz4yJqf
+2sXcOAnoAjGFpF+gEsD8wgewte3BsYvz97ME5Ls5/mtO/B/vXjEXil0L3LFx2Ivm
+eXOs4D3o/X++f2EyjQt01CoZEGu0reNxcn9eY3lIpVnBuQJwc9j70gGiPWWFuxpF
+cDd/K1UGC0tEs5deMFcs7ASruMG6wOAgXvsMEruoW3q9QZAY11TDw88MWX+WTs99
+KiZYtB2Ktk3mcd/bJtwE
+=+njb
+-END PGP SIGNATURE-

Added: release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.md5
==
--- release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.md5 (added)
+++ release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.md5 Sun Nov  6 
23:37:35 2016
@@ -0,0 +1 @@
+da68150651bdc81e32aaf3433f63feab
\ No newline at end of file

Added: release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.sha1
==
--- release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.sha1 (added)
+++ release/deltaspike/1.7.2/deltaspike-1.7.2-source-release.zip.sha1 Sun Nov  
6 23:37:35 2016
@@ -0,0 +1 @@
+85b32938d672e5ff0971f4e510d86b5d0a13c94f
\ No newline at end of file

Added: release/deltaspike/1.7.2/deltaspike-1.7.2.pom
==
--- release/deltaspike/1.7.2/deltaspike-1.7.2.pom (added)
+++ release/deltaspike/1.7.2/deltaspike-1.7.2.pom Sun Nov  6 23:37:35 2016
@@ -0,0 +1,163 @@
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+4.0.0
+
+
+org.apache
+apache
+18
+
+
+
+org.apache.deltaspike
+deltaspike
+1.7.2
+pom
+
+Apache DeltaSpike
+
+Apache DeltaSpike CDI Extensions.
+
+http://deltaspike.apache.org
+
+
+1.5.2
+
1.7.1
+
1.7.2-SNAPSHOT
+
${project.build.direc

[2/3] deltaspike git commit: [maven-release-plugin] prepare for next development iteration

2016-11-05 Thread johndament
[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/4d5cec6e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/4d5cec6e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/4d5cec6e

Branch: refs/heads/master
Commit: 4d5cec6ea52b0963528093b5e51522ec48d58cdb
Parents: f4039e1
Author: John D. Ament 
Authored: Tue Nov 1 20:13:39 2016 -0400
Committer: John D. Ament 
Committed: Tue Nov 1 20:13:39 2016 -0400

--
 deltaspike/cdictrl/api/pom.xml | 2 +-
 deltaspike/cdictrl/impl-openejb/pom.xml| 2 +-
 deltaspike/cdictrl/impl-owb/pom.xml| 2 +-
 deltaspike/cdictrl/impl-weld/pom.xml   | 2 +-
 deltaspike/cdictrl/pom.xml | 2 +-
 deltaspike/cdictrl/servlet/pom.xml | 2 +-
 deltaspike/cdictrl/tck/pom.xml | 2 +-
 deltaspike/checkstyle-rules/pom.xml| 2 +-
 deltaspike/core/api/pom.xml| 2 +-
 deltaspike/core/impl/pom.xml   | 2 +-
 deltaspike/core/pom.xml| 2 +-
 deltaspike/dist/bom/pom.xml| 6 +-
 deltaspike/dist/full/pom.xml   | 2 +-
 deltaspike/dist/pom.xml| 4 ++--
 deltaspike/examples/data-examples/pom.xml  | 2 +-
 deltaspike/examples/jpa-examples/pom.xml   | 2 +-
 deltaspike/examples/jse-examples/pom.xml   | 2 +-
 deltaspike/examples/jsf-examples/pom.xml   | 2 +-
 deltaspike/examples/jsf-playground/pom.xml | 2 +-
 deltaspike/examples/pom.xml| 2 +-
 deltaspike/examples/scheduler-playground/pom.xml   | 2 +-
 .../examples/security-requested-page-after-login-cdi/pom.xml   | 2 +-
 .../security-requested-page-after-login-picketlink/pom.xml | 2 +-
 deltaspike/modules/bean-validation/api/pom.xml | 2 +-
 deltaspike/modules/bean-validation/impl/pom.xml| 2 +-
 deltaspike/modules/bean-validation/pom.xml | 4 ++--
 deltaspike/modules/data/api/pom.xml| 2 +-
 deltaspike/modules/data/impl/pom.xml   | 2 +-
 deltaspike/modules/data/pom.xml| 2 +-
 deltaspike/modules/data/test-java8/pom.xml | 2 +-
 deltaspike/modules/jpa/api/pom.xml | 2 +-
 deltaspike/modules/jpa/impl/pom.xml| 2 +-
 deltaspike/modules/jpa/pom.xml | 4 ++--
 deltaspike/modules/jsf/api/pom.xml | 2 +-
 deltaspike/modules/jsf/impl-ee6/pom.xml| 2 +-
 deltaspike/modules/jsf/impl/pom.xml| 2 +-
 deltaspike/modules/jsf/pom.xml | 4 ++--
 deltaspike/modules/partial-bean/api/pom.xml| 2 +-
 deltaspike/modules/partial-bean/impl/pom.xml   | 2 +-
 deltaspike/modules/partial-bean/pom.xml| 4 ++--
 deltaspike/modules/pom.xml | 4 ++--
 deltaspike/modules/proxy/api/pom.xml   | 2 +-
 deltaspike/modules/proxy/impl-asm5/pom.xml | 2 +-
 deltaspike/modules/proxy/pom.xml   | 4 ++--
 deltaspike/modules/scheduler/api/pom.xml   | 2 +-
 deltaspike/modules/scheduler/impl/pom.xml  | 2 +-
 deltaspike/modules/scheduler/pom.xml   | 4 ++--
 deltaspike/modules/security/api/pom.xml| 2 +-
 deltaspike/modules/security/impl/pom.xml   | 2 +-
 deltaspike/modules/security/pom.xml| 4 ++--
 deltaspike/modules/servlet/api/pom.xml | 2 +-
 deltaspike/modules/servlet/impl/pom.xml| 2 +-
 deltaspike/modules/servlet/pom.xml | 4 ++--
 deltaspike/modules/test-control/api/pom.xml| 2 +-
 deltaspike/modules/test-control/impl/pom.xml   | 2 +-
 deltaspike/modules/test-control/pom.xml| 4 ++--
 deltaspike/parent/code/pom.xml | 2 +-
 deltaspike/parent/pom.xml  | 2 +-
 deltaspike/pom.xml | 4 ++--
 deltaspike/test-utils/pom.xml  | 2 +-
 documentation/pom.xml  

[1/3] deltaspike git commit: [maven-release-plugin] prepare release deltaspike-1.7.2

2016-11-05 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master ce6c9f4ac -> dc5d085ac


[maven-release-plugin] prepare release deltaspike-1.7.2


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/f4039e16
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/f4039e16
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/f4039e16

Branch: refs/heads/master
Commit: f4039e1682c065758486c50a2c683d526095b016
Parents: a3f7995
Author: John D. Ament 
Authored: Tue Nov 1 20:13:28 2016 -0400
Committer: John D. Ament 
Committed: Tue Nov 1 20:13:28 2016 -0400

--
 deltaspike/cdictrl/api/pom.xml | 2 +-
 deltaspike/cdictrl/impl-openejb/pom.xml| 2 +-
 deltaspike/cdictrl/impl-owb/pom.xml| 2 +-
 deltaspike/cdictrl/impl-weld/pom.xml   | 2 +-
 deltaspike/cdictrl/pom.xml | 2 +-
 deltaspike/cdictrl/servlet/pom.xml | 2 +-
 deltaspike/cdictrl/tck/pom.xml | 2 +-
 deltaspike/checkstyle-rules/pom.xml| 2 +-
 deltaspike/core/api/pom.xml| 2 +-
 deltaspike/core/impl/pom.xml   | 2 +-
 deltaspike/core/pom.xml| 2 +-
 deltaspike/dist/bom/pom.xml| 6 +-
 deltaspike/dist/full/pom.xml   | 2 +-
 deltaspike/dist/pom.xml| 4 ++--
 deltaspike/examples/data-examples/pom.xml  | 2 +-
 deltaspike/examples/jpa-examples/pom.xml   | 2 +-
 deltaspike/examples/jse-examples/pom.xml   | 2 +-
 deltaspike/examples/jsf-examples/pom.xml   | 2 +-
 deltaspike/examples/jsf-playground/pom.xml | 2 +-
 deltaspike/examples/pom.xml| 2 +-
 deltaspike/examples/scheduler-playground/pom.xml   | 2 +-
 .../examples/security-requested-page-after-login-cdi/pom.xml   | 2 +-
 .../security-requested-page-after-login-picketlink/pom.xml | 2 +-
 deltaspike/modules/bean-validation/api/pom.xml | 2 +-
 deltaspike/modules/bean-validation/impl/pom.xml| 2 +-
 deltaspike/modules/bean-validation/pom.xml | 4 ++--
 deltaspike/modules/data/api/pom.xml| 2 +-
 deltaspike/modules/data/impl/pom.xml   | 2 +-
 deltaspike/modules/data/pom.xml| 2 +-
 deltaspike/modules/data/test-java8/pom.xml | 2 +-
 deltaspike/modules/jpa/api/pom.xml | 2 +-
 deltaspike/modules/jpa/impl/pom.xml| 2 +-
 deltaspike/modules/jpa/pom.xml | 4 ++--
 deltaspike/modules/jsf/api/pom.xml | 2 +-
 deltaspike/modules/jsf/impl-ee6/pom.xml| 2 +-
 deltaspike/modules/jsf/impl/pom.xml| 2 +-
 deltaspike/modules/jsf/pom.xml | 4 ++--
 deltaspike/modules/partial-bean/api/pom.xml| 2 +-
 deltaspike/modules/partial-bean/impl/pom.xml   | 2 +-
 deltaspike/modules/partial-bean/pom.xml| 4 ++--
 deltaspike/modules/pom.xml | 4 ++--
 deltaspike/modules/proxy/api/pom.xml   | 2 +-
 deltaspike/modules/proxy/impl-asm5/pom.xml | 2 +-
 deltaspike/modules/proxy/pom.xml   | 4 ++--
 deltaspike/modules/scheduler/api/pom.xml   | 2 +-
 deltaspike/modules/scheduler/impl/pom.xml  | 2 +-
 deltaspike/modules/scheduler/pom.xml   | 4 ++--
 deltaspike/modules/security/api/pom.xml| 2 +-
 deltaspike/modules/security/impl/pom.xml   | 2 +-
 deltaspike/modules/security/pom.xml| 4 ++--
 deltaspike/modules/servlet/api/pom.xml | 2 +-
 deltaspike/modules/servlet/impl/pom.xml| 2 +-
 deltaspike/modules/servlet/pom.xml | 4 ++--
 deltaspike/modules/test-control/api/pom.xml| 2 +-
 deltaspike/modules/test-control/impl/pom.xml   | 2 +-
 deltaspike/modules/test-control/pom.xml| 4 ++--
 deltaspike/parent/code/pom.xml | 2 +-
 deltaspike/parent/pom.xml  | 2 +-
 deltaspike/pom.xml | 4 ++--
 

[3/3] deltaspike git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/deltaspike

2016-11-05 Thread johndament
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/deltaspike


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/dc5d085a
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/dc5d085a
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/dc5d085a

Branch: refs/heads/master
Commit: dc5d085ac63f3c5fbf35bb37bb12dd04b49e6080
Parents: 4d5cec6 ce6c9f4
Author: John D. Ament 
Authored: Sat Nov 5 08:10:30 2016 -0400
Committer: John D. Ament 
Committed: Sat Nov 5 08:10:30 2016 -0400

--
 deltaspike/modules/data/test-java8/pom.xml  | 28 
 .../data/test/java8/test/Java8Test.java |  1 +
 2 files changed, 29 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/dc5d085a/deltaspike/modules/data/test-java8/pom.xml
--



[deltaspike] Git Push Summary

2016-11-05 Thread johndament
Repository: deltaspike
Updated Tags:  refs/tags/deltaspike-1.7.2 [created] 65e5dfae6


[2/2] deltaspike git commit: [maven-release-plugin] prepare for next development iteration

2016-11-05 Thread johndament
[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/4d5cec6e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/4d5cec6e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/4d5cec6e

Branch: refs/heads/ds-1.7.2
Commit: 4d5cec6ea52b0963528093b5e51522ec48d58cdb
Parents: f4039e1
Author: John D. Ament 
Authored: Tue Nov 1 20:13:39 2016 -0400
Committer: John D. Ament 
Committed: Tue Nov 1 20:13:39 2016 -0400

--
 deltaspike/cdictrl/api/pom.xml | 2 +-
 deltaspike/cdictrl/impl-openejb/pom.xml| 2 +-
 deltaspike/cdictrl/impl-owb/pom.xml| 2 +-
 deltaspike/cdictrl/impl-weld/pom.xml   | 2 +-
 deltaspike/cdictrl/pom.xml | 2 +-
 deltaspike/cdictrl/servlet/pom.xml | 2 +-
 deltaspike/cdictrl/tck/pom.xml | 2 +-
 deltaspike/checkstyle-rules/pom.xml| 2 +-
 deltaspike/core/api/pom.xml| 2 +-
 deltaspike/core/impl/pom.xml   | 2 +-
 deltaspike/core/pom.xml| 2 +-
 deltaspike/dist/bom/pom.xml| 6 +-
 deltaspike/dist/full/pom.xml   | 2 +-
 deltaspike/dist/pom.xml| 4 ++--
 deltaspike/examples/data-examples/pom.xml  | 2 +-
 deltaspike/examples/jpa-examples/pom.xml   | 2 +-
 deltaspike/examples/jse-examples/pom.xml   | 2 +-
 deltaspike/examples/jsf-examples/pom.xml   | 2 +-
 deltaspike/examples/jsf-playground/pom.xml | 2 +-
 deltaspike/examples/pom.xml| 2 +-
 deltaspike/examples/scheduler-playground/pom.xml   | 2 +-
 .../examples/security-requested-page-after-login-cdi/pom.xml   | 2 +-
 .../security-requested-page-after-login-picketlink/pom.xml | 2 +-
 deltaspike/modules/bean-validation/api/pom.xml | 2 +-
 deltaspike/modules/bean-validation/impl/pom.xml| 2 +-
 deltaspike/modules/bean-validation/pom.xml | 4 ++--
 deltaspike/modules/data/api/pom.xml| 2 +-
 deltaspike/modules/data/impl/pom.xml   | 2 +-
 deltaspike/modules/data/pom.xml| 2 +-
 deltaspike/modules/data/test-java8/pom.xml | 2 +-
 deltaspike/modules/jpa/api/pom.xml | 2 +-
 deltaspike/modules/jpa/impl/pom.xml| 2 +-
 deltaspike/modules/jpa/pom.xml | 4 ++--
 deltaspike/modules/jsf/api/pom.xml | 2 +-
 deltaspike/modules/jsf/impl-ee6/pom.xml| 2 +-
 deltaspike/modules/jsf/impl/pom.xml| 2 +-
 deltaspike/modules/jsf/pom.xml | 4 ++--
 deltaspike/modules/partial-bean/api/pom.xml| 2 +-
 deltaspike/modules/partial-bean/impl/pom.xml   | 2 +-
 deltaspike/modules/partial-bean/pom.xml| 4 ++--
 deltaspike/modules/pom.xml | 4 ++--
 deltaspike/modules/proxy/api/pom.xml   | 2 +-
 deltaspike/modules/proxy/impl-asm5/pom.xml | 2 +-
 deltaspike/modules/proxy/pom.xml   | 4 ++--
 deltaspike/modules/scheduler/api/pom.xml   | 2 +-
 deltaspike/modules/scheduler/impl/pom.xml  | 2 +-
 deltaspike/modules/scheduler/pom.xml   | 4 ++--
 deltaspike/modules/security/api/pom.xml| 2 +-
 deltaspike/modules/security/impl/pom.xml   | 2 +-
 deltaspike/modules/security/pom.xml| 4 ++--
 deltaspike/modules/servlet/api/pom.xml | 2 +-
 deltaspike/modules/servlet/impl/pom.xml| 2 +-
 deltaspike/modules/servlet/pom.xml | 4 ++--
 deltaspike/modules/test-control/api/pom.xml| 2 +-
 deltaspike/modules/test-control/impl/pom.xml   | 2 +-
 deltaspike/modules/test-control/pom.xml| 4 ++--
 deltaspike/parent/code/pom.xml | 2 +-
 deltaspike/parent/pom.xml  | 2 +-
 deltaspike/pom.xml | 4 ++--
 deltaspike/test-utils/pom.xml  | 2 +-
 documentation/pom.xml

deltaspike git commit: DELTASPIKE-1214 Adding release notes for 1.7.2

2016-11-01 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master e26426638 -> a3f7995ed


DELTASPIKE-1214 Adding release notes for 1.7.2


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/a3f7995e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/a3f7995e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/a3f7995e

Branch: refs/heads/master
Commit: a3f7995ed9de889d7fd61ee61cd644f532ca8661
Parents: e264266
Author: John D. Ament 
Authored: Tue Nov 1 19:35:11 2016 -0400
Committer: John D. Ament 
Committed: Tue Nov 1 19:35:11 2016 -0400

--
 deltaspike/readme/ReleaseNotes-1.7.2.txt | 33 +++
 1 file changed, 33 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/a3f7995e/deltaspike/readme/ReleaseNotes-1.7.2.txt
--
diff --git a/deltaspike/readme/ReleaseNotes-1.7.2.txt 
b/deltaspike/readme/ReleaseNotes-1.7.2.txt
new file mode 100644
index 000..9198c22
--- /dev/null
+++ b/deltaspike/readme/ReleaseNotes-1.7.2.txt
@@ -0,0 +1,33 @@
+Release Notes - DeltaSpike - Version 1.7.2
+
+Bug
+[DELTASPIKE-1191] - Update Test-Control gradle docs
+[DELTASPIKE-1194] - Distribution not including binary artifacts
+[DELTASPIKE-1196] - Syntax error in DOAP file
+[DELTASPIKE-1199] - Problems with ContextControl and Weld 
ContainerInitialized, ContainerShutdown event.
+[DELTASPIKE-1204] - Wildfly managed profiles blow up
+[DELTASPIKE-1207] - Incorrect exception handling in 
DynamicMBeanWrapper.invoke()
+[DELTASPIKE-1208] - deltaspike configuration: Variable Replacement in 
Configured Values is NOT fully stage aware
+[DELTASPIKE-1209] - Textual fixes for documentation of Data Module
+[DELTASPIKE-1210] - DelegateQueryHandler has missing Javadoc
+[DELTASPIKE-1211] - SingleResultType.OPTIONAL refers to nonexistent 
constant SINGLE
+[DELTASPIKE-1213] - LockedTest fails on OWB 1.1.x
+
+Improvement
+[DELTASPIKE-1201] - add logout link to security example
+[DELTASPIKE-1203] - create jpa examples
+[DELTASPIKE-1205] - create deltaspike data module examples
+
+New Feature
+[DELTASPIKE-1176] - Support void methods in Futureable
+
+Task
+[DELTASPIKE-1181] - Implement tests for Payara
+[DELTASPIKE-1186] - 1.7.1 Release execution and website clean up
+[DELTASPIKE-1187] - Document entity graph support
+[DELTASPIKE-1188] - Improve contributor guide
+[DELTASPIKE-1189] - Migrate index.html into git
+[DELTASPIKE-1192] - Fix increase in warning messages with DeltaSpike Data 
and Weld
+
+Wish
+[DELTASPIKE-1185] - Allow customization (name, description) of JMX managed 
methods' parameters
\ No newline at end of file



deltaspike git commit: DELTASPIKE-1213 Use the same beans.xml in the JAR and WAR for OWB.

2016-11-01 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master b5fd1a233 -> e26426638


DELTASPIKE-1213 Use the same beans.xml in the JAR and WAR for OWB.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/e2642663
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/e2642663
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/e2642663

Branch: refs/heads/master
Commit: e26426638eeb9b4901f04af1fd1bdf9581d22200
Parents: b5fd1a2
Author: John D. Ament 
Authored: Tue Nov 1 19:17:44 2016 -0400
Committer: John D. Ament 
Committed: Tue Nov 1 19:17:44 2016 -0400

--
 .../java/org/apache/deltaspike/test/core/impl/lock/LockedTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/e2642663/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/lock/LockedTest.java
--
diff --git 
a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/lock/LockedTest.java
 
b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/lock/LockedTest.java
index a869438..4b76520 100644
--- 
a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/lock/LockedTest.java
+++ 
b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/lock/LockedTest.java
@@ -58,7 +58,7 @@ public class LockedTest {
 return ShrinkWrap.create(WebArchive.class, "LockedTest.war")
 .addAsLibraries(ArchiveUtils.getDeltaSpikeCoreArchive())
 .addAsLibraries(testJar)
-.addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml");
+.addAsWebInfResource(new StringAsset(beans.exportAsString()), 
"beans.xml");
 }
 
 @Inject



svn commit: r1000172 - /websites/production/deltaspike/content/

2016-10-30 Thread johndament
Author: johndament
Date: Mon Oct 31 01:09:39 2016
New Revision: 1000172

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r1000171, websites/staging/deltaspike/trunk/content/



svn commit: r1767212 - /deltaspike/site/trunk/content/documentation/data.html

2016-10-30 Thread johndament
Author: johndament
Date: Mon Oct 31 01:05:45 2016
New Revision: 1767212

URL: http://svn.apache.org/viewvc?rev=1767212=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/data.html

Modified: deltaspike/site/trunk/content/documentation/data.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/data.html?rev=1767212=1767211=1767212=diff
==
--- deltaspike/site/trunk/content/documentation/data.html (original)
+++ deltaspike/site/trunk/content/documentation/data.html Mon Oct 31 01:05:45 
2016
@@ -275,7 +275,7 @@ table.CodeRay td.code>pre{padding:0}
 Overview
 
 
-The Data module provides capabilities for implementing repository patterns 
and thereby simplifying the repository layer. Repository patterns are ideal for 
simple queries that require boilerplate code, enabling cenertalization of query 
logic and consequently reducing code duplication and improving testability.
+The Data module provides capabilities for implementing repository patterns 
and thereby simplifying the repository layer. Repository patterns are ideal for 
simple queries that require boilerplate code, enabling centralization of query 
logic and consequently reducing code duplication and improving testability.
 
 
 The code sample below gives you a quick overview on the common usage
@@ -321,7 +321,7 @@ parameters.
 
 The implementation of the method is done automatically by the CDI
 extension. A client can declare a dependency to the interface only. The
-details on how to use those features are outlines in the following
+details on how to use those features are outlined in the following
 chapters.
 
 
@@ -1068,7 +1068,7 @@ more control on the generated query.
 
 Using Query Annotations
 
-The simples way to define a specific query is by annotating a method and
+The simplest way to define a specific query is by annotating a method and
 providing the JPQL query string which has to be executed. In code, this
 looks like the following sample:
 
@@ -1282,7 +1282,7 @@ expressions.
 
 
 
-QueryResult is based on our internal understanding of your query
+QueryResult is based on our internal understanding of your query.
 DeltaSpike expects the alias used in your queries to refer to the entity as 
e
 You can disable this behavior by passing in false with your attribute, 
.orderDesc("p.age", false)
 which would add descending ordering to your existing query select p from 
Person p
@@ -1501,7 +1501,7 @@ currently recommend creating an extensio
 
 
 
-public class TxExtensionE implements TxRepository // this 
is your extension interface
+public class TxExtensionE implements DelegateQueryHandler, TxRepository // this is your extension interface
 {
 @Inject
 private EntityManager em;
@@ -1528,7 +1528,7 @@ implementation can be, for example, in a
 
 Query Delegates
 
-While repositories defines several base interfaces, there might still be
+While several base interfaces are defined for repositories, there might 
still be
 the odd convenience method that is missing. This is actually intentional
 - things should not get overloaded for each and every use case. Thats
 why in DeltaSpike you can define your own reusable methods.
@@ -1650,7 +1650,7 @@ interface:
 ...
 
 @Override
-public Object mapResultList(ListSimple result)
+public Object mapResultList(ListPerson result)
 {
 ... // result lists can also be mapped into 
something different
 // than a collection.
@@ -1707,7 +1707,7 @@ correctly (in this example, a conversion
 
 In many cases it is just required to map a DTO object back and forth. For
 this case, the SimpleQueryInOutMapperBase class can be subclassed,
-which only requires to override two methods:
+which only requires to override three methods:
 
 
 
@@ -1751,7 +1751,7 @@ entity).
 JPA Criteria API Support
 
 
-Beside automatic query generation, the DeltaSpike Data module also
+Besides automatic query generation, the DeltaSpike Data module also
 provides a DSL-like API to create JPA 2 Criteria queries. It takes
 advantage of the JPA 2 meta model, which helps creating type safe
 queries.




[3/3] deltaspike git commit: DELTASPIKE-1209: Update Data Module documentation

2016-10-30 Thread johndament
DELTASPIKE-1209: Update Data Module documentation

Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/28b48bb8
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/28b48bb8
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/28b48bb8

Branch: refs/heads/master
Commit: 28b48bb82a564acb72100104347a946ab177d9dd
Parents: e14a486
Author: Anthony Vanelverdinghe 
Authored: Fri Oct 28 13:25:45 2016 +0200
Committer: John D. Ament 
Committed: Sun Oct 30 21:04:33 2016 -0400

--
 documentation/src/main/asciidoc/data.adoc | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/28b48bb8/documentation/src/main/asciidoc/data.adoc
--
diff --git a/documentation/src/main/asciidoc/data.adoc 
b/documentation/src/main/asciidoc/data.adoc
index fc7cc5d..076ac4e 100644
--- a/documentation/src/main/asciidoc/data.adoc
+++ b/documentation/src/main/asciidoc/data.adoc
@@ -5,7 +5,7 @@
 :Notice: Licensed to the Apache Software Foundation (ASF) under one or more 
contributor license agreements. See the NOTICE file distributed with this work 
for additional information regarding copyright ownership. The ASF licenses this 
file to you under the Apache License, Version 2.0 (the "License"); you may not 
use this file except in compliance with the License. You may obtain a copy of 
the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by 
applicable law or agreed to in writing, software distributed under the License 
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY 
KIND, either express or implied. See the License for the specific language 
governing permissions and limitations under the License.
 
 == Overview
-The Data module provides capabilities for implementing repository patterns and 
thereby simplifying the repository layer. Repository patterns are ideal for 
simple queries that require boilerplate code, enabling cenertalization of query 
logic and consequently reducing code duplication and improving testability.
+The Data module provides capabilities for implementing repository patterns and 
thereby simplifying the repository layer. Repository patterns are ideal for 
simple queries that require boilerplate code, enabling centralization of query 
logic and consequently reducing code duplication and improving testability.
 
 The code sample below gives you a quick overview on the common usage
 scenarios of the data module:
@@ -39,7 +39,7 @@ parameters.
 
 The implementation of the method is done automatically by the CDI
 extension. A client can declare a dependency to the interface only. The
-details on how to use those features are outlines in the following
+details on how to use those features are outlined in the following
 chapters.
 
 == Project Setup
@@ -628,7 +628,7 @@ more control on the generated query.
 
 === Using Query Annotations
 
-The simples way to define a specific query is by annotating a method and
+The simplest way to define a specific query is by annotating a method and
 providing the JPQL query string which has to be executed. In code, this
 looks like the following sample:
 
@@ -789,7 +789,7 @@ supported for Hibernate, EclipseLink and OpenJPA.
 Note that the `QueryResult` return type can also be used with method
 expressions.
 
-IMPORTANT: `QueryResult` is based on our internal understanding of your query
+IMPORTANT: `QueryResult` is based on our internal understanding of your query.
 DeltaSpike expects the alias used in your queries to refer to the entity as `e`
 You can disable this behavior by passing in false with your attribute, 
`.orderDesc("p.age", false)`
 which would add descending ordering to your existing query `select p from 
Person p`
@@ -963,7 +963,7 @@ currently recommend creating an extension (see next 
chapter) which uses
 
 [source,java]
 
---
-public class TxExtension implements TxRepository // this is your extension 
interface
+public class TxExtension implements DelegateQueryHandler, TxRepository // 
this is your extension interface
 {
 @Inject
 private EntityManager em;
@@ -985,7 +985,7 @@ implementation can be, for example, in an anonymous class).
 
 === Query Delegates
 
-While repositories defines several base interfaces, there might still be
+While several base interfaces are defined for repositories, there might still 
be
 the odd convenience method that is missing. This is actually intentional
 - things should not get overloaded for each and every use case. That's
 why in DeltaSpike you can define your own reusable methods.
@@ 

[2/3] deltaspike git commit: DELTASPIKE-1210: DelegateQueryHandler Javadoc fix

2016-10-30 Thread johndament
DELTASPIKE-1210: DelegateQueryHandler Javadoc fix

Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/92de21f6
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/92de21f6
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/92de21f6

Branch: refs/heads/master
Commit: 92de21f64216341c1487aebc1f4aa8ca30607195
Parents: 28b48bb
Author: Anthony Vanelverdinghe 
Authored: Fri Oct 28 13:46:44 2016 +0200
Committer: John D. Ament 
Committed: Sun Oct 30 21:04:33 2016 -0400

--
 .../org/apache/deltaspike/data/spi/DelegateQueryHandler.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/92de21f6/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/spi/DelegateQueryHandler.java
--
diff --git 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/spi/DelegateQueryHandler.java
 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/spi/DelegateQueryHandler.java
index a84237b..1ddf000 100644
--- 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/spi/DelegateQueryHandler.java
+++ 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/spi/DelegateQueryHandler.java
@@ -37,12 +37,12 @@ package org.apache.deltaspike.data.spi;
  * 
  *
  * The extension is now usable with:
- *
- * @Repository
+ * 
+ * Repository
  * public interface MySimpleRepository
  * extends RepositoryExtension, EntityRepository 
{
  * }
- *
+ * 
  */
 public interface DelegateQueryHandler
 {



[1/3] deltaspike git commit: DELTASPIKE-1211: Fix SingleResultType Javadoc link

2016-10-30 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master e14a48623 -> b5fd1a233


DELTASPIKE-1211: Fix SingleResultType Javadoc link

Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/b5fd1a23
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/b5fd1a23
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/b5fd1a23

Branch: refs/heads/master
Commit: b5fd1a23320cdf071e88ffc9d58c5911d91202f9
Parents: 92de21f
Author: Anthony Vanelverdinghe 
Authored: Fri Oct 28 13:55:52 2016 +0200
Committer: John D. Ament 
Committed: Sun Oct 30 21:04:33 2016 -0400

--
 .../main/java/org/apache/deltaspike/data/api/SingleResultType.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b5fd1a23/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/SingleResultType.java
--
diff --git 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/SingleResultType.java
 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/SingleResultType.java
index c2a54e8..e2315c2 100644
--- 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/SingleResultType.java
+++ 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/SingleResultType.java
@@ -32,7 +32,7 @@ public enum SingleResultType
 JPA,
 
 /**
- * Expects a single result. Other than {@link SingleResultStyle#SINGLE} it 
returns {@code null}
+ * Expects a single result. Other than {@link SingleResultType#JPA} it 
returns {@code null}
  * if no result is found.
  */
 OPTIONAL,



deltaspike git commit: DELTASPIKE-1205 Added an example for data that is very similar to JPA.

2016-10-27 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 716640903 -> e14a48623


DELTASPIKE-1205 Added an example for data that is very similar to JPA.

This closes #67


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/e14a4862
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/e14a4862
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/e14a4862

Branch: refs/heads/master
Commit: e14a486231f6c5e4c80c06f584c3b34679548e35
Parents: 7166409
Author: John D. Ament 
Authored: Thu Oct 27 21:40:59 2016 -0400
Committer: John D. Ament 
Committed: Thu Oct 27 21:40:59 2016 -0400

--
 deltaspike/examples/data-examples/README.md |  24 +
 deltaspike/examples/data-examples/pom.xml   |  94 
 .../org/apache/deltaspike/example/Article.java  | 108 +++
 .../deltaspike/example/ArticleController.java   |  98 +
 .../deltaspike/example/ArticleRepository.java   |  29 +
 .../apache/deltaspike/example/HttpParam.java|  37 +++
 .../apache/deltaspike/example/HttpParams.java   |  37 +++
 .../apache/deltaspike/example/LogProducer.java  |  33 ++
 .../apache/deltaspike/example/Resources.java|  62 +++
 .../META-INF/apache-deltaspike.properties   |  20 
 .../src/main/resources/META-INF/persistence.xml |  33 ++
 .../src/main/webapp/WEB-INF/beans.xml   |  23 
 .../src/main/webapp/WEB-INF/faces-config.xml|  41 +++
 .../src/main/webapp/WEB-INF/web.xml |  43 
 .../data-examples/src/main/webapp/add.xhtml |  52 +
 .../data-examples/src/main/webapp/index.xhtml   |  39 +++
 .../data-examples/src/main/webapp/list.xhtml|  64 +++
 deltaspike/examples/pom.xml |   1 +
 18 files changed, 838 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/e14a4862/deltaspike/examples/data-examples/README.md
--
diff --git a/deltaspike/examples/data-examples/README.md 
b/deltaspike/examples/data-examples/README.md
new file mode 100644
index 000..84daafc
--- /dev/null
+++ b/deltaspike/examples/data-examples/README.md
@@ -0,0 +1,24 @@
+Notice:Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+   .
+ http://www.apache.org/licenses/LICENSE-2.0
+   .
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.
+   
+Data Module for DeltaSpike
+==
+This example shows:
+
+1, how to use JPA in deltaspike;
+2, how to use the Data module for repositories;
+3, the function of @Transactional, how @Transactional save entity 
automatically. 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/e14a4862/deltaspike/examples/data-examples/pom.xml
--
diff --git a/deltaspike/examples/data-examples/pom.xml 
b/deltaspike/examples/data-examples/pom.xml
new file mode 100644
index 000..5c43ebb
--- /dev/null
+++ b/deltaspike/examples/data-examples/pom.xml
@@ -0,0 +1,94 @@
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+4.0.0
+
+
+org.apache.deltaspike.examples
+examples-project
+1.7.2-SNAPSHOT
+
+
+deltaspike-data-examples
+
+Apache DeltaSpike Data Examples
+
+war
+
+
+true
+
+
+
+
+
+org.apache.deltaspike.core
+deltaspike-core-api
+
+
+
+org.apache.deltaspike.core
+deltaspike-core-impl
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jsf-module-api
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jsf-module-impl
+
+
+
+org.apache.deltaspike.modules
+

svn commit: r1000018 - /websites/production/deltaspike/content/

2016-10-27 Thread johndament
Author: johndament
Date: Fri Oct 28 01:20:00 2016
New Revision: 118

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r117, websites/staging/deltaspike/trunk/content/



deltaspike git commit: DELTASPIKE-1187 Introduce basic docs for entity graphs.

2016-10-27 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master ebb24accd -> 716640903


DELTASPIKE-1187 Introduce basic docs for entity graphs.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/71664090
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/71664090
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/71664090

Branch: refs/heads/master
Commit: 716640903c6c5af89c2b1bb5842b05eabb245f10
Parents: ebb24ac
Author: John D. Ament 
Authored: Thu Oct 27 21:09:44 2016 -0400
Committer: John D. Ament 
Committed: Thu Oct 27 21:09:44 2016 -0400

--
 documentation/src/main/asciidoc/data.adoc | 15 +++
 1 file changed, 15 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/71664090/documentation/src/main/asciidoc/data.adoc
--
diff --git a/documentation/src/main/asciidoc/data.adoc 
b/documentation/src/main/asciidoc/data.adoc
index 00dffa9..fc7cc5d 100644
--- a/documentation/src/main/asciidoc/data.adoc
+++ b/documentation/src/main/asciidoc/data.adoc
@@ -927,6 +927,21 @@ result of the list, or else `empty()`.
 
 Queries returning `Stream` act as a simple wrapper for 
`query.getResultList().stream()` to give back the results.
 
+=== Entity Graphs
+
+EntityGraphs are a feature added in JPA 2.1.  The Data module supports entity 
graphs for query operations, where the results
+will be limited based on a defined graph.  This feature is only available if 
you are using a JPA 2.1 implementation.
+
+`@EntityGraph` can be used for either `fetch` or `load` operations, depending 
on the `EntityGraphType` used in the annotation.  Most queries should use the 
`FETCH` option.
+
+ Named Graphs
+
+Entity graphs can be selected by name.  A `@NamedEntityGraph` should be 
defined already within your persistence context to leverage this.  When this 
graph is referenced on a repository method, it will be applied to the query.
+
+ Dyanmically built graphs
+
+If you want to dynamically build a graph, you can do that via the `paths` 
attribute of the annotation.  The paths specified will be added as graph nodes. 
 Each graph node will be used in the select.  The format is the full path to 
the property, based on the property names.
+
 == Transactions
 
 If you call any method expression, `@Query`-annotated method or a method



svn commit: r1766912 - /deltaspike/site/trunk/content/documentation/data.html

2016-10-27 Thread johndament
Author: johndament
Date: Fri Oct 28 01:10:11 2016
New Revision: 1766912

URL: http://svn.apache.org/viewvc?rev=1766912=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/data.html

Modified: deltaspike/site/trunk/content/documentation/data.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/data.html?rev=1766912=1766911=1766912=diff
==
--- deltaspike/site/trunk/content/documentation/data.html (original)
+++ deltaspike/site/trunk/content/documentation/data.html Fri Oct 28 01:10:11 
2016
@@ -1444,6 +1444,28 @@ result of the list, or else empty(
 Queries returning StreamT act as a simple wrapper for 
query.getResultList().stream() to give back the results.
 
 
+
+Entity Graphs
+
+EntityGraphs are a feature added in JPA 2.1.  The Data module supports 
entity graphs for query operations, where the results
+will be limited based on a defined graph.  This feature is only available if 
you are using a JPA 2.1 implementation.
+
+
+@EntityGraph can be used for either fetch or 
load operations, depending on the EntityGraphType 
used in the annotation.  Most queries should use the FETCH 
option.
+
+
+Named Graphs
+
+Entity graphs can be selected by name.  A @NamedEntityGraph 
should be defined already within your persistence context to leverage this.  
When this graph is referenced on a repository method, it will be applied to the 
query.
+
+
+
+Dyanmically built graphs
+
+If you want to dynamically build a graph, you can do that via the 
paths attribute of the annotation.  The paths specified will be 
added as graph nodes.  Each graph node will be used in the select.  The format 
is the full path to the property, based on the property names.
+
+
+
 
 
 
@@ -2333,6 +2355,12 @@ provider when persisting / updating the
 Zero or One Result
 Any Result
 Java 8 Semantics
+Entity Graphs
+
+Named Graphs
+Dyanmically built graphs
+
+
 
 
 Transactions




[1/2] deltaspike git commit: DELTASPIKE-1208: Fixed variable replacement in configured values for getProjectStageAwarePropertyValue

2016-10-27 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 0596f9db2 -> ebb24accd


DELTASPIKE-1208: Fixed variable replacement in configured values for 
getProjectStageAwarePropertyValue


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/7215f7b7
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/7215f7b7
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/7215f7b7

Branch: refs/heads/master
Commit: 7215f7b7fdea436017c8a331d5468dc8fc5c7145
Parents: 0596f9d
Author: tzhmava4 
Authored: Thu Oct 20 07:52:42 2016 +0200
Committer: John D. Ament 
Committed: Thu Oct 27 20:46:19 2016 -0400

--
 .../core/api/config/ConfigResolver.java |  1 -
 .../test/api/config/ConfigResolverTest.java | 22 +++-
 .../test/api/config/TestConfigSource.java   |  5 +
 3 files changed, 22 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/7215f7b7/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/ConfigResolver.java
--
diff --git 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/ConfigResolver.java
 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/ConfigResolver.java
index 5a54abb..f8f522b 100644
--- 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/ConfigResolver.java
+++ 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/ConfigResolver.java
@@ -245,7 +245,6 @@ public final class ConfigResolver
 String value = getPropertyValue(key + '.' + ps, configResolverContext);
 if (value == null)
 {
-configResolverContext.setProjectStageAware(false);
 value = getPropertyValue(key, configResolverContext);
 }
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/7215f7b7/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/ConfigResolverTest.java
--
diff --git 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/ConfigResolverTest.java
 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/ConfigResolverTest.java
index 54e47ac..be24c62 100644
--- 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/ConfigResolverTest.java
+++ 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/ConfigResolverTest.java
@@ -197,15 +197,27 @@ public class ConfigResolverTest
 }
 
 @Test
-public void testProjectStageAwarePropertyValueReference() {
-final String expected = 
+public void testProjectStageAwarePropertyValueReference_1() {
+final String expectedFooUrl =
+"http://bar-dev/services;;
+
+final String actualFooUrl =
+ConfigResolver.getProjectStageAwarePropertyValue(
+"foo.url");
+
+Assert.assertEquals(expectedFooUrl, actualFooUrl);
+}
+
+@Test
+public void testProjectStageAwarePropertyValueReference_2() {
+final String expected =
 "projectStageAware-exampleEntry-1-is-tomato-UnitTest";
-
-final String projectStageAwareExampleEntry1 = 
+
+final String projectStageAwareExampleEntry1 =
 ConfigResolver.getProjectStageAwarePropertyValue(
 "deltaspike.test.exampleEntry-2", 
 "");
-
+
 Assert.assertEquals(expected, projectStageAwareExampleEntry1);
 }
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/7215f7b7/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/TestConfigSource.java
--
diff --git 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/TestConfigSource.java
 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/TestConfigSource.java
index 4798f67..ad177b0 100644
--- 
a/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/TestConfigSource.java
+++ 
b/deltaspike/core/api/src/test/java/org/apache/deltaspike/test/api/config/TestConfigSource.java
@@ -93,6 +93,11 @@ public class TestConfigSource implements ConfigSource
 props.put("deltaspike.test.projectstagefallback", "Value without 
ProjectStage");
 
 // ProjectStage aware property value with resolved reference
+props.put("foo.url", "${bar.url}/services");
+props.put("bar.url", "undefined");
+props.put("bar.url.UnitTest", "http://bar-dev;);
+props.put("bar.url.Production", "http://bar-prod;);

[2/2] deltaspike git commit: DELTASPIKE-1207: fix exception handling in DynamicMBeanWrapper.invoke()

2016-10-27 Thread johndament
DELTASPIKE-1207: fix exception handling in DynamicMBeanWrapper.invoke()

- don't wrap MBeanException directly thrown by the MBean method
- document exception handling in @JmxManaged

This closes #66
This closes #62


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/ebb24acc
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/ebb24acc
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/ebb24acc

Branch: refs/heads/master
Commit: ebb24accd05648df3206d77149ccf182d367700f
Parents: 7215f7b
Author: famod 
Authored: Sun Oct 16 22:17:47 2016 +0200
Committer: John D. Ament 
Committed: Thu Oct 27 20:47:08 2016 -0400

--
 .../deltaspike/core/api/jmx/JmxManaged.java |  6 +++--
 .../core/impl/jmx/DynamicMBeanWrapper.java  | 25 
 2 files changed, 24 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/ebb24acc/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/jmx/JmxManaged.java
--
diff --git 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/jmx/JmxManaged.java
 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/jmx/JmxManaged.java
index 1b1001b..b9f28ae 100644
--- 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/jmx/JmxManaged.java
+++ 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/jmx/JmxManaged.java
@@ -28,9 +28,11 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
 
 /**
  * Describes a JMX operation or attribute, when used on a method or a field, 
respectively.
- *
+ * 
  * Used on a method it describes a JMX operation with an optional description.
- *
+ * An exception thrown by the method will be wrapped in a {@link 
javax.management.MBeanException}
+ * unless it already is a {@code MBeanException}.
+ * 
  * Used on a field it describes a JMX attribute. This attribute is readable if 
a getter on this field is available and
  * writable if a setter is found.
  */

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/ebb24acc/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/jmx/DynamicMBeanWrapper.java
--
diff --git 
a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/jmx/DynamicMBeanWrapper.java
 
b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/jmx/DynamicMBeanWrapper.java
index 09166d5..9a7c1e0 100644
--- 
a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/jmx/DynamicMBeanWrapper.java
+++ 
b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/jmx/DynamicMBeanWrapper.java
@@ -59,7 +59,6 @@ import org.apache.deltaspike.core.api.jmx.MBean;
 import org.apache.deltaspike.core.api.jmx.NotificationInfo;
 import org.apache.deltaspike.core.api.provider.BeanManagerProvider;
 import org.apache.deltaspike.core.api.provider.BeanProvider;
-import org.apache.deltaspike.core.util.ExceptionUtils;
 import org.apache.deltaspike.core.util.ParameterUtil;
 
 /**
@@ -396,17 +395,33 @@ public class DynamicMBeanWrapper extends 
NotificationBroadcasterSupport implemen
 {
 return operations.get(actionName).invoke(instance(), params);
 }
-catch (Exception e)
+catch (InvocationTargetException e)
+{
+final Throwable cause = e.getCause();
+if (cause instanceof Error)
+{
+throw (Error) cause;
+}
+if (cause instanceof MBeanException)
+{
+throw (MBeanException) cause;
+}
+throw new MBeanException((Exception) cause, actionName + " 
failed with exception");
+}
+catch (IllegalAccessException e)
+{
+throw new ReflectionException(e, actionName + " could not be 
invoked");
+}
+catch (IllegalArgumentException e)
 {
-LOGGER.log(Level.SEVERE, actionName + " can't be invoked", e);
-throw ExceptionUtils.throwAsRuntimeException(e);
+throw new ReflectionException(e, actionName + " could not be 
invoked");
 }
 finally
 {
 Thread.currentThread().setContextClassLoader(oldCl);
 }
 }
-throw new MBeanException(new IllegalArgumentException(), actionName + 
" doesn't exist");
+throw new ReflectionException(new NoSuchMethodException(actionName + " 
doesn't exist"));
 }
 
 private synchronized Object instance()



deltaspike git commit: DELTASPIKE-1203 Polishing headers.

2016-10-15 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 80c9ae77d -> 0596f9db2


DELTASPIKE-1203 Polishing headers.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/0596f9db
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/0596f9db
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/0596f9db

Branch: refs/heads/master
Commit: 0596f9db2cc9344ab76a9cbc610f2f527e4e3373
Parents: 80c9ae7
Author: John D. Ament 
Authored: Sat Oct 15 10:23:14 2016 -0400
Committer: John D. Ament 
Committed: Sat Oct 15 10:23:14 2016 -0400

--
 deltaspike/examples/jpa-examples/pom.xml| 30 
 .../deltaspike/example/ArticleController.java   |  4 ---
 .../apache/deltaspike/example/HttpParam.java|  4 ---
 .../apache/deltaspike/example/HttpParams.java   |  4 ---
 .../apache/deltaspike/example/LogProducer.java  |  4 ---
 .../apache/deltaspike/example/Resources.java|  1 -
 .../src/main/resources/META-INF/persistence.xml | 18 
 7 files changed, 18 insertions(+), 47 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0596f9db/deltaspike/examples/jpa-examples/pom.xml
--
diff --git a/deltaspike/examples/jpa-examples/pom.xml 
b/deltaspike/examples/jpa-examples/pom.xml
index a17e2f5..8f9d547 100644
--- a/deltaspike/examples/jpa-examples/pom.xml
+++ b/deltaspike/examples/jpa-examples/pom.xml
@@ -19,24 +19,6 @@
   -->
 
 http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
-
 4.0.0
 
 
@@ -87,18 +69,6 @@
 deltaspike-jpa-module-impl
 
 
-
-
-
-
-
 
 javax
 javaee-api

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0596f9db/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/ArticleController.java
--
diff --git 
a/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/ArticleController.java
 
b/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/ArticleController.java
index 56c1716..0c978a0 100644
--- 
a/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/ArticleController.java
+++ 
b/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/ArticleController.java
@@ -30,10 +30,6 @@ import javax.inject.Named;
 import javax.persistence.EntityManager;
 import javax.transaction.Transactional;
 
-/**
- *
- * @author Su Baochen 
- */
 @Named
 @ViewScoped
 @Transactional

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0596f9db/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParam.java
--
diff --git 
a/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParam.java
 
b/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParam.java
index 6ce615c..75755f4 100644
--- 
a/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParam.java
+++ 
b/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParam.java
@@ -28,10 +28,6 @@ import java.lang.annotation.Target;
 import javax.enterprise.util.Nonbinding;
 import javax.inject.Qualifier;
 
-/**
- *
- * @author subaochen
- */
 @Qualifier
 @Retention(RUNTIME)
 @Target({ METHOD, FIELD, PARAMETER, TYPE })

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0596f9db/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParams.java
--
diff --git 
a/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParams.java
 
b/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParams.java
index 91938c5..b4edfa9 100644
--- 
a/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParams.java
+++ 
b/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/HttpParams.java
@@ -23,10 +23,6 @@ import javax.enterprise.inject.spi.InjectionPoint;
 import javax.faces.context.FacesContext;
 import javax.servlet.ServletRequest;
 
-/**
- *
- * @author subaochen
- */
 public class HttpParams
 {
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0596f9db/deltaspike/examples/jpa-examples/src/main/java/org/apache/deltaspike/example/LogProducer.java

[2/3] deltaspike git commit: DELTASPIKE-1203 redirect to list.xhtml when article saved

2016-10-15 Thread johndament
DELTASPIKE-1203 redirect to list.xhtml when article saved


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/a876251b
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/a876251b
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/a876251b

Branch: refs/heads/master
Commit: a876251b419fb57d4dd126b418465f3da5a6b189
Parents: fcb21a1
Author: subaochen 
Authored: Fri Sep 16 16:39:27 2016 +0800
Committer: John D. Ament 
Committed: Sat Oct 15 09:22:45 2016 -0400

--
 .../examples/jpa-examples/src/main/webapp/WEB-INF/faces-config.xml  | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/a876251b/deltaspike/examples/jpa-examples/src/main/webapp/WEB-INF/faces-config.xml
--
diff --git 
a/deltaspike/examples/jpa-examples/src/main/webapp/WEB-INF/faces-config.xml 
b/deltaspike/examples/jpa-examples/src/main/webapp/WEB-INF/faces-config.xml
index 8b8e365..ca5f7c2 100644
--- a/deltaspike/examples/jpa-examples/src/main/webapp/WEB-INF/faces-config.xml
+++ b/deltaspike/examples/jpa-examples/src/main/webapp/WEB-INF/faces-config.xml
@@ -26,6 +26,7 @@
 
 persisted
 /list.xhtml
+
 
 
 



[1/3] deltaspike git commit: DELTASPIKE-1203 jpa example

2016-10-15 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 2da220a2f -> 80c9ae77d


DELTASPIKE-1203 jpa example


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/fcb21a15
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/fcb21a15
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/fcb21a15

Branch: refs/heads/master
Commit: fcb21a158295e155ae8abe1e1459d6dfc6bc3005
Parents: 2da220a
Author: subaochen 
Authored: Sun Sep 11 21:54:07 2016 +0800
Committer: John D. Ament 
Committed: Sat Oct 15 09:22:39 2016 -0400

--
 deltaspike/examples/jpa-examples/README.md  |  25 
 deltaspike/examples/jpa-examples/pom.xml| 114 +++
 .../org/apache/deltaspike/example/Article.java  | 108 ++
 .../deltaspike/example/ArticleController.java   | 103 +
 .../apache/deltaspike/example/HttpParam.java|  41 +++
 .../apache/deltaspike/example/HttpParams.java   |  41 +++
 .../apache/deltaspike/example/LogProducer.java  |  37 ++
 .../apache/deltaspike/example/Resources.java|  63 ++
 .../src/main/resources/META-INF/persistence.xml |  15 +++
 .../src/main/webapp/WEB-INF/beans.xml   |  23 
 .../src/main/webapp/WEB-INF/faces-config.xml|  40 +++
 .../src/main/webapp/WEB-INF/web.xml |  43 +++
 .../jpa-examples/src/main/webapp/add.xhtml  |  52 +
 .../jpa-examples/src/main/webapp/index.xhtml|  39 +++
 .../jpa-examples/src/main/webapp/list.xhtml |  64 +++
 deltaspike/examples/pom.xml |   9 +-
 16 files changed, 816 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/fcb21a15/deltaspike/examples/jpa-examples/README.md
--
diff --git a/deltaspike/examples/jpa-examples/README.md 
b/deltaspike/examples/jpa-examples/README.md
new file mode 100644
index 000..f1c23e0
--- /dev/null
+++ b/deltaspike/examples/jpa-examples/README.md
@@ -0,0 +1,25 @@
+Notice:Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+   .
+ http://www.apache.org/licenses/LICENSE-2.0
+   .
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.
+   
+JPA support in deltaspike
+=
+This example shows:
+
+1, how to use JPA in deltaspike;
+2, the function of @Transactional, how @Transactional save entity 
automatically. 
+
+BUT, this example is not involved in deltaspike Data module, please see 
data-playground example for deltaspike data module.

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/fcb21a15/deltaspike/examples/jpa-examples/pom.xml
--
diff --git a/deltaspike/examples/jpa-examples/pom.xml 
b/deltaspike/examples/jpa-examples/pom.xml
new file mode 100644
index 000..a17e2f5
--- /dev/null
+++ b/deltaspike/examples/jpa-examples/pom.xml
@@ -0,0 +1,114 @@
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+4.0.0
+
+
+org.apache.deltaspike.examples
+examples-project
+1.7.2-SNAPSHOT
+
+
+deltaspike-jpa-examples
+
+Apache DeltaSpike JPA Examples
+
+war
+
+
+true
+
+
+
+
+
+org.apache.deltaspike.core
+deltaspike-core-api
+
+
+
+org.apache.deltaspike.core
+deltaspike-core-impl
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jsf-module-api
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jsf-module-impl
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jpa-module-api
+
+
+
+org.apache.deltaspike.modules
+

[3/3] deltaspike git commit: DELTASPIKE-1201 add logout link to secured/home.xhtml

2016-10-15 Thread johndament
DELTASPIKE-1201 add logout link to secured/home.xhtml


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/80c9ae77
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/80c9ae77
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/80c9ae77

Branch: refs/heads/master
Commit: 80c9ae77da24932e967c10dfc6ca38bb7e5a5f18
Parents: a876251
Author: subaochen 
Authored: Wed Sep 7 14:58:47 2016 +0800
Committer: John D. Ament 
Committed: Sat Oct 15 09:22:45 2016 -0400

--
 deltaspike/examples/pom.xml |  2 +-
 .../picketlink/AuthenticationListener.java  |  7 -
 .../requestedpage/picketlink/Pages.java | 10 +++---
 .../src/main/webapp/index.html  |  5 +--
 .../src/main/webapp/secured/home.xhtml  |  6 +++-
 .../src/main/webapp/secured/test.xhtml  | 33 
 6 files changed, 54 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/80c9ae77/deltaspike/examples/pom.xml
--
diff --git a/deltaspike/examples/pom.xml b/deltaspike/examples/pom.xml
index 677963c..52238b7 100644
--- a/deltaspike/examples/pom.xml
+++ b/deltaspike/examples/pom.xml
@@ -99,7 +99,7 @@
 
 org.wildfly.plugins
 wildfly-maven-plugin
-1.0.1.Final
+1.1.0.Alpha8
 
 
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/80c9ae77/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/AuthenticationListener.java
--
diff --git 
a/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/AuthenticationListener.java
 
b/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/AuthenticationListener.java
index 5a048df..2d2d53b 100644
--- 
a/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/AuthenticationListener.java
+++ 
b/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/AuthenticationListener.java
@@ -21,6 +21,7 @@ package 
org.apache.deltaspike.example.security.requestedpage.picketlink;
 import 
org.apache.deltaspike.core.api.config.view.navigation.ViewNavigationHandler;
 import org.picketlink.authentication.event.LoggedInEvent;
 import org.picketlink.authentication.event.LoginFailedEvent;
+import org.picketlink.authentication.event.PostLoggedOutEvent;
 
 import javax.enterprise.event.Observes;
 import javax.inject.Inject;
@@ -44,4 +45,8 @@ public class AuthenticationListener
 this.viewNavigationHandler.navigateTo(Pages.Login.class);
 }
 
-}
\ No newline at end of file
+public void handleLogout(@Observes PostLoggedOutEvent event)
+{
+this.viewNavigationHandler.navigateTo(Pages.Login.class);
+}
+}

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/80c9ae77/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/Pages.java
--
diff --git 
a/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/Pages.java
 
b/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/Pages.java
index 973968f..53db50d 100644
--- 
a/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/Pages.java
+++ 
b/deltaspike/examples/security-requested-page-after-login-picketlink/src/main/java/org/apache/deltaspike/example/security/requestedpage/picketlink/Pages.java
@@ -31,14 +31,16 @@ public interface Pages
 }
 
 @Folder(name = "/secured")
+@Secured(LoggedInAccessDecisionVoter.class)
 interface Secure
-{
-
-@Secured(LoggedInAccessDecisionVoter.class)
+{   
 class Home implements ViewConfig
 {
 }
-
+
+class Test implements ViewConfig
+{
+}
 }
 
 }


svn commit: r996230 - /websites/production/deltaspike/content/

2016-08-30 Thread johndament
Author: johndament
Date: Tue Aug 30 10:43:35 2016
New Revision: 996230

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r996229, websites/staging/deltaspike/trunk/content/



svn commit: r995606 - /websites/production/deltaspike/content/

2016-08-21 Thread johndament
Author: johndament
Date: Sun Aug 21 13:47:30 2016
New Revision: 995606

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r995605, websites/staging/deltaspike/trunk/content/



svn commit: r995605 - /websites/production/deltaspike/content/

2016-08-21 Thread johndament
Author: johndament
Date: Sun Aug 21 13:42:40 2016
New Revision: 995605

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r995603, websites/staging/deltaspike/trunk/content/



svn commit: r1757060 - /deltaspike/site/trunk/content/documentation/index.html

2016-08-21 Thread johndament
Author: johndament
Date: Sun Aug 21 13:41:34 2016
New Revision: 1757060

URL: http://svn.apache.org/viewvc?rev=1757060=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/index.html

Modified: deltaspike/site/trunk/content/documentation/index.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/index.html?rev=1757060=1757059=1757060=diff
==
--- deltaspike/site/trunk/content/documentation/index.html (original)
+++ deltaspike/site/trunk/content/documentation/index.html Sun Aug 21 13:41:34 
2016
@@ -280,6 +280,7 @@ table.CodeRay td.code>pre{padding:0}
 
 Overview of DeltaSpike Modules
 Core
+Configuration
 Bean Validation
 Container Control
 Data




deltaspike git commit: Added a link to configuration documentation on landing page.

2016-08-21 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 6105ac520 -> 499c58154


Added a link to configuration documentation on landing page.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/499c5815
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/499c5815
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/499c5815

Branch: refs/heads/master
Commit: 499c581544d62eb43d006247ec68a40223226479
Parents: 6105ac5
Author: John D. Ament 
Authored: Sun Aug 21 09:41:06 2016 -0400
Committer: John D. Ament 
Committed: Sun Aug 21 09:41:06 2016 -0400

--
 documentation/src/main/asciidoc/index.adoc | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/499c5815/documentation/src/main/asciidoc/index.adoc
--
diff --git a/documentation/src/main/asciidoc/index.adoc 
b/documentation/src/main/asciidoc/index.adoc
index 798886b..da1fac9 100644
--- a/documentation/src/main/asciidoc/index.adoc
+++ b/documentation/src/main/asciidoc/index.adoc
@@ -33,6 +33,7 @@
 
 Overview of DeltaSpike Modules
 Core
+Configuration
 Bean Validation
 Container Control
 Data



deltaspike git commit: DELTASPIKE-1196 Update DOAP.

2016-08-20 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master bf01c09f4 -> 6105ac520


DELTASPIKE-1196 Update DOAP.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/6105ac52
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/6105ac52
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/6105ac52

Branch: refs/heads/master
Commit: 6105ac520e8eb0f8c5a6c2c4eeb554aa4362f97e
Parents: bf01c09
Author: John D. Ament 
Authored: Sat Aug 20 08:41:33 2016 -0400
Committer: John D. Ament 
Committed: Sat Aug 20 08:41:33 2016 -0400

--
 doap_DeltaSpike.rdf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/6105ac52/doap_DeltaSpike.rdf
--
diff --git a/doap_DeltaSpike.rdf b/doap_DeltaSpike.rdf
index 7e3a90e..22c22f1 100644
--- a/doap_DeltaSpike.rdf
+++ b/doap_DeltaSpike.rdf
@@ -28,7 +28,7 @@
 http://deltaspike.apache.org; />
 http://deltaspike.apache.org; />
 DeltaSpike is a collection of portable Extensions for CDI 
Containers
-Apache DeltaSpike is  a suite of portable CDI (Contexts & 
Dependency
+Apache DeltaSpike is  a suite of portable CDI (Contexts  
Dependency
 Injection) extensions intended to make application development easier when
 working with CDI and Java EE.  Some of its key features include:
 
@@ -45,7 +45,7 @@ outside of a container.
 Testing support is also provided, to allow you to do low level unit testing
 of your CDI enabled projects.
 https://issues.apache.org/jira/browse/DELTASPIKE; />
-http://deltaspike.apache.org/community.html#mailing-lists; />
+http://deltaspike.apache.org/community.html#Mailinglists; />
 Java
 http://projects.apache.org/category/javaee; />
 



deltaspike git commit: Updated description in doap.

2016-08-17 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master a51278e59 -> bf01c09f4


Updated description in doap.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/bf01c09f
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/bf01c09f
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/bf01c09f

Branch: refs/heads/master
Commit: bf01c09f4af975eb66507c8406a8e89a3dead1a6
Parents: a51278e
Author: John D. Ament 
Authored: Wed Aug 17 21:04:08 2016 -0400
Committer: John D. Ament 
Committed: Wed Aug 17 21:04:08 2016 -0400

--
 doap_DeltaSpike.rdf | 22 --
 1 file changed, 16 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/bf01c09f/doap_DeltaSpike.rdf
--
diff --git a/doap_DeltaSpike.rdf b/doap_DeltaSpike.rdf
index 0691c8e..7e3a90e 100644
--- a/doap_DeltaSpike.rdf
+++ b/doap_DeltaSpike.rdf
@@ -28,12 +28,22 @@
 http://deltaspike.apache.org; />
 http://deltaspike.apache.org; />
 DeltaSpike is a collection of portable Extensions for CDI 
Containers
-Apache DeltaSpike is a portable JSR-299 CDI (Contexts and 
Dependency Injection for Java) Extension library which contains lots of useful 
tools and helpers which are missing in the CDI core spec.
-
-DeltaSpike is not a CDI-container itself, but a portable
-Extension library which can run on all CDI-containers!
-
-DeltaSpike is tested and runs on many Java EE Servers like Apache TomEE, Red 
Hat JBoss Application Server, JBoss Wildfly, Oracle WebLogic, Oracle Glassfish, 
IBM WebSphere, and also on simple Servlet containers like Apache Tomcat or 
Jetty in combination with either JBoss Weld or Apache 
OpenWebBeans.
+Apache DeltaSpike is  a suite of portable CDI (Contexts & 
Dependency
+Injection) extensions intended to make application development easier when
+working with CDI and Java EE.  Some of its key features include:
+
+- A core runtime that supports component configuration, type safe messaging
+and internationalization, and exception handling.
+- A suite of utilities to make programmatic bean lookup easier.
+- A plugin for Java SE to bootstrap both JBoss Weld and Apache OpenWebBeans
+outside of a container.
+- JSF integration, including backporting of JSF 2.2 features for Java EE 6.
+- JPA integration and transaction support.
+- A Data module, to create an easy to use repository pattern on top of JPA.
+- Quartz integration
+
+Testing support is also provided, to allow you to do low level unit testing
+of your CDI enabled projects.
 https://issues.apache.org/jira/browse/DELTASPIKE; />
 http://deltaspike.apache.org/community.html#mailing-lists; />
 Java



deltaspike git commit: DELTASPIKE-1194 Fix binary assembly to pull in dependencies declared.

2016-08-17 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 2c5c9d203 -> a51278e59


DELTASPIKE-1194 Fix binary assembly to pull in dependencies declared.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/a51278e5
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/a51278e5
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/a51278e5

Branch: refs/heads/master
Commit: a51278e59334f4155e36a565b858275430022786
Parents: 2c5c9d2
Author: John D. Ament 
Authored: Wed Aug 17 20:50:12 2016 -0400
Committer: John D. Ament 
Committed: Wed Aug 17 20:50:12 2016 -0400

--
 deltaspike/dist/full/pom.xml| 195 ++-
 .../full/src/main/distribution/assembly.xml |   3 +
 2 files changed, 194 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/a51278e5/deltaspike/dist/full/pom.xml
--
diff --git a/deltaspike/dist/full/pom.xml b/deltaspike/dist/full/pom.xml
index 9a4cc65..7158f42 100644
--- a/deltaspike/dist/full/pom.xml
+++ b/deltaspike/dist/full/pom.xml
@@ -32,11 +32,198 @@
 Apache DeltaSpike Full Distribution
 
 
-org.apache.deltaspike.distribution
-distributions-bom
+org.apache.deltaspike.core
+deltaspike-core-api
 ${project.version}
-import
-pom
+compile
+
+
+
+org.apache.deltaspike.core
+deltaspike-core-impl
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.modules
+deltaspike-security-module-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.modules
+deltaspike-security-module-impl
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jpa-module-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jpa-module-impl
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.modules
+deltaspike-servlet-module-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.modules
+deltaspike-servlet-module-impl
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jsf-module-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.modules
+deltaspike-jsf-module-impl
+${project.version}
+runtime
+
+
+org.apache.deltaspike.modules
+deltaspike-jsf-module-impl-ee6
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.modules
+deltaspike-data-module-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.modules
+deltaspike-data-module-impl
+${project.version}
+runtime
+
+
+
+
+org.apache.deltaspike.cdictrl
+deltaspike-cdictrl-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.cdictrl
+deltaspike-cdictrl-owb
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.cdictrl
+deltaspike-cdictrl-weld
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.cdictrl
+deltaspike-cdictrl-openejb
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.cdictrl
+deltaspike-cdictrl-servlet
+${project.version}
+
+
+
+org.apache.deltaspike.modules
+deltaspike-partial-bean-module-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.modules
+deltaspike-partial-bean-module-impl
+${project.version}
+runtime
+
+
+
+org.apache.deltaspike.modules
+deltaspike-test-control-module-api
+${project.version}
+compile
+
+
+
+org.apache.deltaspike.modules
+deltaspike-test-control-module-impl
+

svn commit: r1756698 [15/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/security.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/security.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/security.html (original)
+++ deltaspike/site/trunk/content/documentation/security.html Thu Aug 18 
00:36:56 2016
@@ -1,829 +1,829 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Security Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay 

svn commit: r1756698 [5/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/container-control.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/container-control.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/container-control.html 
(original)
+++ deltaspike/site/trunk/content/documentation/container-control.html Thu Aug 
18 00:36:56 2016
@@ -1,661 +1,661 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Container Control Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay 

svn commit: r1756698 [3/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/configuration.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/configuration.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/configuration.html (original)
+++ deltaspike/site/trunk/content/documentation/configuration.html Thu Aug 18 
00:36:56 2016
@@ -1,1061 +1,1061 @@
-
-
-
-
-
-
-
-
-
-
-
-
-DeltaSpike Configuration Mechanism
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay 

svn commit: r1756698 [13/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/proxy.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/proxy.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/proxy.html (original)
+++ deltaspike/site/trunk/content/documentation/proxy.html Thu Aug 18 00:36:56 
2016
@@ -1,462 +1,462 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Proxy Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay 

svn commit: r1756698 [2/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/cdiimp.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/cdiimp.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/cdiimp.html (original)
+++ deltaspike/site/trunk/content/documentation/cdiimp.html Thu Aug 18 00:36:56 
2016
@@ -1,588 +1,588 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Enable CDI For Your Java Environment
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay 

svn commit: r1756698 [8/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/index.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/index.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/index.html (original)
+++ deltaspike/site/trunk/content/documentation/index.html Thu Aug 18 00:36:56 
2016
@@ -1,327 +1,327 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Documentation
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay .variable{color:#036}
-.CodeRay .insert{background:#afa}
-.CodeRay .delete{background:#faa}
-.CodeRay .change{color:#aaf;background:#007}
-.CodeRay .head{color:#f8f;background:#505}
-.CodeRay .insert .insert{color:#080}
-.CodeRay .delete .delete{color:#800}
-.CodeRay .change .change{color:#66f}
-.CodeRay .head .head{color:#f4f}
-
-body {
-padding-top: 60px;
-padding-bottom: 40px;
-}
-
-.toc-like {
-border-radius: 6px;
-border: 1px solid #ccc;
-}
-
-.toc-like li {
-line-height: 30px;
-text-indent: 10px;
-}
-
-.toc-like li.custom-toc-header {
-font-weight: bold;
-background: #666;
-

svn commit: r1756698 [4/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/configure.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/configure.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/configure.html (original)
+++ deltaspike/site/trunk/content/documentation/configure.html Thu Aug 18 
00:36:56 2016
@@ -1,546 +1,546 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Configure DeltaSpike in Your Projects
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}

svn commit: r1756698 [11/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/modules.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/modules.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/modules.html (original)
+++ deltaspike/site/trunk/content/documentation/modules.html Thu Aug 18 
00:36:56 2016
@@ -1,350 +1,350 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Overview of DeltaSpike Modules
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay .variable{color:#036}
-.CodeRay .insert{background:#afa}
-.CodeRay .delete{background:#faa}
-.CodeRay .change{color:#aaf;background:#007}
-.CodeRay .head{color:#f8f;background:#505}
-.CodeRay .insert .insert{color:#080}
-.CodeRay .delete .delete{color:#800}
-.CodeRay .change .change{color:#66f}
-.CodeRay .head .head{color:#f4f}
-
-body {
-padding-top: 60px;
-padding-bottom: 40px;
-}
-
-.toc-like {
-border-radius: 6px;
-border: 1px solid #ccc;
-}
-
-.toc-like li {
-line-height: 30px;
-text-indent: 10px;
-}
-
-.toc-like li.custom-toc-header {
-font-weight: bold;
-

svn commit: r1756698 [16/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/servlet.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/servlet.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/servlet.html (original)
+++ deltaspike/site/trunk/content/documentation/servlet.html Thu Aug 18 
00:36:56 2016
@@ -1,712 +1,712 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Servlet Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}

svn commit: r1756698 [9/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/jpa.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/jpa.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/jpa.html (original)
+++ deltaspike/site/trunk/content/documentation/jpa.html Thu Aug 18 00:36:56 
2016
@@ -1,989 +1,989 @@
-
-
-
-
-
-
-
-
-
-
-
-
-JPA Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay 

svn commit: r1756698 [14/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/scheduler.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/scheduler.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/scheduler.html (original)
+++ deltaspike/site/trunk/content/documentation/scheduler.html Thu Aug 18 
00:36:56 2016
@@ -1,680 +1,680 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Scheduler Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay 

svn commit: r1756698 [17/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/snapshots.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/snapshots.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/snapshots.html (original)
+++ deltaspike/site/trunk/content/documentation/snapshots.html Thu Aug 18 
00:36:56 2016
@@ -1,396 +1,396 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Use DeltaSpike Snapshots
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay 

svn commit: r1756698 [10/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/jsf.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/jsf.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/jsf.html (original)
+++ deltaspike/site/trunk/content/documentation/jsf.html Thu Aug 18 00:36:56 
2016
@@ -1,3034 +1,3034 @@
-
-
-
-
-
-
-
-
-
-
-
-
-JSF Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay 

svn commit: r1756698 [6/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/core.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/core.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/core.html (original)
+++ deltaspike/site/trunk/content/documentation/core.html Thu Aug 18 00:36:56 
2016
@@ -1,2069 +1,2069 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Core Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay 

svn commit: r995349 - /websites/production/deltaspike/content/

2016-08-17 Thread johndament
Author: johndament
Date: Thu Aug 18 00:37:50 2016
New Revision: 995349

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r995348, websites/staging/deltaspike/trunk/content/



svn commit: r1756698 [1/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Author: johndament
Date: Thu Aug 18 00:36:56 2016
New Revision: 1756698

URL: http://svn.apache.org/viewvc?rev=1756698=rev
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
deltaspike/site/trunk/content/documentation/bean-validation.html
deltaspike/site/trunk/content/documentation/build.html
deltaspike/site/trunk/content/documentation/cdiimp.html
deltaspike/site/trunk/content/documentation/configuration.html
deltaspike/site/trunk/content/documentation/configure.html
deltaspike/site/trunk/content/documentation/container-control.html
deltaspike/site/trunk/content/documentation/core.html
deltaspike/site/trunk/content/documentation/data.html
deltaspike/site/trunk/content/documentation/index.html
deltaspike/site/trunk/content/documentation/jpa.html
deltaspike/site/trunk/content/documentation/jsf.html
deltaspike/site/trunk/content/documentation/modules.html
deltaspike/site/trunk/content/documentation/overview.html
deltaspike/site/trunk/content/documentation/partial-bean.html
deltaspike/site/trunk/content/documentation/projectstage.html
deltaspike/site/trunk/content/documentation/proxy.html
deltaspike/site/trunk/content/documentation/scheduler.html
deltaspike/site/trunk/content/documentation/security.html
deltaspike/site/trunk/content/documentation/servlet.html
deltaspike/site/trunk/content/documentation/snapshots.html
deltaspike/site/trunk/content/documentation/spi.html
deltaspike/site/trunk/content/documentation/test-control.html

Modified: deltaspike/site/trunk/content/documentation/bean-validation.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/bean-validation.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/bean-validation.html (original)
+++ deltaspike/site/trunk/content/documentation/bean-validation.html Thu Aug 18 
00:36:56 2016
@@ -1,410 +1,410 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Bean Validation Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js&quot</a>;>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js&quot</a>;>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js&quot</a>;>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
<a  rel="nofollow" href="http://foundation.zurb.com">http://foundation.zurb.com</a> */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.Co

svn commit: r1756698 [12/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/partial-bean.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/partial-bean.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/partial-bean.html (original)
+++ deltaspike/site/trunk/content/documentation/partial-bean.html Thu Aug 18 
00:36:56 2016
@@ -1,430 +1,430 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Partial-Bean Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay 

svn commit: r1756698 [7/18] - /deltaspike/site/trunk/content/documentation/

2016-08-17 Thread johndament
Modified: deltaspike/site/trunk/content/documentation/data.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/data.html?rev=1756698=1756697=1756698=diff
==
--- deltaspike/site/trunk/content/documentation/data.html (original)
+++ deltaspike/site/trunk/content/documentation/data.html Thu Aug 18 00:36:56 
2016
@@ -1,2388 +1,2388 @@
-
-
-
-
-
-
-
-
-
-
-
-
-Data Module
-
-
-
-
-https://deltaspike.apache.org/resources/css/bootstrap.css; 
rel="stylesheet">
-https://deltaspike.apache.org/resources/css/bootstrap-responsive.css; 
rel="stylesheet">
-https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css;
 rel="stylesheet">
-
-
-
-
-
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/stylesheets/jquery.tocify.min.css;
 rel="stylesheet">
-https://code.jquery.com/jquery-1.11.3.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";>
-https://cdnjs.cloudflare.com/ajax/libs/jquery.tocify/1.9.0/javascripts/jquery.tocify.min.js";>
-
-
-
-$(function () {
-$("#toc").tocify({
-scrollTo: 50,
-extendPage: true,
-context: "#doc-content",
-selectors: "h2,h3,h4,h5"
-});
-$(".fallback-toc").hide();
-});
-
-
-
-
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | 
http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay 
span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{font-weight: normal}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#80 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#80}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#00}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay 

[3/4] deltaspike git commit: DELTASPIKE-1191 Document duplications in gradle. Minor text clean up in test control as well.

2016-08-17 Thread johndament
DELTASPIKE-1191 Document duplications in gradle.  Minor text clean up in test 
control as well.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/f8cf5ae4
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/f8cf5ae4
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/f8cf5ae4

Branch: refs/heads/master
Commit: f8cf5ae43f741ffc99bef1da0a9612095769142f
Parents: bfcfea8
Author: John D. Ament 
Authored: Wed Aug 17 20:26:07 2016 -0400
Committer: John D. Ament 
Committed: Wed Aug 17 20:31:57 2016 -0400

--
 documentation/src/main/asciidoc/test-control.adoc | 16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/f8cf5ae4/documentation/src/main/asciidoc/test-control.adoc
--
diff --git a/documentation/src/main/asciidoc/test-control.adoc 
b/documentation/src/main/asciidoc/test-control.adoc
index c8aa277..ce877c8 100644
--- a/documentation/src/main/asciidoc/test-control.adoc
+++ b/documentation/src/main/asciidoc/test-control.adoc
@@ -427,7 +427,7 @@ constructor) and specify the target-type via `@TypedMock`.
 
 === JSF (via MyFaces-Test)
 
-add on of
+add one of
 
 * org.apache.deltaspike.testcontrol.impl.jsf.MockedJsf2TestContainer
 * org.apache.deltaspike.testcontrol.impl.jsf.MockedJsfTestContainerAdapter
@@ -436,7 +436,7 @@ add on of
 
 as content to
 
-/META-INF/services/org.apache.deltaspike.testcontrol.spi.ExternalContainer
+`/META-INF/services/org.apache.deltaspike.testcontrol.spi.ExternalContainer`
 
 (in your config-folder for tests, e.g. test/resources)
 
@@ -570,14 +570,18 @@ for resources to point to where the compiled code lives.  
This is an example of
 
--
 sourceSets {
 main {
-output.resourcesDir = 'build/classes/main'
-output.classesDir   = 'build/classes/main'
+output.resourcesDir = output.classesDir
 }
 test {
-output.resourcesDir = 'build/classes/test'
-output.classesDir   = 'build/classes/test'
+output.resourcesDir = output.classesDir
 }
 }
+
+// ensure you're excluding duplicates
+
+jar {
+duplicatesStrategy = 'exclude'
+}
 
--
 
 == SPI



[2/4] deltaspike git commit: DELTASPIKE-1189 Use Asciidoctor tables to render index.html

2016-08-17 Thread johndament
DELTASPIKE-1189 Use Asciidoctor tables to render index.html


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/bfcfea87
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/bfcfea87
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/bfcfea87

Branch: refs/heads/master
Commit: bfcfea87bb702691914c454f6d3ccd3103823580
Parents: 9b6da60
Author: Andrea Cosentino 
Authored: Sun Jul 31 09:58:43 2016 +0200
Committer: John D. Ament 
Committed: Wed Aug 17 20:29:31 2016 -0400

--
 site/src/main/asciidoc/index.adoc | 42 +++---
 1 file changed, 18 insertions(+), 24 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/bfcfea87/site/src/main/asciidoc/index.adoc
--
diff --git a/site/src/main/asciidoc/index.adoc 
b/site/src/main/asciidoc/index.adoc
index 005731f..a5a077b 100644
--- a/site/src/main/asciidoc/index.adoc
+++ b/site/src/main/asciidoc/index.adoc
@@ -1,12 +1,11 @@
 :notoc:
 
-= Apache Deltaspike
+[options="header,footer"]
+|===
+|| *About Apache DeltaSpike*
+| image:logo.png[image]
 
-image:logo.png[image]
-
-== About Apache DeltaSpike
-
-DeltaSpike consists of a number of portable CDI extensions that provide
+link:documentation/overview.html[View details »]| DeltaSpike consists of a 
number of portable CDI extensions that provide
 useful features for Java application developers.
 
 We will also ensure true portability! We are testing DeltaSpike on
@@ -14,35 +13,30 @@ different CDI implementations like Apache OpenWebBeans and 
JBoss Weld,
 and also on different Java EE servers like Apache Tomcat and TomEE,
 JBoss AS7, WildFly 8.x and 9.x, Oracle GlassFish 3.1+ and 4.x+, IBM
 WebSphere 8.x, Oracle WebLogic Server 12c, Jetty, and others.
+|===
 
-link:documentation/overview.html[View details »]
-
-== Latest Award
-
-In 2014, DeltaSpike became a Duke’s Choice Award winner. The Duke’s
+[options="header,footer"]
+|===
+|*Latest Award* | *News*
+| In 2014, DeltaSpike became a Duke’s Choice Award winner. The Duke’s
 Choice Awards celebrate extreme innovation in the world of Java
 technology and are granted to the most innovative projects using the
 Java platform.
 
-image:DukeChoice-100x176.png[image]
-
-== News
-
-Apache DeltaSpike 1.7.1 is now out!
+image:DukeChoice-100x176.png[image] | Apache DeltaSpike 1.7.1 is now out!
 
 link:/news.html#_27th_release_1_7_1_20_07_2016[View details »]
+|===
 
-== Modules
-
-CDI extensions created by the Apache DeltaSpike community are packaged
+[options="header,footer"]
+|===
+|*Modules* | *Examples*
+| CDI extensions created by the Apache DeltaSpike community are packaged
 as modules. They offer additional functionality not provided out of the
 box by the CDI spec (Security, JPA, …)
 
-link:/documentation/modules.html[View details »]
-
-== Examples
-
-See the following examples which are part of the project to discover how
+link:/documentation/modules.html[View details »]| See the following examples 
which are part of the project to discover how
 to use DeltaSpike project.
 
 link:examples.html[View details »]
+|===



[4/4] deltaspike git commit: DELTASPIKE-1189 Clean up homepage formatting.

2016-08-17 Thread johndament
DELTASPIKE-1189 Clean up homepage formatting.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/2c5c9d20
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/2c5c9d20
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/2c5c9d20

Branch: refs/heads/master
Commit: 2c5c9d203af89bbe856f133d0f2a7b7141d80704
Parents: f8cf5ae
Author: John D. Ament 
Authored: Wed Aug 17 20:34:43 2016 -0400
Committer: John D. Ament 
Committed: Wed Aug 17 20:34:43 2016 -0400

--
 site/src/main/asciidoc/index.adoc | 27 ---
 1 file changed, 16 insertions(+), 11 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c5c9d20/site/src/main/asciidoc/index.adoc
--
diff --git a/site/src/main/asciidoc/index.adoc 
b/site/src/main/asciidoc/index.adoc
index a5a077b..ca645ed 100644
--- a/site/src/main/asciidoc/index.adoc
+++ b/site/src/main/asciidoc/index.adoc
@@ -4,8 +4,7 @@
 |===
 || *About Apache DeltaSpike*
 | image:logo.png[image]
-
-link:documentation/overview.html[View details »]| DeltaSpike consists of a 
number of portable CDI extensions that provide
+| DeltaSpike consists of a number of portable CDI extensions that provide
 useful features for Java application developers.
 
 We will also ensure true portability! We are testing DeltaSpike on
@@ -13,29 +12,35 @@ different CDI implementations like Apache OpenWebBeans and 
JBoss Weld,
 and also on different Java EE servers like Apache Tomcat and TomEE,
 JBoss AS7, WildFly 8.x and 9.x, Oracle GlassFish 3.1+ and 4.x+, IBM
 WebSphere 8.x, Oracle WebLogic Server 12c, Jetty, and others.
+
+link:documentation/overview.html[View details »]
 |===
 
-[options="header,footer"]
+[cols="1,3,4",options="header,footer"]
 |===
-|*Latest Award* | *News*
+| |*Latest Award* | *Modules*
+| image:DukeChoice-100x176.png[image]
 | In 2014, DeltaSpike became a Duke’s Choice Award winner. The Duke’s
 Choice Awards celebrate extreme innovation in the world of Java
 technology and are granted to the most innovative projects using the
 Java platform.
 
-image:DukeChoice-100x176.png[image] | Apache DeltaSpike 1.7.1 is now out!
+| CDI extensions created by the Apache DeltaSpike community are packaged
+as modules. They offer additional functionality not provided out of the
+box by the CDI spec (Security, JPA, …)
+
+link:/documentation/modules.html[View details »]
 
-link:/news.html#_27th_release_1_7_1_20_07_2016[View details »]
 |===
 
 [options="header,footer"]
 |===
-|*Modules* | *Examples*
-| CDI extensions created by the Apache DeltaSpike community are packaged
-as modules. They offer additional functionality not provided out of the
-box by the CDI spec (Security, JPA, …)
+|*News* | *Examples*
+| Apache DeltaSpike 1.7.1 is now out!
+
+link:/news.html#_27th_release_1_7_1_20_07_2016[View details »]
 
-link:/documentation/modules.html[View details »]| See the following examples 
which are part of the project to discover how
+| See the following examples which are part of the project to discover how
 to use DeltaSpike project.
 
 link:examples.html[View details »]



[1/4] deltaspike git commit: DELTASPIKE-1189 Migrate index.html into git

2016-08-17 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master bb9abfcc5 -> 2c5c9d203


DELTASPIKE-1189 Migrate index.html into git


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/9b6da604
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/9b6da604
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/9b6da604

Branch: refs/heads/master
Commit: 9b6da6040525694c3d3105433fa201657af5dafb
Parents: bb9abfc
Author: Andrea Cosentino 
Authored: Sun Jul 24 19:12:55 2016 +0200
Committer: John D. Ament 
Committed: Wed Aug 17 20:28:34 2016 -0400

--
 .../main/asciidoc/images/DukeChoice-100x176.png | Bin 0 -> 23989 bytes
 site/src/main/asciidoc/images/logo.png  | Bin 0 -> 16935 bytes
 site/src/main/asciidoc/index.adoc   |  48 +++
 3 files changed, 48 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/9b6da604/site/src/main/asciidoc/images/DukeChoice-100x176.png
--
diff --git a/site/src/main/asciidoc/images/DukeChoice-100x176.png 
b/site/src/main/asciidoc/images/DukeChoice-100x176.png
new file mode 100644
index 000..5165be4
Binary files /dev/null and 
b/site/src/main/asciidoc/images/DukeChoice-100x176.png differ

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/9b6da604/site/src/main/asciidoc/images/logo.png
--
diff --git a/site/src/main/asciidoc/images/logo.png 
b/site/src/main/asciidoc/images/logo.png
new file mode 100644
index 000..45dc2a3
Binary files /dev/null and b/site/src/main/asciidoc/images/logo.png differ

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/9b6da604/site/src/main/asciidoc/index.adoc
--
diff --git a/site/src/main/asciidoc/index.adoc 
b/site/src/main/asciidoc/index.adoc
new file mode 100644
index 000..005731f
--- /dev/null
+++ b/site/src/main/asciidoc/index.adoc
@@ -0,0 +1,48 @@
+:notoc:
+
+= Apache Deltaspike
+
+image:logo.png[image]
+
+== About Apache DeltaSpike
+
+DeltaSpike consists of a number of portable CDI extensions that provide
+useful features for Java application developers.
+
+We will also ensure true portability! We are testing DeltaSpike on
+different CDI implementations like Apache OpenWebBeans and JBoss Weld,
+and also on different Java EE servers like Apache Tomcat and TomEE,
+JBoss AS7, WildFly 8.x and 9.x, Oracle GlassFish 3.1+ and 4.x+, IBM
+WebSphere 8.x, Oracle WebLogic Server 12c, Jetty, and others.
+
+link:documentation/overview.html[View details »]
+
+== Latest Award
+
+In 2014, DeltaSpike became a Duke’s Choice Award winner. The Duke’s
+Choice Awards celebrate extreme innovation in the world of Java
+technology and are granted to the most innovative projects using the
+Java platform.
+
+image:DukeChoice-100x176.png[image]
+
+== News
+
+Apache DeltaSpike 1.7.1 is now out!
+
+link:/news.html#_27th_release_1_7_1_20_07_2016[View details »]
+
+== Modules
+
+CDI extensions created by the Apache DeltaSpike community are packaged
+as modules. They offer additional functionality not provided out of the
+box by the CDI spec (Security, JPA, …)
+
+link:/documentation/modules.html[View details »]
+
+== Examples
+
+See the following examples which are part of the project to discover how
+to use DeltaSpike project.
+
+link:examples.html[View details »]



deltaspike git commit: DELTASPIKE-1192 Directly implement the other interfaces from abstract entity repository to avoid WELD-001117 warning.

2016-08-14 Thread johndament
Repository: deltaspike
Updated Branches:
  refs/heads/master 6d4fbd8e6 -> bb9abfcc5


DELTASPIKE-1192 Directly implement the other interfaces from abstract entity 
repository to avoid WELD-001117 warning.


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/bb9abfcc
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/bb9abfcc
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/bb9abfcc

Branch: refs/heads/master
Commit: bb9abfcc55a81096d6c3532349094574c3ac3154
Parents: 6d4fbd8
Author: John D. Ament 
Authored: Sun Aug 14 19:22:51 2016 -0400
Committer: John D. Ament 
Committed: Sun Aug 14 19:22:51 2016 -0400

--
 .../org/apache/deltaspike/data/api/AbstractEntityRepository.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/bb9abfcc/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractEntityRepository.java
--
diff --git 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractEntityRepository.java
 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractEntityRepository.java
index 933c136..529c474 100755
--- 
a/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractEntityRepository.java
+++ 
b/deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/AbstractEntityRepository.java
@@ -34,7 +34,8 @@ import javax.persistence.criteria.CriteriaQuery;
  */
 @Repository
 public abstract class AbstractEntityRepository
-implements EntityRepository
+implements EntityRepository, EntityPersistenceRepository,
+EntityCountRepository
 {
 
 /**



svn commit: r995135 - /websites/production/deltaspike/content/

2016-08-14 Thread johndament
Author: johndament
Date: Sun Aug 14 23:13:03 2016
New Revision: 995135

Log:
Publishing svnmucc operation to deltaspike site by johndament

Added:
websites/production/deltaspike/content/
  - copied from r995134, websites/staging/deltaspike/trunk/content/



  1   2   3   4   >