You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2013/01/16 18:09:11 UTC

svn commit: r1434041 - in /syncope/trunk/src/site: site.xml xdoc/features.xml xdoc/release-process.xml

Author: ilgrosso
Date: Wed Jan 16 17:09:11 2013
New Revision: 1434041

URL: http://svn.apache.org/viewvc?rev=1434041&view=rev
Log:
[SYNCOPE-271] Updating site and features

Modified:
    syncope/trunk/src/site/site.xml
    syncope/trunk/src/site/xdoc/features.xml
    syncope/trunk/src/site/xdoc/release-process.xml

Modified: syncope/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/src/site/site.xml?rev=1434041&r1=1434040&r2=1434041&view=diff
==============================================================================
--- syncope/trunk/src/site/site.xml (original)
+++ syncope/trunk/src/site/site.xml Wed Jan 16 17:09:11 2013
@@ -23,11 +23,6 @@ under the License.
          xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 
                              http://maven.apache.org/xsd/decoration-1.1.0.xsd" 
          name="Apache Syncope">
-             
-  <bannerLeft>
-    <src>images/apache-syncope-logo-small.jpg</src>
-    <href>http://syncope.apache.org/</href>
-  </bannerLeft>
 
   <publishDate position="right"/>
   <version position="right"/>
@@ -39,17 +34,26 @@ under the License.
   </skin>
   <custom>
     <fluidoSkin>
-      <leftColumnClass>span2</leftColumnClass>
-      <bodyColumnClass>span10</bodyColumnClass>
+      <topBarEnabled>true</topBarEnabled>
+      <sideBarEnabled>false</sideBarEnabled>
+      <googleSearch>
+        <sitesearch>${project.url}</sitesearch>
+      </googleSearch>
+      <twitter>
+        <user>syncopeidm</user>
+        <showUser>true</showUser>
+        <showFollowers>false</showFollowers>
+      </twitter>
+      <ohloh>
+        <projectId>syncope</projectId>
+        <widget>factoids</widget>
+      </ohloh>
     </fluidoSkin>
   </custom>
   
   <body>
-    <links>
-      <item name="Apache" href="http://www.apache.org/"/>
-    </links>
-
     <breadcrumbs>
+      <item name="Apache" href="http://www.apache.org/"/>
       <item name="Apache Syncope" href="http://syncope.apache.org/"/>
     </breadcrumbs>
         

Modified: syncope/trunk/src/site/xdoc/features.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/src/site/xdoc/features.xml?rev=1434041&r1=1434040&r2=1434041&view=diff
==============================================================================
--- syncope/trunk/src/site/xdoc/features.xml (original)
+++ syncope/trunk/src/site/xdoc/features.xml Wed Jan 16 17:09:11 2013
@@ -27,14 +27,15 @@ under the License.
   </properties>
 
   <body>    
-    <section name="Identity and Role Administration">
+    <section name="Account and Role Administration">
       <ul>
         <li>Password management and Self-Service Operations</li>
         <li>Configurable Password encryption</li>
         <li>Attribute validators (Reg-Exp based and custom)</li>
         <li>Account Policy management</li>
         <li>Password Policy management</li>
-        <li>Role-based provisioning</li>
+        <li>User role-based provisioning</li>
+        <li>Role provisioning</li>
         <li>Account status information on external resources</li>
       </ul>
     </section>

Modified: syncope/trunk/src/site/xdoc/release-process.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/src/site/xdoc/release-process.xml?rev=1434041&r1=1434040&r2=1434041&view=diff
==============================================================================
--- syncope/trunk/src/site/xdoc/release-process.xml (original)
+++ syncope/trunk/src/site/xdoc/release-process.xml Wed Jan 16 17:09:11 2013
@@ -106,6 +106,83 @@ under the License.
     
     <section name="Release steps">
       
+      <subsection name="Verify DBMS and JEE containers">
+        <p>
+        This is an optional step.<br/>
+        These verifications take some time and have quite strong environment requirements. However, it is of fundamental
+        importance to go through these at least once for every major release.
+        </p>
+        <p>
+          All verifications takes place in the <tt>core</tt> submodule.
+        <ol>
+          <li>DBMS
+            <ul>
+              <li>PostgreSQL
+                <ul>
+                  <li>configure <tt>src/test/resources/postgres/persistence.properties</tt></li>
+                  <li>
+<source>$ mvn -P postgres-it</source>
+                  </li>
+                </ul>
+              </li>
+              <li>MySQL
+                <ul>
+                  <li>configure <tt>src/test/resources/mysql/persistence.properties</tt></li>
+                  <li>
+<source>$ mvn -P mysql-it</source>
+                  </li>
+                </ul>
+              </li>                
+              <li>Oracle database
+                <ul>
+                  <li>configure <tt>src/test/resources/oracle/persistence.properties</tt></li>
+                  <li>
+<source>$ mvn -P oracle-it</source>
+                  </li>
+                </ul>
+              </li>               
+              <li>MS SQL Server
+                <ul>
+                  <li>configure <tt>src/test/resources/sqlserver/persistence.properties</tt></li>
+                  <li>
+<source>$ mvn -P sqlserver-it</source>
+                  </li>
+                </ul>
+              </li>                
+            </ul>
+          </li>
+          <li>JEE containers
+            <ul>
+              <li>Glassfish
+                <ul>
+                  <li>
+<source>$ mvn -P glassfish-it</source>
+                  </li>
+                </ul>
+              </li>
+              <li>JBoss AS
+                <ul>
+                  <li>
+<source>$ mvn -P jboss-it</source>
+                  </li>
+                </ul>
+              </li>
+              <li>Oracle WebLogic
+                <ul>
+                  <li>Put local WebLogic installation under <tt>/opt/weblogic-12.1.1</tt> or 
+pass <tt>-Dweblogic.home=...</tt> to Maven
+                  </li>
+                  <li>
+<source>$ mvn -P weblogic-it</source>
+                  </li>
+                </ul>
+              </li>                
+            </ul>
+          </li>
+        </ol>
+        </p>
+      </subsection>
+      
       <subsection name="Prepare the source for release">
         <ol>
           <li>Clean up JIRA so the