You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2013/05/17 10:26:57 UTC

[1/2] git commit: DELTASPIKE-289 add sample ClientWindowConfig

Updated Branches:
  refs/heads/master fa2d87485 -> fc063b934


DELTASPIKE-289 add sample ClientWindowConfig


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

Branch: refs/heads/master
Commit: 1fe1191dcc823281c2e2f857c24f3ee5c610b206
Parents: fa2d874
Author: Mark Struberg <st...@apache.org>
Authored: Fri May 17 08:07:46 2013 +0200
Committer: Mark Struberg <st...@apache.org>
Committed: Fri May 17 10:25:08 2013 +0200

----------------------------------------------------------------------
 .../example/window/SampleClientWindowConfig.java   |   37 +++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/1fe1191d/deltaspike/examples/jsf-examples/src/main/java/org/apache/deltaspike/example/window/SampleClientWindowConfig.java
----------------------------------------------------------------------
diff --git a/deltaspike/examples/jsf-examples/src/main/java/org/apache/deltaspike/example/window/SampleClientWindowConfig.java b/deltaspike/examples/jsf-examples/src/main/java/org/apache/deltaspike/example/window/SampleClientWindowConfig.java
new file mode 100644
index 0000000..69f573c
--- /dev/null
+++ b/deltaspike/examples/jsf-examples/src/main/java/org/apache/deltaspike/example/window/SampleClientWindowConfig.java
@@ -0,0 +1,37 @@
+/*
+ * 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.example.window;
+
+import javax.enterprise.inject.Specializes;
+import javax.faces.context.FacesContext;
+
+import org.apache.deltaspike.jsf.spi.scope.window.DefaultClientWindowConfig;
+
+/**
+ * A sample ClientWindowConfig
+ */
+@Specializes
+public class SampleClientWindowConfig extends DefaultClientWindowConfig
+{
+    @Override
+    public ClientWindowRenderMode getClientWindowRenderMode(FacesContext facesContext)
+    {
+        return ClientWindowRenderMode.CLIENTWINDOW;
+    }
+}


[2/2] git commit: DELTASPIKE-367 upgrade to owb-arquillian-1.2.0-SNAPTHOT

Posted by st...@apache.org.
DELTASPIKE-367 upgrade to owb-arquillian-1.2.0-SNAPTHOT

we finally need to upgrade to 1.2.0 but for now it's fine.


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

Branch: refs/heads/master
Commit: fc063b934666bbf12886cd1fd5f07d1b3c82dfa8
Parents: 1fe1191
Author: Mark Struberg <st...@apache.org>
Authored: Fri May 17 10:25:46 2013 +0200
Committer: Mark Struberg <st...@apache.org>
Committed: Fri May 17 10:25:46 2013 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/fc063b93/deltaspike/parent/code/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/parent/code/pom.xml b/deltaspike/parent/code/pom.xml
index bcc7fec..24ea1da 100644
--- a/deltaspike/parent/code/pom.xml
+++ b/deltaspike/parent/code/pom.xml
@@ -186,7 +186,7 @@
                 <dependency>
                     <groupId>org.apache.openwebbeans.arquillian</groupId>
                     <artifactId>owb-arquillian-standalone</artifactId>
-                    <version>1.1.8</version>
+                    <version>1.2.0-SNAPSHOT</version>
                     <scope>test</scope>
                 </dependency>
             </dependencies>