deltaspike git commit: DELTASPIKE-1039 LinkageError on container reboot

2015-12-09 Thread tandraschko
Repository: deltaspike
Updated Branches:
  refs/heads/master 080a62e11 -> 1ce13b856


DELTASPIKE-1039 LinkageError on container reboot

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

Branch: refs/heads/master
Commit: 1ce13b85647a5695667927d0692cc63560e36bd3
Parents: 080a62e
Author: tandraschko 
Authored: Wed Dec 9 10:38:00 2015 +0100
Committer: tandraschko 
Committed: Wed Dec 9 10:38:00 2015 +0100

--
 .../apache/deltaspike/core/util/ClassUtils.java | 32 
 .../proxy/api/DeltaSpikeProxyFactory.java   | 13 ++--
 2 files changed, 43 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/1ce13b85/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ClassUtils.java
--
diff --git 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ClassUtils.java
 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ClassUtils.java
index 044e6d9..af574c2 100644
--- 
a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ClassUtils.java
+++ 
b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ClassUtils.java
@@ -114,6 +114,19 @@ public abstract class ClassUtils
 {
 return (Class) tryToLoadClassForName(name);
 }
+
+/**
+ * Tries to load a class based on the given name and interface or abstract 
class.
+ * @param name name of the concrete class
+ * @param targetType target type (interface or abstract class)
+ * @param classLoader The {@link ClassLoader}.
+ * @param  current type
+ * @return loaded class or null if it isn't in the classpath
+ */
+public static  Class tryToLoadClassForName(String name, Class 
targetType, ClassLoader classLoader)
+{
+return (Class) tryToLoadClassForName(name, classLoader);
+}
 
 /**
  * Tries to load a class based on the given name
@@ -132,6 +145,25 @@ public abstract class ClassUtils
 return null;
 }
 }
+
+/**
+ * Tries to load a class based on the given name
+ * @param name name of the class
+ * @param classLoader The {@link ClassLoader}.
+ * @return loaded class or null if it isn't in the classpath
+ */
+public static Class tryToLoadClassForName(String name, ClassLoader 
classLoader)
+{
+try
+{
+return classLoader.loadClass(name);
+}
+catch (ClassNotFoundException e)
+{
+//do nothing - it's just a try
+return null;
+}
+}
 
 /**
  * Loads class for the given name

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/1ce13b85/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
--
diff --git 
a/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
 
b/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
index 1e19ab1..ddd9d00 100644
--- 
a/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
+++ 
b/deltaspike/modules/proxy/api/src/main/java/org/apache/deltaspike/proxy/api/DeltaSpikeProxyFactory.java
@@ -78,11 +78,20 @@ public abstract class DeltaSpikeProxyFactory
 return GeneratorHolder.generator;
 }
 
+public  Class resolveAlreadyDefinedProxyClass(Class targetClass)
+{
+Class proxyClass = 
ClassUtils.tryToLoadClassForName(constructProxyClassName(targetClass),
+targetClass,
+targetClass.getClassLoader());
+
+return proxyClass;
+}
+
 public  Class getProxyClass(BeanManager beanManager, Class 
targetClass,
 Class delegateInvocationHandlerClass)
 {
 // check if a proxy is already defined for this class
-Class proxyClass = 
ClassUtils.tryToLoadClassForName(constructProxyClassName(targetClass), 
targetClass);
+Class proxyClass = resolveAlreadyDefinedProxyClass(targetClass);
 if (proxyClass == null)
 {
 proxyClass = createProxyClass(beanManager, 
targetClass.getClassLoader(), targetClass,
@@ -95,7 +104,7 @@ public abstract class DeltaSpikeProxyFactory
 private synchronized  Class createProxyClass(BeanManager 
beanManager, ClassLoader classLoader,
 Class targetClass, Class 
delegateInvocationHandlerClass)
 {
-Class proxyClass = 

Jenkins build is still unstable: DeltaSpike OWB 1.1.6 » Apache DeltaSpike Scheduler-Module Impl #816

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.6 #816

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : DeltaSpike_Wildfly_8.2.1 » Apache DeltaSpike Scheduler-Module Impl #52

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.2.1 » Apache DeltaSpike Partial-Bean-Module Impl #52

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.2.1 » Apache DeltaSpike Security-Module Impl #52

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.2.1 » Apache DeltaSpike BeanValidation-Module Impl #52

2015-12-09 Thread Apache Jenkins Server
See 




Build failed in Jenkins: DeltaSpike_Wildfly_10 #27

2015-12-09 Thread Apache Jenkins Server
See 

Changes:

[tandraschko] DELTASPIKE-1039 LinkageError on container reboot

--
[...truncated 1640 lines...]
[INFO] Executing tasks

main:
[INFO] Executed tasks
ERROR: Could not find local repository for 2.2.1
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: 

[INFO] [checkstyle:check {execution: verify-style}]
[INFO] Starting audit...
Audit done.

[INFO] [install:install {execution: default-install}]
[INFO] Installing 

 to 
/home/jenkins/jenkins-slave/maven-repositories/1/org/apache/deltaspike/cdictrl/deltaspike-cdictrl-servlet/1.5.2-SNAPSHOT/deltaspike-cdictrl-servlet-1.5.2-SNAPSHOT.jar
[INFO] Installing 

 to 
/home/jenkins/jenkins-slave/maven-repositories/1/org/apache/deltaspike/cdictrl/deltaspike-cdictrl-servlet/1.5.2-SNAPSHOT/deltaspike-cdictrl-servlet-1.5.2-SNAPSHOT-sources.jar
[INFO] 
[INFO] Building Apache DeltaSpike Modules
[INFO]task-segment: [clean, install]
[INFO] 
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting 

[INFO] [bundle:cleanVersions {execution: versions}]
[WARNING] DEPRECATED [tasks]: Use target instead
[INFO] [antrun:run {execution: javadoc.resources}]
[WARNING] Parameter tasks is deprecated, use target instead
[INFO] Executing tasks

main:
[INFO] Executed tasks
[INFO] [remote-resources:process {execution: default}]
[INFO] [dependency:unpack {execution: unpack-wf}]
[INFO] Configured Artifact: org.wildfly:wildfly-dist:10.0.0.CR4:zip
[INFO] Unpacking 
/home/jenkins/jenkins-slave/maven-repositories/1/org/wildfly/wildfly-dist/10.0.0.CR4/wildfly-dist-10.0.0.CR4.zip
 to /tmp/deltaspike-arquillian-containers with includes "" and excludes ""
[INFO] [site:attach-descriptor {execution: default-attach-descriptor}]
[INFO] [jar:test-jar {execution: default}]
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: 

[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] [bundle:cleanVersions {execution: versions}]
[WARNING] DEPRECATED [tasks]: Use target instead
[INFO] [antrun:run {execution: javadoc.resources}]
[WARNING] Parameter tasks is deprecated, use target instead
[INFO] Executing tasks

main:
[INFO] Executed tasks
ERROR: Could not find local repository for 2.2.1
[INFO] [source:jar {execution: attach-sources}]
[INFO] [checkstyle:check {execution: verify-style}]
[INFO] Starting audit...
Audit done.

[INFO] [install:install {execution: default-install}]
[INFO] Installing 

 to 
/home/jenkins/jenkins-slave/maven-repositories/1/org/apache/deltaspike/modules/modules-project/1.5.2-SNAPSHOT/modules-project-1.5.2-SNAPSHOT.pom
[INFO] Installing 

 to 
/home/jenkins/jenkins-slave/maven-repositories/1/org/apache/deltaspike/modules/modules-project/1.5.2-SNAPSHOT/modules-project-1.5.2-SNAPSHOT-tests.jar
[INFO] 
[INFO] Building Apache DeltaSpike Proxy-Module
[INFO]task-segment: [clean, install]
[INFO] 
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting 

[INFO] [bundle:cleanVersions {execution: versions}]
[WARNING] DEPRECATED [tasks]: Use target instead
[INFO] [antrun:run {execution: javadoc.resources}]
[WARNING] Parameter tasks is deprecated, use target instead
[INFO] Executing tasks

main:
[INFO] Executed tasks
[INFO] [remote-resources:process {execution: default}]
[INFO] [dependency:unpack {execution: unpack-wf}]
[INFO] Configured Artifact: org.wildfly:wildfly-dist:10.0.0.CR4:zip
[INFO] Unpacking 
/home/jenkins/jenkins-slave/maven-repositories/1/org/wildfly/wildfly-dist/10.0.0.CR4/wildfly-dist-10.0.0.CR4.zip
 to /tmp/deltaspike-arquillian-containers with includes "" and excludes ""
[INFO] [site:attach-descriptor {execution: default-attach-descriptor}]
[INFO] 

Jenkins build is still unstable: DeltaSpike_Wildfly_10 » Apache DeltaSpike Core-Implementation #27

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.2.0 » Apache DeltaSpike Scheduler-Module Impl #794

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 #554

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: Deltaspike OWB 1.1.9-SNAPSHOT » Apache DeltaSpike Scheduler-Module Impl #878

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.2.1 #52

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 » Apache DeltaSpike Scheduler-Module Impl #554

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 » Apache DeltaSpike Partial-Bean-Module Impl #554

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 » Apache DeltaSpike Core-Implementation #554

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: Deltaspike OWB 1.1.9-SNAPSHOT #878

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : DeltaSpike_Wildfly_8.1 » Apache DeltaSpike Security-Module Impl #658

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.1 » Apache DeltaSpike Partial-Bean-Module Impl #658

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.1 » Apache DeltaSpike Servlet-Module Impl #658

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.1 » Apache DeltaSpike Data-Module Impl #658

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.1 » Apache DeltaSpike BeanValidation-Module Impl #658

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_8.1 #658

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike OWB 1.2.0 #794

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike OWB 1.1.5 » Apache DeltaSpike Scheduler-Module Impl #817

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.6 (JDK 1.7) » Apache DeltaSpike Scheduler-Module Impl #839

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.6 (JDK 1.7) #839

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.5 #817

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike OWB 1.1.7 » Apache DeltaSpike Scheduler-Module Impl #811

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.7 #811

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike OWB 1.1.8 » Apache DeltaSpike Scheduler-Module Impl #990

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.8 #990

2015-12-09 Thread Apache Jenkins Server
See 



svn commit: r975129 - in /websites/staging/deltaspike/trunk/content: ./ documentation/build.html documentation/configure.html documentation/jsf.html documentation/scheduler.html documentation/snapshot

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:02:15 2015
New Revision: 975129

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/documentation/build.html
websites/staging/deltaspike/trunk/content/documentation/configure.html
websites/staging/deltaspike/trunk/content/documentation/jsf.html
websites/staging/deltaspike/trunk/content/documentation/scheduler.html
websites/staging/deltaspike/trunk/content/documentation/snapshots.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:02:15 2015
@@ -1 +1 @@
-1718991
+1718992

Modified: websites/staging/deltaspike/trunk/content/documentation/build.html
==
--- websites/staging/deltaspike/trunk/content/documentation/build.html 
(original)
+++ websites/staging/deltaspike/trunk/content/documentation/build.html Thu Dec 
10 00:02:15 2015
@@ -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.5.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.5.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.5.1/
+$ cd 
/path/to/deltaspike-project-1.5.2/
 $ mvn clean install
 
 

Modified: websites/staging/deltaspike/trunk/content/documentation/configure.html
==
--- websites/staging/deltaspike/trunk/content/documentation/configure.html 
(original)
+++ websites/staging/deltaspike/trunk/content/documentation/configure.html Thu 
Dec 10 00:02:15 2015
@@ -309,7 +309,7 @@ You can also opt to use the lastest Delt
 
 
 properties
-deltaspike.version1.5.1/deltaspike.version
+deltaspike.version1.5.2/deltaspike.version
 /properties
 
 

Modified: websites/staging/deltaspike/trunk/content/documentation/jsf.html
==
--- websites/staging/deltaspike/trunk/content/documentation/jsf.html (original)
+++ websites/staging/deltaspike/trunk/content/documentation/jsf.html Thu Dec 10 
00:02:15 2015
@@ -434,9 +434,11 @@ not feasible as general solution.
 
 CLIENTWINDOW
 
-Each GET request results in an intermediate small html page which checks
-if the browser tab fits the requested windowId. When the windowId is
-valid, a unique token (called dsrid) will be generated for the 
current
+Each GET request results in an intermediate small HTML page (aka 
"windowhandler").
+If the window.name is empty, a new windowId will stored into window.name.
+If the window.name is already set, the windowhandler checks if the
+window.name equals the requested windowId. When the windowId is valid, a unique
+token (called dsrid) will be generated for the current
 request and added to the URL. In addition a cookie with with the
 dsrid/dswid will be added. On the server side, the verified windowId
 will be extracted from the cookie. For POST request detection, the
@@ -466,7 +468,7 @@ bgcolor which matches your application.
 also got rid of this flickering by storing away a 'screenshot' of the
 first page in onclick() and immediately restore this 'screenshot' on the
 intermediate windowhandler.html page. Technically we do this by storing
-away the and css information into the html5 localStorage and restore them on 
the
+away the HTML DOM tree and css information into the html5 localStorage and 
restore them on the
 intermediate page. We also introduced a WindowConfig which is able to
 parse a request and decide upon the UserAgent or any other information
 if a client will get an intermediate page or if he gets the result page
@@ -481,7 +483,7 @@ directly.
 Reduce windowhandler.html 
flickering
 
 Per default we only overwrite the onclick events of all links on the 
current page to make a 'screenshot' between requests.
-We also provide a mechanism to store the 'screenshot' on ajax requests (e.g. 
Post-Redirect-Get via p:remoteCommand or other components) or on every button 
onclick:
+We also provide a mechanism to store the 'screenshot' on every button 
onclick:
 
 
 
@@ -489,12 +491,6 @@ We also provide a 

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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:02:01 2015
New Revision: 1718992

URL: http://svn.apache.org/viewvc?rev=1718992=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/jsf.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=1718992=1718991=1718992=diff
==
--- deltaspike/site/trunk/content/documentation/build.html (original)
+++ deltaspike/site/trunk/content/documentation/build.html Thu Dec 10 00:02:01 
2015
@@ -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.5.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.5.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.5.1/
+$ cd 
/path/to/deltaspike-project-1.5.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=1718992=1718991=1718992=diff
==
--- deltaspike/site/trunk/content/documentation/configure.html (original)
+++ deltaspike/site/trunk/content/documentation/configure.html Thu Dec 10 
00:02:01 2015
@@ -309,7 +309,7 @@ You can also opt to use the lastest Delt
 
 
 properties
-deltaspike.version1.5.1/deltaspike.version
+deltaspike.version1.5.2/deltaspike.version
 /properties
 
 

Modified: deltaspike/site/trunk/content/documentation/jsf.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/jsf.html?rev=1718992=1718991=1718992=diff
==
--- deltaspike/site/trunk/content/documentation/jsf.html (original)
+++ deltaspike/site/trunk/content/documentation/jsf.html Thu Dec 10 00:02:01 
2015
@@ -434,9 +434,11 @@ not feasible as general solution.
 
 CLIENTWINDOW
 
-Each GET request results in an intermediate small html page which checks
-if the browser tab fits the requested windowId. When the windowId is
-valid, a unique token (called dsrid) will be generated for the 
current
+Each GET request results in an intermediate small HTML page (aka 
"windowhandler").
+If the window.name is empty, a new windowId will stored into window.name.
+If the window.name is already set, the windowhandler checks if the
+window.name equals the requested windowId. When the windowId is valid, a unique
+token (called dsrid) will be generated for the current
 request and added to the URL. In addition a cookie with with the
 dsrid/dswid will be added. On the server side, the verified windowId
 will be extracted from the cookie. For POST request detection, the
@@ -466,7 +468,7 @@ bgcolor which matches your application.
 also got rid of this flickering by storing away a 'screenshot' of the
 first page in onclick() and immediately restore this 'screenshot' on the
 intermediate windowhandler.html page. Technically we do this by storing
-away the and css information into the html5 localStorage and restore them on 
the
+away the HTML DOM tree and css information into the html5 localStorage and 
restore them on the
 intermediate page. We also introduced a WindowConfig which is able to
 parse a request and decide upon the UserAgent or any other information
 if a client will get an intermediate page or if he gets the result page
@@ -481,7 +483,7 @@ directly.
 Reduce windowhandler.html 
flickering
 
 Per default we only overwrite the onclick events of all links on the 
current page to make a 'screenshot' between requests.
-We also provide a mechanism to store the 'screenshot' on ajax requests (e.g. 
Post-Redirect-Get via p:remoteCommand or other components) or on every button 
onclick:
+We also provide a mechanism to store the 'screenshot' on every button 
onclick:
 
 
 
@@ -489,12 +491,6 @@ We also provide a mechanism to store the
 public class 

svn commit: r975128 - in /websites/staging/deltaspike/trunk/content: ./ staging/download.html staging/examples.html staging/external.html staging/javadoc.html staging/news.html

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:01:37 2015
New Revision: 975128

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/staging/download.html
websites/staging/deltaspike/trunk/content/staging/examples.html
websites/staging/deltaspike/trunk/content/staging/external.html
websites/staging/deltaspike/trunk/content/staging/javadoc.html
websites/staging/deltaspike/trunk/content/staging/news.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:01:37 2015
@@ -1 +1 @@
-1718990
+1718991

Modified: websites/staging/deltaspike/trunk/content/staging/download.html
==
--- websites/staging/deltaspike/trunk/content/staging/download.html (original)
+++ websites/staging/deltaspike/trunk/content/staging/download.html Thu Dec 10 
00:01:37 2015
@@ -256,7 +256,7 @@ table.CodeRay td.code>pre{padding:0}
 Latest Release
 
 
-v1.5.1
+v1.5.2
 
 
 
@@ -266,28 +266,28 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.zip;>distribution-full-1.5.1.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.zip;>distribution-full-1.5.2.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.asc;>distribution-full-1.5.1.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc;>distribution-full-1.5.2.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.md5;>distribution-full-1.5.1.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.md5;>distribution-full-1.5.2.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.sha1;>distribution-full-1.5.1.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.sha1;>distribution-full-1.5.2.zip.sha1
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz;>distribution-full-1.5.1.tar.gz
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz;>distribution-full-1.5.2.tar.gz
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.asc;>distribution-full-1.5.1.tar.gz.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc;>distribution-full-1.5.2.tar.gz.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.md5;>distribution-full-1.5.1.tar.gz.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5;>distribution-full-1.5.2.tar.gz.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.sha1;>distribution-full-1.5.1.tar.gz.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1;>distribution-full-1.5.2.tar.gz.sha1
 
 
 
@@ -299,16 +299,16 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip;>deltaspike-1.5.1-source-release.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip;>deltaspike-1.5.2-source-release.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.asc;>deltaspike-1.5.1-source-release.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc;>deltaspike-1.5.2-source-release.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.md5;>deltaspike-1.5.1-source-release.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5;>deltaspike-1.5.2-source-release.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.sha1;>deltaspike-1.5.1-source-release.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1;>deltaspike-1.5.2-source-release.zip.sha1
 
 
 
@@ -351,7 +351,7 @@ the signatures using e.g.:
 
 
 $ pgpk -a KEYS
-$ pgpv deltaspike-project-1.5.1-source-release.zip.asc
+$ pgpv deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -360,7 +360,7 @@ $ pgpv deltaspike-project-1.5.1-source-r
 
 
 $ pgp -ka KEYS
-$ pgp deltaspike-project-1.5.1-source-release.zip.asc
+$ pgp deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -369,7 +369,7 @@ $ pgp deltaspike-project-1.5.1-source-re
 
 
 $ gpg --import KEYS
-$ gpg --verify deltaspike-project-1.5.1-source-release.zip.asc
+$ gpg --verify deltaspike-project-1.5.2-source-release.zip.asc
 
 
 

Modified: websites/staging/deltaspike/trunk/content/staging/examples.html
==
--- 

Jenkins build is still unstable: DeltaSpike OWB 1.1.6 (JDK 1.7) #840

2015-12-09 Thread Apache Jenkins Server
See 




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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:16:34 2015
New Revision: 1718996

URL: http://svn.apache.org/viewvc?rev=1718996=rev
Log:
updated version

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=1718996=1718995=1718996=diff
==
--- deltaspike/site/trunk/content/index.html (original)
+++ deltaspike/site/trunk/content/index.html Thu Dec 10 00:16:34 2015
@@ -25,7 +25,7 @@
 
 News
 Apache DeltaSpike 1.5.2 is now out!
-View details »
+View details »
 
 
 




Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 » Apache DeltaSpike Scheduler-Module Impl #555

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 » Apache DeltaSpike Core-Implementation #555

2015-12-09 Thread Apache Jenkins Server
See 




svn commit: r975133 - in /websites/staging/deltaspike/trunk/content: ./ index.html

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:16:47 2015
New Revision: 975133

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/index.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:16:47 2015
@@ -1 +1 @@
-1718995
+1718996

Modified: websites/staging/deltaspike/trunk/content/index.html
==
--- websites/staging/deltaspike/trunk/content/index.html (original)
+++ websites/staging/deltaspike/trunk/content/index.html Thu Dec 10 00:16:47 
2015
@@ -103,7 +103,7 @@
 
 News
 Apache DeltaSpike 1.5.2 is now out!
-View details »
+View details »
 
 
 




Jenkins build became unstable: DeltaSpike Weld 1.1.28 #193

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build became unstable: DeltaSpike Weld 1.1.28 » Apache DeltaSpike CDI Servlet-ContainerControl #193

2015-12-09 Thread Apache Jenkins Server
See 




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

2015-12-09 Thread gpetracek
Repository: deltaspike
Updated Branches:
  refs/heads/master 1ce13b856 -> 603dbc6d8


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


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

Branch: refs/heads/master
Commit: 7c2f99813a9c8a0a55f6120b0495b2f046ffac3f
Parents: cd6ea39
Author: gpetracek 
Authored: Sun Dec 6 17:03:56 2015 +0100
Committer: gpetracek 
Committed: Sun Dec 6 17:03:56 2015 +0100

--
 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  | 4 ++--
 deltaspike/dist/full/pom.xml | 2 +-
 deltaspike/dist/pom.xml  | 4 ++--
 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/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 Push Summary

2015-12-09 Thread gpetracek
Repository: deltaspike
Updated Tags:  refs/tags/deltaspike-1.5.2 [created] 79a573f61


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

2015-12-09 Thread gpetracek
[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/730bf21d
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/730bf21d
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/730bf21d

Branch: refs/heads/master
Commit: 730bf21dde3076bce4e0f3decc5fed91b1ae0aa9
Parents: 7c2f998
Author: gpetracek 
Authored: Sun Dec 6 17:03:58 2015 +0100
Committer: gpetracek 
Committed: Sun Dec 6 17:03:58 2015 +0100

--
 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  | 4 ++--
 deltaspike/dist/full/pom.xml | 2 +-
 deltaspike/dist/pom.xml  | 4 ++--
 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/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| 4 ++--
 pom.xml

[3/3] deltaspike git commit: Merge branch ds-1.5.2

2015-12-09 Thread gpetracek
Merge branch ds-1.5.2


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

Branch: refs/heads/master
Commit: 603dbc6d80d4179065567fa297cc23b1eb01e567
Parents: 730bf21 1ce13b8
Author: gpetracek 
Authored: Wed Dec 9 23:55:52 2015 +0100
Committer: gpetracek 
Committed: Wed Dec 9 23:55:52 2015 +0100

--
 .../core/util/ClassDeactivationUtils.java   |  6 +++-
 .../apache/deltaspike/core/util/ClassUtils.java | 32 
 .../proxy/api/DeltaSpikeProxyFactory.java   | 13 ++--
 3 files changed, 48 insertions(+), 3 deletions(-)
--




[1/2] deltaspike git commit: DELTASPIKE-1041 information about v1.5.2

2015-12-09 Thread gpetracek
Repository: deltaspike
Updated Branches:
  refs/heads/master 603dbc6d8 -> 5b4fd56fd


DELTASPIKE-1041 information about v1.5.2


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

Branch: refs/heads/master
Commit: 0dee83bf1e24e39aa5083134d8b916b3f140e68b
Parents: 603dbc6
Author: gpetracek 
Authored: Thu Dec 10 00:13:52 2015 +0100
Committer: gpetracek 
Committed: Thu Dec 10 00:14:48 2015 +0100

--
 pom.xml  | 4 ++--
 site/src/main/asciidoc/news.adoc | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0dee83bf/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 2f35373..2bd6e6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,8 +47,8 @@
 
 
 1.5.2
-
1.5.1
-
1.5.2-SNAPSHOT
+
1.5.2
+
1.5.3-SNAPSHOT
 
${project.build.directory}/co-site
 
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/0dee83bf/site/src/main/asciidoc/news.adoc
--
diff --git a/site/src/main/asciidoc/news.adoc b/site/src/main/asciidoc/news.adoc
index 8779d93..652f844 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.
 
+== 21th Release (1.5.2) (06.12.2015)
+
+The Apache DeltaSpike team is pleased to announce the 21th release
+(v1.5.2).
+
 == 20th Release (1.5.1) (24.10.2015)
 
 The Apache DeltaSpike team is pleased to announce the 20th release



Jenkins build became unstable: DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Scheduler-Module Impl #140

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.2.0 #795

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build became unstable: DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Data-Module Impl #140

2015-12-09 Thread Apache Jenkins Server
See 




svn commit: r1718991 - in /deltaspike/site/trunk/content/staging: download.html examples.html external.html javadoc.html news.html

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:01:11 2015
New Revision: 1718991

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

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

Modified: deltaspike/site/trunk/content/staging/download.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/download.html?rev=1718991=1718990=1718991=diff
==
--- deltaspike/site/trunk/content/staging/download.html (original)
+++ deltaspike/site/trunk/content/staging/download.html Thu Dec 10 00:01:11 2015
@@ -256,7 +256,7 @@ table.CodeRay td.code>pre{padding:0}
 Latest Release
 
 
-v1.5.1
+v1.5.2
 
 
 
@@ -266,28 +266,28 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.zip;>distribution-full-1.5.1.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.zip;>distribution-full-1.5.2.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.asc;>distribution-full-1.5.1.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc;>distribution-full-1.5.2.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.md5;>distribution-full-1.5.1.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.md5;>distribution-full-1.5.2.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.sha1;>distribution-full-1.5.1.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.sha1;>distribution-full-1.5.2.zip.sha1
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz;>distribution-full-1.5.1.tar.gz
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz;>distribution-full-1.5.2.tar.gz
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.asc;>distribution-full-1.5.1.tar.gz.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc;>distribution-full-1.5.2.tar.gz.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.md5;>distribution-full-1.5.1.tar.gz.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5;>distribution-full-1.5.2.tar.gz.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.sha1;>distribution-full-1.5.1.tar.gz.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1;>distribution-full-1.5.2.tar.gz.sha1
 
 
 
@@ -299,16 +299,16 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip;>deltaspike-1.5.1-source-release.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip;>deltaspike-1.5.2-source-release.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.asc;>deltaspike-1.5.1-source-release.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc;>deltaspike-1.5.2-source-release.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.md5;>deltaspike-1.5.1-source-release.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5;>deltaspike-1.5.2-source-release.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.sha1;>deltaspike-1.5.1-source-release.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1;>deltaspike-1.5.2-source-release.zip.sha1
 
 
 
@@ -351,7 +351,7 @@ the signatures using e.g.:
 
 
 $ pgpk -a KEYS
-$ pgpv deltaspike-project-1.5.1-source-release.zip.asc
+$ pgpv deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -360,7 +360,7 @@ $ pgpv deltaspike-project-1.5.1-source-r
 
 
 $ pgp -ka KEYS
-$ pgp deltaspike-project-1.5.1-source-release.zip.asc
+$ pgp deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -369,7 +369,7 @@ $ pgp deltaspike-project-1.5.1-source-re
 
 
 $ gpg --import KEYS
-$ gpg --verify deltaspike-project-1.5.1-source-release.zip.asc
+$ gpg --verify deltaspike-project-1.5.2-source-release.zip.asc
 
 
 

Modified: deltaspike/site/trunk/content/staging/examples.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/examples.html?rev=1718991=1718990=1718991=diff
==
--- deltaspike/site/trunk/content/staging/examples.html (original)
+++ deltaspike/site/trunk/content/staging/examples.html Thu Dec 10 00:01:11 

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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:00:49 2015
New Revision: 1718990

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

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

Modified: deltaspike/site/trunk/content/staging/documentation/build.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/build.html?rev=1718990=1718989=1718990=diff
==
--- deltaspike/site/trunk/content/staging/documentation/build.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/build.html Thu Dec 10 
00:00:49 2015
@@ -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.5.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.5.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.5.1/
+$ cd 
/path/to/deltaspike-project-1.5.2/
 $ mvn clean install
 
 

Modified: deltaspike/site/trunk/content/staging/documentation/configure.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/configure.html?rev=1718990=1718989=1718990=diff
==
--- deltaspike/site/trunk/content/staging/documentation/configure.html 
(original)
+++ deltaspike/site/trunk/content/staging/documentation/configure.html Thu Dec 
10 00:00:49 2015
@@ -309,7 +309,7 @@ You can also opt to use the lastest Delt
 
 
 properties
-deltaspike.version1.5.1/deltaspike.version
+deltaspike.version1.5.2/deltaspike.version
 /properties
 
 

Modified: deltaspike/site/trunk/content/staging/documentation/jsf.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/jsf.html?rev=1718990=1718989=1718990=diff
==
--- deltaspike/site/trunk/content/staging/documentation/jsf.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/jsf.html Thu Dec 10 
00:00:49 2015
@@ -434,9 +434,11 @@ not feasible as general solution.
 
 CLIENTWINDOW
 
-Each GET request results in an intermediate small html page which checks
-if the browser tab fits the requested windowId. When the windowId is
-valid, a unique token (called dsrid) will be generated for the 
current
+Each GET request results in an intermediate small HTML page (aka 
"windowhandler").
+If the window.name is empty, a new windowId will stored into window.name.
+If the window.name is already set, the windowhandler checks if the
+window.name equals the requested windowId. When the windowId is valid, a unique
+token (called dsrid) will be generated for the current
 request and added to the URL. In addition a cookie with with the
 dsrid/dswid will be added. On the server side, the verified windowId
 will be extracted from the cookie. For POST request detection, the
@@ -466,7 +468,7 @@ bgcolor which matches your application.
 also got rid of this flickering by storing away a 'screenshot' of the
 first page in onclick() and immediately restore this 'screenshot' on the
 intermediate windowhandler.html page. Technically we do this by storing
-away the and css information into the html5 localStorage and restore them on 
the
+away the HTML DOM tree and css information into the html5 localStorage and 
restore them on the
 intermediate page. We also introduced a WindowConfig which is able to
 parse a request and decide upon the UserAgent or any other information
 if a client will get an intermediate page or if he gets the result page
@@ -481,7 +483,7 @@ directly.
 Reduce windowhandler.html 
flickering
 
 Per default we only overwrite the onclick events of all links on the 
current page to make a 'screenshot' between requests.
-We also provide a mechanism to store the 'screenshot' on ajax requests (e.g. 
Post-Redirect-Get via p:remoteCommand or other components) or on every button 
onclick:
+We also provide a mechanism to store 

Jenkins build is still unstable: DeltaSpike OWB 1.1.6 (JDK 1.7) » Apache DeltaSpike Scheduler-Module Impl #840

2015-12-09 Thread Apache Jenkins Server
See 




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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:14:47 2015
New Revision: 1718995

URL: http://svn.apache.org/viewvc?rev=1718995=rev
Log:
updated version

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=1718995=1718994=1718995=diff
==
--- deltaspike/site/trunk/content/index.html (original)
+++ deltaspike/site/trunk/content/index.html Thu Dec 10 00:14:47 2015
@@ -24,7 +24,7 @@
 
 
 News
-Apache DeltaSpike 1.5.1 is now out!
+Apache DeltaSpike 1.5.2 is now out!
 View details »
 
 




svn commit: r975132 - in /websites/staging/deltaspike/trunk/content: ./ index.html

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:15:03 2015
New Revision: 975132

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/index.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:15:03 2015
@@ -1 +1 @@
-1718994
+1718995

Modified: websites/staging/deltaspike/trunk/content/index.html
==
--- websites/staging/deltaspike/trunk/content/index.html (original)
+++ websites/staging/deltaspike/trunk/content/index.html Thu Dec 10 00:15:03 
2015
@@ -102,7 +102,7 @@
 
 
 News
-Apache DeltaSpike 1.5.1 is now out!
+Apache DeltaSpike 1.5.2 is now out!
 View details »
 
 




Jenkins build became unstable: DeltaSpike_Wildfly_8.2 #489

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build became unstable: DeltaSpike_Wildfly_8.2 » Apache DeltaSpike Servlet-Module Impl #489

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build became unstable: DeltaSpike_Wildfly_8.2 » Apache DeltaSpike JSF-Module Impl #489

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build became unstable: DeltaSpike_Wildfly_8.2 » Apache DeltaSpike Data-Module Impl #489

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build became unstable: DeltaSpike_GF4.1 » Apache DeltaSpike Security-Module Impl #267

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build became unstable: DeltaSpike_GF4.1 #267

2015-12-09 Thread Apache Jenkins Server
See 



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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:04:48 2015
New Revision: 1718993

URL: http://svn.apache.org/viewvc?rev=1718993=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
deltaspike/site/trunk/content/news.html

Modified: deltaspike/site/trunk/content/download.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/download.html?rev=1718993=1718992=1718993=diff
==
--- deltaspike/site/trunk/content/download.html (original)
+++ deltaspike/site/trunk/content/download.html Thu Dec 10 00:04:48 2015
@@ -256,7 +256,7 @@ table.CodeRay td.code>pre{padding:0}
 Latest Release
 
 
-v1.5.1
+v1.5.2
 
 
 
@@ -266,28 +266,28 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.zip;>distribution-full-1.5.1.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.zip;>distribution-full-1.5.2.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.asc;>distribution-full-1.5.1.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc;>distribution-full-1.5.2.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.md5;>distribution-full-1.5.1.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.md5;>distribution-full-1.5.2.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.sha1;>distribution-full-1.5.1.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.sha1;>distribution-full-1.5.2.zip.sha1
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz;>distribution-full-1.5.1.tar.gz
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz;>distribution-full-1.5.2.tar.gz
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.asc;>distribution-full-1.5.1.tar.gz.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc;>distribution-full-1.5.2.tar.gz.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.md5;>distribution-full-1.5.1.tar.gz.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5;>distribution-full-1.5.2.tar.gz.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.sha1;>distribution-full-1.5.1.tar.gz.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1;>distribution-full-1.5.2.tar.gz.sha1
 
 
 
@@ -299,16 +299,16 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip;>deltaspike-1.5.1-source-release.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip;>deltaspike-1.5.2-source-release.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.asc;>deltaspike-1.5.1-source-release.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc;>deltaspike-1.5.2-source-release.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.md5;>deltaspike-1.5.1-source-release.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5;>deltaspike-1.5.2-source-release.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.sha1;>deltaspike-1.5.1-source-release.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1;>deltaspike-1.5.2-source-release.zip.sha1
 
 
 
@@ -351,7 +351,7 @@ the signatures using e.g.:
 
 
 $ pgpk -a KEYS
-$ pgpv deltaspike-project-1.5.1-source-release.zip.asc
+$ pgpv deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -360,7 +360,7 @@ $ pgpv deltaspike-project-1.5.1-source-r
 
 
 $ pgp -ka KEYS
-$ pgp deltaspike-project-1.5.1-source-release.zip.asc
+$ pgp deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -369,7 +369,7 @@ $ pgp deltaspike-project-1.5.1-source-re
 
 
 $ gpg --import KEYS
-$ gpg --verify deltaspike-project-1.5.1-source-release.zip.asc
+$ gpg --verify deltaspike-project-1.5.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=1718993=1718992=1718993=diff
==
--- deltaspike/site/trunk/content/examples.html (original)
+++ deltaspike/site/trunk/content/examples.html Thu Dec 10 00:04:48 2015
@@ -255,7 +255,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-A collection of ready-to-build Maven-based projects are provided 

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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:52:30 2015
New Revision: 1718998

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

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

Modified: deltaspike/site/trunk/content/staging/news.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/news.html?rev=1718998=1718997=1718998=diff
==
--- deltaspike/site/trunk/content/staging/news.html (original)
+++ deltaspike/site/trunk/content/staging/news.html Thu Dec 10 00:52:30 2015
@@ -253,7 +253,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-21th Release (1.5.2) (06.12.2015)
+21st Release (1.5.2) (06.12.2015)
 
 
 The Apache DeltaSpike team is pleased to announce the 21th release




Jenkins build is still unstable: Deltaspike OWB 1.1.9-SNAPSHOT #879

2015-12-09 Thread Apache Jenkins Server
See 



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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:54:30 2015
New Revision: 1718999

URL: http://svn.apache.org/viewvc?rev=1718999=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=1718999=1718998=1718999=diff
==
--- deltaspike/site/trunk/content/news.html (original)
+++ deltaspike/site/trunk/content/news.html Thu Dec 10 00:54:30 2015
@@ -253,7 +253,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-21th Release (1.5.2) (06.12.2015)
+21st Release (1.5.2) (06.12.2015)
 
 
 The Apache DeltaSpike team is pleased to announce the 21th release




svn commit: r975137 - in /websites/staging/deltaspike/trunk/content: ./ news.html

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:54:49 2015
New Revision: 975137

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/news.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:54:49 2015
@@ -1 +1 @@
-1718998
+1718999

Modified: websites/staging/deltaspike/trunk/content/news.html
==
--- websites/staging/deltaspike/trunk/content/news.html (original)
+++ websites/staging/deltaspike/trunk/content/news.html Thu Dec 10 00:54:49 2015
@@ -253,7 +253,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-21th Release (1.5.2) (06.12.2015)
+21st Release (1.5.2) (06.12.2015)
 
 
 The Apache DeltaSpike team is pleased to announce the 21th release




Jenkins build is still unstable: DeltaSpike OWB 1.1.7 » Apache DeltaSpike Scheduler-Module Impl #812

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.7 #812

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike_Wildfly_10 » Apache DeltaSpike Core-Implementation #28

2015-12-09 Thread Apache Jenkins Server
See 




[2/2] deltaspike git commit: DELTASPIKE-1038 updated release notes for v1.5.2

2015-12-09 Thread gpetracek
DELTASPIKE-1038 updated release notes for v1.5.2


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

Branch: refs/heads/master
Commit: 5b4fd56fd4fe822f52d0e4ebb09ad185dce07dc6
Parents: 0dee83b
Author: gpetracek 
Authored: Thu Dec 10 00:02:20 2015 +0100
Committer: gpetracek 
Committed: Thu Dec 10 00:14:49 2015 +0100

--
 deltaspike/readme/ReleaseNotes-1.5.2.txt | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/5b4fd56f/deltaspike/readme/ReleaseNotes-1.5.2.txt
--
diff --git a/deltaspike/readme/ReleaseNotes-1.5.2.txt 
b/deltaspike/readme/ReleaseNotes-1.5.2.txt
index 9589f1f..d40942f 100644
--- a/deltaspike/readme/ReleaseNotes-1.5.2.txt
+++ b/deltaspike/readme/ReleaseNotes-1.5.2.txt
@@ -2,6 +2,7 @@ Release Notes - Apache DeltaSpike - Version 1.5.2
 
 Bug
 
+[DELTASPIKE-839] - Data module test deployments pack individual classes 
instead of JARs
 [DELTASPIKE-1009] - unknown repository class
 [DELTASPIKE-1014] - SecuredAnnotationAuthorizer overwrites method-level 
annotation metadata with class-level annotation metadata
 [DELTASPIKE-1016] - JSF documentation broken
@@ -9,14 +10,10 @@ Bug
 [DELTASPIKE-1026] - WindowHandler: Loading... not displayed in IE8
 [DELTASPIKE-1027] - WindowHandler: "screenshot" still clickable in IE8
 [DELTASPIKE-1028] - WindowHandler: JS error on IE8
-[DELTASPIKE-1030] - Initial redirect does not encode URL properly
-[DELTASPIKE-1033] - BeanManagerProvider might create mem leaks
 [DELTASPIKE-1034] - DefaultEntityManagerHolder is not Serializeable
 
 Improvement
 
-[DELTASPIKE-680] - Lazy init should not rely on BeanManagerProvider
-[DELTASPIKE-872] - Support mocking on proxied beans
 [DELTASPIKE-989] - Document ClientWindow modes more detailed
 [DELTASPIKE-1015] - Support hierarchical BeanManager and Extensions
 [DELTASPIKE-1017] - spi for config-validation
@@ -33,10 +30,6 @@ New Feature
 
 Task
 
-[DELTASPIKE-440] - discuss helper for adding deployment-problems
-[DELTASPIKE-645] - review sonar findings
-[DELTASPIKE-724] - upgrade version of the tomee-arquillian adapter
-[DELTASPIKE-813] - improve basic core documentation
 [DELTASPIKE-982] - improve internal description of our release-steps
 [DELTASPIKE-1011] - re-visit excluded tests for the wls profiles
 [DELTASPIKE-1012] - update site and javadoc to 1.5.1



Jenkins build is still unstable: DeltaSpike OWB 1.2.0 » Apache DeltaSpike Scheduler-Module Impl #795

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build became unstable: DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Servlet-Module Impl #140

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build became unstable: DeltaSpike_Wildfly_9.0 #140

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build became unstable: DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Partial-Bean-Module Impl #140

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 #555

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike_TomEE_1.7.2 » Apache DeltaSpike Partial-Bean-Module Impl #555

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.5 #818

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: DeltaSpike OWB 1.1.5 » Apache DeltaSpike Scheduler-Module Impl #818

2015-12-09 Thread Apache Jenkins Server
See 




svn commit: r975136 - in /websites/staging/deltaspike/trunk/content: ./ staging/news.html

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:52:50 2015
New Revision: 975136

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/staging/news.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:52:50 2015
@@ -1 +1 @@
-1718996
+1718998

Modified: websites/staging/deltaspike/trunk/content/staging/news.html
==
--- websites/staging/deltaspike/trunk/content/staging/news.html (original)
+++ websites/staging/deltaspike/trunk/content/staging/news.html Thu Dec 10 
00:52:50 2015
@@ -253,7 +253,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-21th Release (1.5.2) (06.12.2015)
+21st Release (1.5.2) (06.12.2015)
 
 
 The Apache DeltaSpike team is pleased to announce the 21th release




Jenkins build is still unstable: DeltaSpike OWB 1.1.8 » Apache DeltaSpike Scheduler-Module Impl #991

2015-12-09 Thread Apache Jenkins Server
See 




svn commit: r975130 - in /websites/staging/deltaspike/trunk/content: ./ download.html examples.html javadoc.html news.html

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:05:01 2015
New Revision: 975130

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/download.html
websites/staging/deltaspike/trunk/content/examples.html
websites/staging/deltaspike/trunk/content/javadoc.html
websites/staging/deltaspike/trunk/content/news.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:05:01 2015
@@ -1 +1 @@
-1718992
+1718993

Modified: websites/staging/deltaspike/trunk/content/download.html
==
--- websites/staging/deltaspike/trunk/content/download.html (original)
+++ websites/staging/deltaspike/trunk/content/download.html Thu Dec 10 00:05:01 
2015
@@ -256,7 +256,7 @@ table.CodeRay td.code>pre{padding:0}
 Latest Release
 
 
-v1.5.1
+v1.5.2
 
 
 
@@ -266,28 +266,28 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.zip;>distribution-full-1.5.1.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.zip;>distribution-full-1.5.2.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.asc;>distribution-full-1.5.1.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc;>distribution-full-1.5.2.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.md5;>distribution-full-1.5.1.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.md5;>distribution-full-1.5.2.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.zip.sha1;>distribution-full-1.5.1.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.zip.sha1;>distribution-full-1.5.2.zip.sha1
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz;>distribution-full-1.5.1.tar.gz
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz;>distribution-full-1.5.2.tar.gz
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.asc;>distribution-full-1.5.1.tar.gz.asc
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc;>distribution-full-1.5.2.tar.gz.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.md5;>distribution-full-1.5.1.tar.gz.md5
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5;>distribution-full-1.5.2.tar.gz.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/distribution-full-1.5.1.tar.gz.sha1;>distribution-full-1.5.1.tar.gz.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1;>distribution-full-1.5.2.tar.gz.sha1
 
 
 
@@ -299,16 +299,16 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip;>deltaspike-1.5.1-source-release.zip
+http://www.apache.org/dyn/closer.cgi/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip;>deltaspike-1.5.2-source-release.zip
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.asc;>deltaspike-1.5.1-source-release.zip.asc
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc;>deltaspike-1.5.2-source-release.zip.asc
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.md5;>deltaspike-1.5.1-source-release.zip.md5
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5;>deltaspike-1.5.2-source-release.zip.md5
 
 
-http://www.apache.org/dist/deltaspike/1.5.1/deltaspike-1.5.1-source-release.zip.sha1;>deltaspike-1.5.1-source-release.zip.sha1
+http://www.apache.org/dist/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1;>deltaspike-1.5.2-source-release.zip.sha1
 
 
 
@@ -351,7 +351,7 @@ the signatures using e.g.:
 
 
 $ pgpk -a KEYS
-$ pgpv deltaspike-project-1.5.1-source-release.zip.asc
+$ pgpv deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -360,7 +360,7 @@ $ pgpv deltaspike-project-1.5.1-source-r
 
 
 $ pgp -ka KEYS
-$ pgp deltaspike-project-1.5.1-source-release.zip.asc
+$ pgp deltaspike-project-1.5.2-source-release.zip.asc
 
 
 
@@ -369,7 +369,7 @@ $ pgp deltaspike-project-1.5.1-source-re
 
 
 $ gpg --import KEYS
-$ gpg --verify deltaspike-project-1.5.1-source-release.zip.asc
+$ gpg --verify deltaspike-project-1.5.2-source-release.zip.asc
 
 
 

Modified: websites/staging/deltaspike/trunk/content/examples.html
==
--- websites/staging/deltaspike/trunk/content/examples.html (original)
+++ websites/staging/deltaspike/trunk/content/examples.html Thu Dec 10 

Jenkins build is still unstable: Deltaspike OWB 1.1.9-SNAPSHOT » Apache DeltaSpike Scheduler-Module Impl #879

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: DeltaSpike OWB 1.1.8 #991

2015-12-09 Thread Apache Jenkins Server
See 



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

2015-12-09 Thread gpetracek
[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/730bf21d
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/730bf21d
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/730bf21d

Branch: refs/heads/ds-1.5.2
Commit: 730bf21dde3076bce4e0f3decc5fed91b1ae0aa9
Parents: 7c2f998
Author: gpetracek 
Authored: Sun Dec 6 17:03:58 2015 +0100
Committer: gpetracek 
Committed: Sun Dec 6 17:03:58 2015 +0100

--
 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  | 4 ++--
 deltaspike/dist/full/pom.xml | 2 +-
 deltaspike/dist/pom.xml  | 4 ++--
 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/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| 4 ++--
 pom.xml  

[1/2] deltaspike git commit: [maven-release-plugin] prepare release deltaspike-1.5.2

2015-12-09 Thread gpetracek
Repository: deltaspike
Updated Branches:
  refs/heads/ds-1.5.2 [created] 730bf21dd


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


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

Branch: refs/heads/ds-1.5.2
Commit: 7c2f99813a9c8a0a55f6120b0495b2f046ffac3f
Parents: cd6ea39
Author: gpetracek 
Authored: Sun Dec 6 17:03:56 2015 +0100
Committer: gpetracek 
Committed: Sun Dec 6 17:03:56 2015 +0100

--
 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  | 4 ++--
 deltaspike/dist/full/pom.xml | 2 +-
 deltaspike/dist/pom.xml  | 4 ++--
 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/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-1041 information about v1.5.2

2015-12-09 Thread gpetracek
Repository: deltaspike
Updated Branches:
  refs/heads/master 5b4fd56fd -> 6f1b7efd6


DELTASPIKE-1041 information about v1.5.2


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

Branch: refs/heads/master
Commit: 6f1b7efd684acb66159dbe6657b6c5d8455963de
Parents: 5b4fd56
Author: gpetracek 
Authored: Thu Dec 10 01:17:30 2015 +0100
Committer: gpetracek 
Committed: Thu Dec 10 01:17:30 2015 +0100

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


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/6f1b7efd/site/src/main/asciidoc/news.adoc
--
diff --git a/site/src/main/asciidoc/news.adoc b/site/src/main/asciidoc/news.adoc
index 652f844..940b4fc 100644
--- a/site/src/main/asciidoc/news.adoc
+++ b/site/src/main/asciidoc/news.adoc
@@ -4,7 +4,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.
 
-== 21th Release (1.5.2) (06.12.2015)
+== 21st Release (1.5.2) (06.12.2015)
 
 The Apache DeltaSpike team is pleased to announce the 21th release
 (v1.5.2).



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

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:59:47 2015
New Revision: 975138

Log:
Publishing svnmucc operation to deltaspike site by gpetracek

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



Jenkins build is back to stable : DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Partial-Bean-Module Impl #141

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Data-Module Impl #141

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_9.0 #141

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Servlet-Module Impl #141

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : DeltaSpike_Wildfly_9.0 » Apache DeltaSpike Scheduler-Module Impl #141

2015-12-09 Thread Apache Jenkins Server
See 




svn commit: r11510 - /release/deltaspike/1.5.2/

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Wed Dec  9 23:26:42 2015
New Revision: 11510

Log:
deltaspike v1.5.2

Added:
release/deltaspike/1.5.2/
release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip   (with props)
release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc
release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5
release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1
release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz   (with props)
release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc
release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5
release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1
release/deltaspike/1.5.2/distribution-full-1.5.2.zip   (with props)
release/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc
release/deltaspike/1.5.2/distribution-full-1.5.2.zip.md5
release/deltaspike/1.5.2/distribution-full-1.5.2.zip.sha1

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

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

Added: release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc
==
--- release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc (added)
+++ release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.asc Wed Dec  9 
23:26:42 2015
@@ -0,0 +1,7 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1.4.14 (GNU/Linux)
+
+iEYEABECAAYFAlZkf7gACgkQEsNbR247WiafFQCdH4FPVbdaOy2Q4n4xOfy1Dsk6
+CokAn1r/ENGbUigj79dcl/K6W236pwVt
+=+FOk
+-END PGP SIGNATURE-

Added: release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5
==
--- release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5 (added)
+++ release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.md5 Wed Dec  9 
23:26:42 2015
@@ -0,0 +1 @@
+bee671663c3df4882a7f6ac10a652c40
\ No newline at end of file

Added: release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1
==
--- release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1 (added)
+++ release/deltaspike/1.5.2/deltaspike-1.5.2-source-release.zip.sha1 Wed Dec  
9 23:26:42 2015
@@ -0,0 +1 @@
+0048cd1735de3ac130c49378e2b380212f7d7635
\ No newline at end of file

Added: release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz
==
Binary file - no diff available.

Propchange: release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz
--
svn:mime-type = application/octet-stream

Added: release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc
==
--- release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc (added)
+++ release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.asc Wed Dec  9 
23:26:42 2015
@@ -0,0 +1,7 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1.4.14 (GNU/Linux)
+
+iEYEABECAAYFAlZkigYACgkQEsNbR247WibNGwCdEtdqEIrOaQsbGEcsxSEj7N57
+XEAAnRlnfgINrXWF0t5jYFxQMxqW+K5y
+=qf5X
+-END PGP SIGNATURE-

Added: release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5
==
--- release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5 (added)
+++ release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.md5 Wed Dec  9 
23:26:42 2015
@@ -0,0 +1 @@
+adbab4ca6b1392c573d0123dbe121a17
\ No newline at end of file

Added: release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1
==
--- release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1 (added)
+++ release/deltaspike/1.5.2/distribution-full-1.5.2.tar.gz.sha1 Wed Dec  9 
23:26:42 2015
@@ -0,0 +1 @@
+3d1edd8015ec585fd0d280fda7616f1626c8a474
\ No newline at end of file

Added: release/deltaspike/1.5.2/distribution-full-1.5.2.zip
==
Binary file - no diff available.

Propchange: release/deltaspike/1.5.2/distribution-full-1.5.2.zip
--
svn:mime-type = application/octet-stream

Added: release/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc
==
--- release/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc (added)
+++ release/deltaspike/1.5.2/distribution-full-1.5.2.zip.asc Wed 

svn commit: r11511 - /release/deltaspike/1.5.1/

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Wed Dec  9 23:27:31 2015
New Revision: 11511

Log:
cleanup

Removed:
release/deltaspike/1.5.1/



svn commit: r975127 - in /websites/staging/deltaspike/trunk/content: ./ staging/documentation/build.html staging/documentation/configure.html staging/documentation/jsf.html staging/documentation/sched

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:01:24 2015
New Revision: 975127

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)
websites/staging/deltaspike/trunk/content/staging/documentation/build.html

websites/staging/deltaspike/trunk/content/staging/documentation/configure.html
websites/staging/deltaspike/trunk/content/staging/documentation/jsf.html

websites/staging/deltaspike/trunk/content/staging/documentation/scheduler.html

websites/staging/deltaspike/trunk/content/staging/documentation/snapshots.html

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:01:24 2015
@@ -1 +1 @@
-1715381
+1718990

Modified: 
websites/staging/deltaspike/trunk/content/staging/documentation/build.html
==
--- websites/staging/deltaspike/trunk/content/staging/documentation/build.html 
(original)
+++ websites/staging/deltaspike/trunk/content/staging/documentation/build.html 
Thu Dec 10 00:01:24 2015
@@ -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.5.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.5.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.5.1/
+$ cd 
/path/to/deltaspike-project-1.5.2/
 $ mvn clean install
 
 

Modified: 
websites/staging/deltaspike/trunk/content/staging/documentation/configure.html
==
--- 
websites/staging/deltaspike/trunk/content/staging/documentation/configure.html 
(original)
+++ 
websites/staging/deltaspike/trunk/content/staging/documentation/configure.html 
Thu Dec 10 00:01:24 2015
@@ -309,7 +309,7 @@ You can also opt to use the lastest Delt
 
 
 properties
-deltaspike.version1.5.1/deltaspike.version
+deltaspike.version1.5.2/deltaspike.version
 /properties
 
 

Modified: 
websites/staging/deltaspike/trunk/content/staging/documentation/jsf.html
==
--- websites/staging/deltaspike/trunk/content/staging/documentation/jsf.html 
(original)
+++ websites/staging/deltaspike/trunk/content/staging/documentation/jsf.html 
Thu Dec 10 00:01:24 2015
@@ -434,9 +434,11 @@ not feasible as general solution.
 
 CLIENTWINDOW
 
-Each GET request results in an intermediate small html page which checks
-if the browser tab fits the requested windowId. When the windowId is
-valid, a unique token (called dsrid) will be generated for the 
current
+Each GET request results in an intermediate small HTML page (aka 
"windowhandler").
+If the window.name is empty, a new windowId will stored into window.name.
+If the window.name is already set, the windowhandler checks if the
+window.name equals the requested windowId. When the windowId is valid, a unique
+token (called dsrid) will be generated for the current
 request and added to the URL. In addition a cookie with with the
 dsrid/dswid will be added. On the server side, the verified windowId
 will be extracted from the cookie. For POST request detection, the
@@ -466,7 +468,7 @@ bgcolor which matches your application.
 also got rid of this flickering by storing away a 'screenshot' of the
 first page in onclick() and immediately restore this 'screenshot' on the
 intermediate windowhandler.html page. Technically we do this by storing
-away the and css information into the html5 localStorage and restore them on 
the
+away the HTML DOM tree and css information into the html5 localStorage and 
restore them on the
 intermediate page. We also introduced a WindowConfig which is able to
 parse a request and decide upon the UserAgent or any other information
 if a client will get an intermediate page or if he gets the result page
@@ -481,7 +483,7 @@ directly.
 Reduce windowhandler.html 
flickering
 
 Per default we only overwrite the onclick events of all links on the 
current page to make a 'screenshot' between requests.
-We also provide a mechanism to store the 'screenshot' on ajax requests (e.g. 
Post-Redirect-Get via p:remoteCommand or other components) or on every button 
onclick:
+We also 

svn commit: r975131 - /websites/staging/deltaspike/trunk/content/

2015-12-09 Thread buildbot
Author: buildbot
Date: Thu Dec 10 00:13:09 2015
New Revision: 975131

Log:
Staging update by buildbot for deltaspike

Modified:
websites/staging/deltaspike/trunk/content/   (props changed)

Propchange: websites/staging/deltaspike/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 10 00:13:09 2015
@@ -1 +1 @@
-1718993
+1718994




svn commit: r1718994 - /deltaspike/site/trunk/content/javadoc/1.5.3-SNAPSHOT/

2015-12-09 Thread gpetracek
Author: gpetracek
Date: Thu Dec 10 00:12:57 2015
New Revision: 1718994

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

Added:
deltaspike/site/trunk/content/javadoc/1.5.3-SNAPSHOT/



Jenkins build became unstable: DeltaSpike_AS7 » Apache DeltaSpike JSF-Module Impl #858

2015-12-09 Thread Apache Jenkins Server
See 




Jenkins build became unstable: DeltaSpike_AS7 #858

2015-12-09 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : DeltaSpike_GF4.1 #268

2015-12-09 Thread Apache Jenkins Server
See 



  1   2   >