You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by bu...@apache.org on 2013/10/08 11:12:42 UTC

svn commit: r881680 - in /websites/staging/felix/trunk/content: ./ documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-devguide/ documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ documentation/subprojects/apache-felix-i...

Author: buildbot
Date: Tue Oct  8 09:12:42 2013
New Revision: 881680

Log:
Staging update by buildbot for felix

Modified:
    websites/staging/felix/trunk/content/   (props changed)
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-devguide/how-to-write-your-own-handler.html
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/apache-felix-ipojo-api.html
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/instance-vs-service-controller.html
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/constructing-pojo-objects-with-factory-methods.html
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-extender-configuration.html
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-factory-service.html
    websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-faq.html

Propchange: websites/staging/felix/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Oct  8 09:12:42 2013
@@ -1 +1 @@
-1530186
+1530195

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-devguide/how-to-write-your-own-handler.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-devguide/how-to-write-your-own-handler.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-devguide/how-to-write-your-own-handler.html Tue Oct  8 09:12:42 2013
@@ -430,7 +430,7 @@ The <code>PrimitiveHandler</code> abstra
 <span class="c">            Configuration of your handler for </span>
 <span class="c">            this component type</span>
 <span class="c">             --&gt;</span>
-        <span class="err">&lt;</span>/your-shortcut{noformat}:HandlerName&gt;
+        <span class="nt">&lt;/your-shortcut:HandlerName&gt;</span>
         ...
     <span class="nt">&lt;/component&gt;</span>
     ...
@@ -1008,7 +1008,7 @@ Then, 'scalar' annotation attributes are
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1475802 by clement on Thu, 25 Apr 2013 14:43:50 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>           

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html Tue Oct  8 09:12:42 2013
@@ -345,7 +345,7 @@ Handler org.apache.felix.ipojo.handler.w
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1465947 by clement on Tue, 9 Apr 2013 09:37:22 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>           

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/apache-felix-ipojo-api.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/apache-felix-ipojo-api.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/apache-felix-ipojo-api.html Tue Oct  8 09:12:42 2013
@@ -269,18 +269,20 @@ The Service object can be configured. By
 <ul>
 <li>Add service property</li>
 <li>Set the creation strategy</li>
-<li>Set the exposed service specifications</li>
-</ul>
+<li>
+<p>Set the exposed service specifications</p>
 <p>:::java
-    new PrimitiveComponentType()
-        .setBundleContext(context)
-        .setClassName(org.example.service.impl.MyComponentImpl.class.getName())
-        .addService(new Service()
-            .addProperty(new ServiceProperty()
-                .setField("myServiceProperty")
-                .setName("sample.myProperty"))
-            .setCreationStrategy(Service.INSTANCE_STRATEGY))
-        .createInstance();</p>
+new PrimitiveComponentType()
+    .setBundleContext(context)
+    .setClassName(org.example.service.impl.MyComponentImpl.class.getName())
+    .addService(new Service()
+        .addProperty(new ServiceProperty()
+            .setField("myServiceProperty")
+            .setName("sample.myProperty"))
+        .setCreationStrategy(Service.INSTANCE_STRATEGY))
+    .createInstance();</p>
+</li>
+</ul>
 <h2 id="service-dependencies">Service Dependencies</h2>
 <p>To declare a service dependency, create and add a Dependency object. The dependency object offers all the iPOJO service dependency features. You can set the injected field and/or bind/unbind methods. Here is an example:</p>
 <div class="codehilite"><pre><span class="k">new</span> <span class="nf">PrimitiveComponentType</span><span class="o">()</span>
@@ -501,7 +503,7 @@ You can also set the the managed service
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1445514 by clement on Wed, 13 Feb 2013 09:20:49 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>           

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/instance-vs-service-controller.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/instance-vs-service-controller.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/instance-vs-service-controller.html Tue Oct  8 09:12:42 2013
@@ -18,7 +18,7 @@
 -->
 
 <head>
-    <title>Apache Felix - </title>
+    <title>Apache Felix - Instance Controller or Service Controller</title>
     <link rel="icon" href="/res/favicon.ico">
     
     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
@@ -252,7 +252,7 @@ public class MyComponent implements MySe
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1530016 by clement on Mon, 7 Oct 2013 18:04:27 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>           

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/constructing-pojo-objects-with-factory-methods.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/constructing-pojo-objects-with-factory-methods.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/constructing-pojo-objects-with-factory-methods.html Tue Oct  8 09:12:42 2013
@@ -173,10 +173,8 @@
 <p><em>By default, iPOJO calls the POJO constructor to create objects. This constructor can either has no argument or receive the bundle context. However sometimes, you may want a more sophisticated object creation policy.</em></p>
 <p>iPOJO allows you describing a factory method called to create POJO objects instead of the  constructor. So, every time that iPOJO needs to create an instance of your POJO class, this method will be called to obtain the object.</p>
 <p>To use this feature you need to add the <code>factory-method</code> attribute in the Component element as illustrated below:</p>
-<div class="codehilite"><pre><span class="nt">&lt;component</span>
-    <span class="na">className=</span><span class="s">&quot;org.apache.felix.ipojo.test.scenarios.component.FooProvider&quot;</span>
-        <span class="na">factory-method=</span><span class="s">&quot;createProvider&quot;</span>
-<span class="nt">&gt;</span>
+<div class="codehilite"><pre><span class="nt">&lt;component</span> <span class="na">className=</span><span class="s">&quot;org.apache.felix.ipojo.test.scenarios.component.FooProvider&quot;</span>
+           <span class="na">factory-method=</span><span class="s">&quot;createProvider&quot;</span><span class="nt">&gt;</span>
     ...
 <span class="nt">&lt;/component&gt;</span>
 </pre></div>
@@ -216,7 +214,7 @@
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1467268 by clement on Fri, 12 Apr 2013 13:42:34 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>           

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-extender-configuration.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-extender-configuration.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-extender-configuration.html Tue Oct  8 09:12:42 2013
@@ -260,7 +260,7 @@ For example GAE imposes mono-threading. 
 <h4 id="per-bundle">Per-Bundle</h4>
 <p>The synchronous behavior can be selected per-bundle (given that it does not conflict with existing system wide configuration).
 Synchronous/Asynchronous behavior can be expressed in the Bundle's Manifest (case is not significant, but an uppercase first letter is recommended):</p>
-<div class="codehilite"><pre><span class="err">IPOJO-Queue-Preference</span> <span class="err">SYNC</span>
+<div class="codehilite"><pre><span class="n">IPOJO</span><span class="o">-</span><span class="n">Queue</span><span class="o">-</span><span class="n">Preference</span> <span class="n">SYNC</span>
 </pre></div>
 
 
@@ -344,7 +344,7 @@ It is not enabled by default (rely on th
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1529826 by guillaume on Mon, 7 Oct 2013 12:17:07 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>           

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-factory-service.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-factory-service.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-advanced-topics/ipojo-factory-service.html Tue Oct  8 09:12:42 2013
@@ -18,7 +18,7 @@
 -->
 
 <head>
-    <title>Apache Felix - </title>
+    <title>Apache Felix - Using the iPOJO Factory service</title>
     <link rel="icon" href="/res/favicon.ico">
     
     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
@@ -299,7 +299,7 @@ API</a> for more information.</p>
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1530004 by clement on Mon, 7 Oct 2013 17:16:39 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>           

Modified: websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-faq.html
==============================================================================
--- websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-faq.html (original)
+++ websites/staging/felix/trunk/content/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/ipojo-faq.html Tue Oct  8 09:12:42 2013
@@ -239,9 +239,8 @@
 
 <p>For Ant, just configure the classpath of the iPOJO ant task with the Manipulator that you want to use:</p>
 <div class="codehilite"><pre><span class="nt">&lt;taskdef</span> <span class="na">name=</span><span class="s">&quot;ipojo&quot;</span>
-        <span class="na">classname=</span><span class="s">&quot;org.apache.felix.ipojo.task.IPojoTask&quot;</span>
-                <span class="na">classpath=</span><span class="s">&quot;../ipojo/manipulator/org.apache.felix.ipojo.manipulator-1.7.0-SNAPSHOT.jar; lib/org.apache.felix.ipojo.ant-1.7.0-SNAPSHOT.jar;&quot;</span> <span class="nt">/&gt;</span>
- /&gt;
+         <span class="na">classname=</span><span class="s">&quot;org.apache.felix.ipojo.task.IPojoTask&quot;</span>
+         <span class="na">classpath=</span><span class="s">&quot;../ipojo/manipulator/org.apache.felix.ipojo.manipulator-1.7.0-SNAPSHOT.jar; lib/org.apache.felix.ipojo.ant-1.7.0-SNAPSHOT.jar;&quot;</span> <span class="nt">/&gt;</span>
 </pre></div>
 
 
@@ -614,7 +613,7 @@ Finally, the <code>org.osgi.service.log<
                 may be trademarks or registered trademarks of their respective owners.
                 </div>
                 <div class="timestamp span3 offset2">
-                Rev. 1464894 by clement on Fri, 5 Apr 2013 08:54:50 +0000
+                Rev. 1530195 by guillaume on Tue, 8 Oct 2013 09:12:32 +0000
                 </div>
             </div>
         </footer>