You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by ra...@apache.org on 2015/01/06 17:18:37 UTC

svn commit: r1649860 - /deltaspike/site/trunk/content/staging/documentation/

Author: rafabene
Date: Tue Jan  6 16:18:36 2015
New Revision: 1649860

URL: http://svn.apache.org/r1649860
Log:
Site checkin for project Apache DeltaSpike Documentation

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

Modified: deltaspike/site/trunk/content/staging/documentation/bean-validation.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/bean-validation.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/bean-validation.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/bean-validation.html Tue Jan  6 16:18:36 2015
@@ -289,7 +289,7 @@ simply need to override the factory. The
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/build.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/build.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/build.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/build.html Tue Jan  6 16:18:36 2015
@@ -404,7 +404,7 @@ Set <code>WLS_HOME</code> so that <code>
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/cdiimp.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/cdiimp.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/cdiimp.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/cdiimp.html Tue Jan  6 16:18:36 2015
@@ -196,13 +196,12 @@ body {
 <li><a href="#_java_ee5_and_servlet_containers">Java EE5 and Servlet Containers</a></li>
 <li><a href="#javase6">Java SE6+</a>
 <ul class="sectlevel2">
-<li><a href="#_1_declare_cdi_dependencies">1. Declare CDI Dependencies</a>
+<li><a href="#_declare_cdi_dependencies">Declare CDI Dependencies</a>
 <ul class="sectlevel3">
 <li><a href="#_option_a_declare_dependencies_for_maven_based_projects">Option A: Declare Dependencies for Maven-based Projects</a></li>
 <li><a href="#_option_b_declare_dependencies_for_maven_independent_projects">Option B: Declare Dependencies for Maven-independent Projects</a></li>
 </ul>
 </li>
-<li><a href="#_2_start_the_cdi_container_from_your_project">2. Start the CDI Container from Your Project</a></li>
 </ul>
 </li>
 <li><a href="#_next">Next</a></li>
@@ -250,7 +249,7 @@ body {
 <p>Instructions are provided here for adding the required resources to both Maven-based and Maven-independent projects and subsequently booting the CDI container from your project source code.</p>
 </div>
 <div class="sect2">
-<h3 id="_1_declare_cdi_dependencies">1. Declare CDI Dependencies</h3>
+<h3 id="_declare_cdi_dependencies">Declare CDI Dependencies</h3>
 <div class="sect3">
 <h4 id="_option_a_declare_dependencies_for_maven_based_projects">Option A: Declare Dependencies for Maven-based Projects</h4>
 <div class="paragraph">
@@ -387,66 +386,6 @@ body {
 </div>
 </div>
 </div>
-<div class="sect2">
-<h3 id="_2_start_the_cdi_container_from_your_project">2. Start the CDI Container from Your Project</h3>
-<div class="paragraph">
-<p>To start a CDI container in your application, you must instantiate a <code>CdiContainer</code> object and call the <code>#boot</code> method. When <code>#boot</code> is called, the <code>CdiContainer</code> scans CDI-enabled
-archives for beans and CDI extensions. Before the application exits, <code>#shutdown</code> must be called to correctly destroy all beans. An example is given in the code snippet here.</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="java"><span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainer</span>;
-<span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainerLoader</span>;
-
-<span class="directive">public</span> <span class="type">class</span> <span class="class">MainApp</span> {
-    <span class="directive">public</span> <span class="directive">static</span> <span class="type">void</span> main(<span class="predefined-type">String</span><span class="type">[]</span> args) {
-
-        CdiContainer cdiContainer = CdiContainerLoader.getCdiContainer();
-        cdiContainer.boot();
-
-        <span class="comment">// You can use CDI here</span>
-
-        cdiContainer.shutdown();
-    }
-}</code></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>Starting the container does not automatically start all CDI Contexts. Contexts must be started independently using the provided <code>ContextControl</code> class. An example of starting the Context for <code>@ApplicationScoped</code> beans is added to the code snippet here.</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="java"><span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainer</span>;
-<span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainerLoader</span>;
-<span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.ContextControl</span>;
-<span class="keyword">import</span> <span class="include">javax.enterprise.context.ApplicationScoped</span>;
-
-<span class="directive">public</span> <span class="type">class</span> <span class="class">MainApp</span> {
-    <span class="directive">public</span> <span class="directive">static</span> <span class="type">void</span> main(<span class="predefined-type">String</span><span class="type">[]</span> args) {
-
-        CdiContainer cdiContainer = CdiContainerLoader.getCdiContainer();
-        cdiContainer.boot();
-
-        <span class="comment">// Starting the application-context enables use of @ApplicationScoped beans</span>
-        ContextControl contextControl = cdiContainer.getContextControl();
-        contextControl.startContext(ApplicationScoped.class);
-
-        <span class="comment">// You can use CDI here</span>
-
-        cdiContainer.shutdown();
-    }
-}</code></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>To resolve project beans, you can use the DeltaSpike <code>BeanProvider</code> class. Whether <code>EchoService</code> is a concrete implementation or just an interface depends on the application. In the case that it is an interface, the corresponding implementation is resolved. The resolved bean is a standard CDI bean and it can be used for all CDI concepts, such as <code>@Inject</code>, in the class without further uses of <code>BeanProvider</code>. An example of resolving the bean without qualifiers is given in the code snippet here.</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="java">EchoService echoService = BeanProvider.getContextualReference(EchoService.class, <span class="predefined-constant">false</span>);</code></pre>
-</div>
-</div>
-</div>
 </div>
 </div>
 <div class="sect1">
@@ -472,7 +411,7 @@ archives for beans and CDI extensions. B
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/configuration.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/configuration.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/configuration.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/configuration.html Tue Jan  6 16:18:36 2015
@@ -634,7 +634,7 @@ public class SomeRandomService
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/configure.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/configure.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/configure.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/configure.html Tue Jan  6 16:18:36 2015
@@ -383,7 +383,7 @@ The API is scoped for compile time and i
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/container-control.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/container-control.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/container-control.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/container-control.html Tue Jan  6 16:18:36 2015
@@ -195,11 +195,13 @@ body {
 <li><a href="#_overview">Overview</a></li>
 <li><a href="#_configure_your_projects">Configure Your Projects</a>
 <ul class="sectlevel2">
+<li><a href="#_enable_cdi_for_your_java_environment">Enable CDI For Your Java Environment</a></li>
 <li><a href="#_declare_container_control_module_dependencies">Declare Container Control Module Dependencies</a></li>
 </ul>
 </li>
 <li><a href="#_use_the_module_features">Use the Module Features</a>
 <ul class="sectlevel2">
+<li><a href="#_start_the_cdi_container_from_your_project">Start the CDI Container from Your Project</a></li>
 <li><a href="#_cdicontainer">CdiContainer</a></li>
 <li><a href="#_contextcontrol_usage">ContextControl Usage</a></li>
 <li><a href="#_procedure_for_builing_uber_jar">Procedure for builing Uber jar</a>
@@ -234,6 +236,12 @@ body {
 <p>The configuration information provided here is for Maven-based projects and it assumes that you have already declared the DeltaSpike version and DeltaSpike Core module for your projects, as detailed in <a href="configure.html">Configure DeltaSpike in Your Projects</a>. For Maven-independent projects, see <a href="configure.html#config-maven-indep">Configure DeltaSpike in Maven-independent Projects</a>.</p>
 </div>
 <div class="sect2">
+<h3 id="_enable_cdi_for_your_java_environment">Enable CDI For Your Java Environment</h3>
+<div class="paragraph">
+<p>This module requires a CDI implementation to be available in the Java environment where your projects are deployed. Dependent on the Java environment you choose, some setup may be necessary as detailed at the <a href="cdiimp.html">Enable CDI For Your Java Environment</a> page.</p>
+</div>
+</div>
+<div class="sect2">
 <h3 id="_declare_container_control_module_dependencies">Declare Container Control Module Dependencies</h3>
 <div class="paragraph">
 <p>Add the Container Control module to the list of dependencies in the project <code>pom.xml</code> file using this code snippet:</p>
@@ -255,6 +263,66 @@ body {
 <h2 id="_use_the_module_features">Use the Module Features</h2>
 <div class="sectionbody">
 <div class="sect2">
+<h3 id="_start_the_cdi_container_from_your_project">Start the CDI Container from Your Project</h3>
+<div class="paragraph">
+<p>To start a CDI container in your application, you must instantiate a <code>CdiContainer</code> object and call the <code>#boot</code> method. When <code>#boot</code> is called, the <code>CdiContainer</code> scans CDI-enabled
+archives for beans and CDI extensions. Before the application exits, <code>#shutdown</code> must be called to correctly destroy all beans. An example is given in the code snippet here.</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="java"><span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainer</span>;
+<span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainerLoader</span>;
+
+<span class="directive">public</span> <span class="type">class</span> <span class="class">MainApp</span> {
+    <span class="directive">public</span> <span class="directive">static</span> <span class="type">void</span> main(<span class="predefined-type">String</span><span class="type">[]</span> args) {
+
+        CdiContainer cdiContainer = CdiContainerLoader.getCdiContainer();
+        cdiContainer.boot();
+
+        <span class="comment">// You can use CDI here</span>
+
+        cdiContainer.shutdown();
+    }
+}</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Starting the container does not automatically start all CDI Contexts. Contexts must be started independently using the provided <code>ContextControl</code> class. An example of starting the Context for <code>@ApplicationScoped</code> beans is added to the code snippet here.</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="java"><span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainer</span>;
+<span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.CdiContainerLoader</span>;
+<span class="keyword">import</span> <span class="include">org.apache.deltaspike.cdise.api.ContextControl</span>;
+<span class="keyword">import</span> <span class="include">javax.enterprise.context.ApplicationScoped</span>;
+
+<span class="directive">public</span> <span class="type">class</span> <span class="class">MainApp</span> {
+    <span class="directive">public</span> <span class="directive">static</span> <span class="type">void</span> main(<span class="predefined-type">String</span><span class="type">[]</span> args) {
+
+        CdiContainer cdiContainer = CdiContainerLoader.getCdiContainer();
+        cdiContainer.boot();
+
+        <span class="comment">// Starting the application-context enables use of @ApplicationScoped beans</span>
+        ContextControl contextControl = cdiContainer.getContextControl();
+        contextControl.startContext(ApplicationScoped.class);
+
+        <span class="comment">// You can use CDI here</span>
+
+        cdiContainer.shutdown();
+    }
+}</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>To resolve project beans, you can use the DeltaSpike <code>BeanProvider</code> class. Whether <code>EchoService</code> is a concrete implementation or just an interface depends on the application. In the case that it is an interface, the corresponding implementation is resolved. The resolved bean is a standard CDI bean and it can be used for all CDI concepts, such as <code>@Inject</code>, in the class without further uses of <code>BeanProvider</code>. An example of resolving the bean without qualifiers is given in the code snippet here.</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="java">EchoService echoService = BeanProvider.getContextualReference(EchoService.class, <span class="predefined-constant">false</span>);</code></pre>
+</div>
+</div>
+</div>
+<div class="sect2">
 <h3 id="_cdicontainer">CdiContainer</h3>
 <div class="paragraph">
 <p>The <code>CdiContainer</code> interface provides booting and shutdown of the CDI containers from deployed applications, with <code>CdiContainerLoader</code> a simple factory providing access to the underlying <code>CdiContainer</code> implementation.</p>
@@ -473,7 +541,7 @@ tomcat.start();</code></pre>
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/core.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/core.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/core.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/core.html Tue Jan  6 16:18:36 2015
@@ -1645,7 +1645,7 @@ objects, the last object in the array wi
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/data.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/data.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/data.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/data.html Tue Jan  6 16:18:36 2015
@@ -2054,7 +2054,7 @@ provider when persisting / updating the
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/index.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/index.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/index.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/index.html Tue Jan  6 16:18:36 2015
@@ -302,7 +302,7 @@ body {
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/jpa.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/jpa.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/jpa.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/jpa.html Tue Jan  6 16:18:36 2015
@@ -781,7 +781,7 @@ to <code>/META-INF/apache-deltaspike.pro
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/jsf.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/jsf.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/jsf.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/jsf.html Tue Jan  6 16:18:36 2015
@@ -2745,7 +2745,7 @@ with Weld versions older than 1.1.10 due
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/modules.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/modules.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/modules.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/modules.html Tue Jan  6 16:18:36 2015
@@ -288,7 +288,7 @@ body {
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/overview.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/overview.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/overview.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/overview.html Tue Jan  6 16:18:36 2015
@@ -374,7 +374,7 @@ body {
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/partial-bean.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/partial-bean.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/partial-bean.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/partial-bean.html Tue Jan  6 16:18:36 2015
@@ -307,7 +307,7 @@ additional dependency and allows to impl
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/projectstage.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/projectstage.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/projectstage.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/projectstage.html Tue Jan  6 16:18:36 2015
@@ -343,7 +343,7 @@ determine the string is the ConfigResolv
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/scheduler.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/scheduler.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/scheduler.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/scheduler.html Tue Jan  6 16:18:36 2015
@@ -398,7 +398,7 @@ For more information, see <a href="http:
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/security.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/security.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/security.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/security.html Tue Jan  6 16:18:36 2015
@@ -855,7 +855,7 @@ globalAlternatives.<code>&lt;interface-n
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/servlet.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/servlet.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/servlet.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/servlet.html Tue Jan  6 16:18:36 2015
@@ -592,7 +592,7 @@ your <code>web.xml</code> to disable the
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/snapshots.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/snapshots.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/snapshots.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/snapshots.html Tue Jan  6 16:18:36 2015
@@ -285,7 +285,7 @@ Snapshots provide previews of DeltaSpike
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/source.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/source.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/source.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/source.html Tue Jan  6 16:18:36 2015
@@ -320,7 +320,7 @@ Settings</p>
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/spi.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/spi.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/spi.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/spi.html Tue Jan  6 16:18:36 2015
@@ -324,7 +324,7 @@ as soon as everything is initialized the
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>

Modified: deltaspike/site/trunk/content/staging/documentation/test-control.html
URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/staging/documentation/test-control.html?rev=1649860&r1=1649859&r2=1649860&view=diff
==============================================================================
--- deltaspike/site/trunk/content/staging/documentation/test-control.html (original)
+++ deltaspike/site/trunk/content/staging/documentation/test-control.html Tue Jan  6 16:18:36 2015
@@ -807,7 +807,7 @@ Currently DeltaSpike provides:</p>
         <hr>
 
         <footer>
-          <p>Copyright © 2011-2014 The Apache Software Foundation, 
+          <p>Copyright © 2011-2014 The Apache Software Foundation,
             Licensed under the Apache License, Version 2.0.</p>
           <p>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
         </footer>