You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2017/10/25 11:10:14 UTC

[cxf-fediz] branch 1.4.x-fixes updated (e9a7cc1 -> 3028df2)

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a change to branch 1.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git.


    from e9a7cc1  Adding CSRF part for the login form
     new b398eb3  Fixing formatting
     new e0270d2  Updating BUILDING.txt
     new 3028df2  Updating BUILDING.txt for 1.4.x

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 BUILDING.txt                                     | 24 ++++++++++++++++--------
 examples/samplekeys/HowToGenerateKeysREADME.html |  5 ++++-
 2 files changed, 20 insertions(+), 9 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cxf.apache.org" <co...@cxf.apache.org>'].

[cxf-fediz] 01/03: Fixing formatting

Posted by co...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch 1.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git

commit b398eb3a47a9a2f3b4fce01d09fb5fc735b2ac50
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Oct 25 11:52:52 2017 +0100

    Fixing formatting
---
 examples/samplekeys/HowToGenerateKeysREADME.html | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/examples/samplekeys/HowToGenerateKeysREADME.html b/examples/samplekeys/HowToGenerateKeysREADME.html
index 1f8e695..372112e 100644
--- a/examples/samplekeys/HowToGenerateKeysREADME.html
+++ b/examples/samplekeys/HowToGenerateKeysREADME.html
@@ -30,7 +30,7 @@ is recommended.</p>
 keytool -genkeypair -keyalg RSA -validity 3600 -alias realma -keystore stsrealm_a.jks -dname "cn=REALMA" -keypass realma -storepass storepass -keysize 2048<br/><br/>
 keytool -export -rfc -keystore stsrealm_a.jks -storepass storepass -alias realma -file realma.cert
 </code>
-</td>√
+</td>
     <td>Nobody</td><td>By Relying Party (ststrust.jks)</td></tr>
 <tr><td>stsrealm_b.jks (storepass)</td><td>realmb (realmb)</td><td>services/sts/src/main/resources/stsrealm_b.jks</td>
     <td><code>
@@ -54,3 +54,6 @@ keytool -import -trustcacerts -keystore webappKeystore.jks -storepass waspass -a
 </code></td>
     <td>mytomidpkey (to access IDP STS via HTTPS, mytomwspkey (to access web service via HTTPS)</td><td>Nobody</td></tr>  
 </table>
+
+</body>
+</html>

-- 
To stop receiving notification emails like this one, please contact
"commits@cxf.apache.org" <co...@cxf.apache.org>.

[cxf-fediz] 03/03: Updating BUILDING.txt for 1.4.x

Posted by co...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch 1.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git

commit 3028df23394cbb1049363380676607735f8a26af
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Oct 25 12:10:00 2017 +0100

    Updating BUILDING.txt for 1.4.x
---
 BUILDING.txt | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/BUILDING.txt b/BUILDING.txt
index d6b3c82..7c960d3 100644
--- a/BUILDING.txt
+++ b/BUILDING.txt
@@ -4,7 +4,7 @@ Building Apache CXF Fediz
 Initial Setup
 -------------
 
-1) Install J2SE 8 SDK, which can be downloaded from 
+1) Install J2SE 7 or 8 SDK, which can be downloaded from 
    http://www.oracle.com/technetwork/java/javase/downloads/index.html
 
 2) Make sure that your JAVA_HOME environment variable is set to the newly installed 
@@ -38,14 +38,20 @@ Source Directory structure
 
  + plugins               contains the sources of the Federation plugin
       + core             the core module contains the majority of functionality which is Servlet container agnostic
+      + tomcat7          the Tomcat 7 module is the bridge of the core to the
+                           Tomcat 7 specific security engine (container managed)
       + tomcat8          the Tomcat 8 module is the bridge of the core to the
                            Tomcat 8 specific security engine (container managed)
+      + jetty8           the Jetty 8 module is the bridge of the core to the
+                           Jetty 8 specific security engine (container managed)
       + jetty9           the Jetty 9 module is the bridge of the core to the
                            Jetty 9 specific security engine (container managed)
       + cxf              the CXF module is the bridge of the core to the
                            CXF specific security engine (application managed)
       + spring           the Spring module is the brige of the core to the
                            Spring Security 4 specific security engine (application managed)
+      + spring2          the Spring 2 module is the brige of the core to the
+                           Spring Security 2 specific security engine (application managed)
       + spring3          the Spring3 module is the bridge of the core to the
                            Spring Security 3 specific security engine (application managed)
       + websphere        the IBM Websphere module is the bridge of the core to the

-- 
To stop receiving notification emails like this one, please contact
"commits@cxf.apache.org" <co...@cxf.apache.org>.

[cxf-fediz] 02/03: Updating BUILDING.txt

Posted by co...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch 1.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git

commit e0270d2b878f526dae97c829aad60ef877c72b7d
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Oct 25 12:08:34 2017 +0100

    Updating BUILDING.txt
---
 BUILDING.txt | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/BUILDING.txt b/BUILDING.txt
index 97777ee..d6b3c82 100644
--- a/BUILDING.txt
+++ b/BUILDING.txt
@@ -4,14 +4,14 @@ Building Apache CXF Fediz
 Initial Setup
 -------------
 
-1) Install J2SE 6 or 7 SDK, which can be downloaded from 
+1) Install J2SE 8 SDK, which can be downloaded from 
    http://www.oracle.com/technetwork/java/javase/downloads/index.html
 
 2) Make sure that your JAVA_HOME environment variable is set to the newly installed 
    JDK location, and that your PATH includes %JAVA_HOME%\bin (Windows) or 
    $JAVA_HOME$/bin (*nix).
 
-3) Install Maven 2.2.1 or newer, which can be downloaded from 
+3) Install Maven 3.0.x or newer, which can be downloaded from 
    http://maven.apache.org/download.html. Make sure that your PATH includes 
    the MVN_HOME/bin directory. 
 
@@ -38,14 +38,16 @@ Source Directory structure
 
  + plugins               contains the sources of the Federation plugin
       + core             the core module contains the majority of functionality which is Servlet container agnostic
-      + tomcat           the Tomcat module is the bridge of the core to the
-                           Tomcat specific security engine (container managed)
-      + jetty            the Jetty module is the bridge of the core to the
-                           Jetty specific security engine (container managed)
+      + tomcat8          the Tomcat 8 module is the bridge of the core to the
+                           Tomcat 8 specific security engine (container managed)
+      + jetty9           the Jetty 9 module is the bridge of the core to the
+                           Jetty 9 specific security engine (container managed)
+      + cxf              the CXF module is the bridge of the core to the
+                           CXF specific security engine (application managed)
       + spring           the Spring module is the brige of the core to the
+                           Spring Security 4 specific security engine (application managed)
+      + spring3          the Spring3 module is the bridge of the core to the
                            Spring Security 3 specific security engine (application managed)
-      + spring2          the Spring2 module is the bridge of the core to the
-                           Spring Security 2 specific security engine (application managed)
       + websphere        the IBM Websphere module is the bridge of the core to the
                            IBM Websphere specific security engine (container managed)
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cxf.apache.org" <co...@cxf.apache.org>.