You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bu...@apache.org on 2016/11/21 20:51:43 UTC

svn commit: r1001440 - in /websites/staging/sling/trunk/content: ./ documentation/bundles/datasource-providers.html documentation/development/version-policy.html documentation/tutorials-how-tos/jackrabbit-persistence.html

Author: buildbot
Date: Mon Nov 21 20:51:43 2016
New Revision: 1001440

Log:
Staging update by buildbot for sling

Modified:
    websites/staging/sling/trunk/content/   (props changed)
    websites/staging/sling/trunk/content/documentation/bundles/datasource-providers.html
    websites/staging/sling/trunk/content/documentation/development/version-policy.html
    websites/staging/sling/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.html

Propchange: websites/staging/sling/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Nov 21 20:51:43 2016
@@ -1 +1 @@
-1770754
+1770755

Modified: websites/staging/sling/trunk/content/documentation/bundles/datasource-providers.html
==============================================================================
--- websites/staging/sling/trunk/content/documentation/bundles/datasource-providers.html (original)
+++ websites/staging/sling/trunk/content/documentation/bundles/datasource-providers.html Mon Nov 21 20:51:43 2016
@@ -167,7 +167,7 @@ http://localhost:8080/system/console/con
 <h3 id="convert-driver-jars-to-bundle">Convert Driver jars to Bundle<a class="headerlink" href="#convert-driver-jars-to-bundle" title="Permanent link">&para;</a></h3>
 <p>Most of the JDBC driver jars have the required OSGi headers and can be directly deployed to OSGi container
 as bundles. However some of the drivers e.g. Postgres are not having such headers and hence need to be
-converted to OSGi bundles. For them we can use the <a href="http://www.aqute.biz/Bnd/Wrapping">Bnd Wrap</a> command.</p>
+converted to OSGi bundles. For them we can use the <a href="http://bnd.bndtools.org/chapters/390-wrapping.html">Bnd Wrap</a> command.</p>
 <p>For example to convert the Postgres driver jar follow the steps below</p>
 <div class="codehilite"><pre>$ <span class="n">wget</span> <span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">github</span><span class="p">.</span><span class="n">com</span><span class="o">/</span><span class="n">bndtools</span><span class="o">/</span><span class="n">bnd</span><span class="o">/</span><span class="n">releases</span><span class="o">/</span><span class="n">download</span><span class="o">/</span>2<span class="p">.</span>3<span class="p">.</span>0<span class="p">.</span><span class="n">REL</span><span class="o">/</span><span class="n">biz</span><span class="p">.</span><span class="n">aQute</span><span class="p">.</span><span class="n">bnd</span><span class="o">-</span>2<span class="p">.</span>3<span class="p">.</span>0<span class="p">.</span><span class="n">jar</span> <span class="o">-</span><span class="n">O</span> <span class="n">bnd</span><span class="p">.</span><span class="n">jar</span>
 $ <span class="n">wget</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">jdbc</span><span class="p">.</span><span class="n">postgresql</span><span class="p">.</span><span class="n">org</span><span class="o">/</span><span class="n">download</span><span class="o">/</span><span class="n">postgresql</span><span class="o">-</span>9<span class="p">.</span>3<span class="o">-</span>1101<span class="p">.</span><span class="n">jdbc41</span><span class="p">.</span><span class="n">jar</span>
@@ -224,7 +224,7 @@ OSGi config.</p>
 <span class="nt">&lt;/dependency&gt;</span>
 </pre></div>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1652928 by chetanm on Mon, 19 Jan 2015 07:18:29 +0000
+        Rev. 1770755 by sseifert on Mon, 21 Nov 2016 20:51:34 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project

Modified: websites/staging/sling/trunk/content/documentation/development/version-policy.html
==============================================================================
--- websites/staging/sling/trunk/content/documentation/development/version-policy.html (original)
+++ websites/staging/sling/trunk/content/documentation/development/version-policy.html Mon Nov 21 20:51:43 2016
@@ -195,7 +195,7 @@ Please note that this page is currently
 </pre></div>
 
 
-<p>See <a href="http://www.aqute.biz/Bnd/Versioning">bnd Versioning</a> for details.</p>
+<p>See <a href="http://bnd.bndtools.org/chapters/170-versioning.html">bnd Versioning</a> for details.</p>
 <h2 id="version-number-syntax">Version Number Syntax<a class="headerlink" href="#version-number-syntax" title="Permanent link">&para;</a></h2>
 <p>As a small reminder, this is how a version number is constructed:  In OSGi version numbers are composed of four (4) segments: three integers and one string named <em>major</em>.<em>minor</em>.<em>micro</em>.<em>qualifier</em>.</p>
 <p>Each segment captures a different intent:</p>
@@ -343,17 +343,17 @@ Please note that this page is currently
 
 <p>This allows for the implementation to work correctly with bug fixed package exports but as soon as there are any <em>externally visible</em> changes, the implementation bundle has to be adapted -- even if this just means increasing the upper version bound in the <code>Import-Package</code> statement thus guaranteeing compliance (again).</p>
 <h3 id="future_1">Future<a class="headerlink" href="#future_1" title="Permanent link">&para;</a></h3>
-<p>Recent versions of the bnd library support automatic differentiation between <em>use</em> and <em>implementation</em> of API and to set the import version ranges accordingly. See <a href="http://www.aqute.biz/Bnd/Versioning">bnd Versioning</a> for details.</p>
+<p>Recent versions of the bnd library support automatic differentiation between <em>use</em> and <em>implementation</em> of API and to set the import version ranges accordingly. See <a href="http://bnd.bndtools.org/chapters/170-versioning.html">bnd Versioning</a> for details.</p>
 <h2 id="references">References<a class="headerlink" href="#references" title="Permanent link">&para;</a></h2>
 <ul>
 <li><a href="http://markmail.org/thread/zshobgjwtqrncajt">Version Numbers</a> -- The mail thread discussing version numbering</li>
 <li><a href="http://blog.meschberger.ch/2009/10/on-version-numbers.html">On Version Numbers</a> -- Blog about version numbers</li>
 <li><a href="http://wiki.eclipse.org/index.php/Version_Numbering">Version Numbering</a> -- An Eclipse paper on assigning version numbers. Very good read.</li>
 <li><a href="http://www.osgi.org/wiki/uploads/Links/SemanticVersioning.pdf">Semantic Versioning</a> -- An OSGi Alliance paper on semantic versioning.</li>
-<li><a href="http://www.aqute.biz/Bnd/Versioning">bnd Versioning</a> -- Describes how the bnd library used by the Maven Bundle plugin supports package versioning</li>
+<li><a href="http://bnd.bndtools.org/chapters/170-versioning.html">bnd Versioning</a> -- Describes how the bnd library used by the Maven Bundle plugin supports package versioning</li>
 </ul>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1770754 by sseifert on Mon, 21 Nov 2016 20:48:56 +0000
+        Rev. 1770755 by sseifert on Mon, 21 Nov 2016 20:51:34 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project

Modified: websites/staging/sling/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.html
==============================================================================
--- websites/staging/sling/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.html (original)
+++ websites/staging/sling/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.html Mon Nov 21 20:51:43 2016
@@ -126,7 +126,7 @@ h2:hover > .headerlink, h3:hover > .head
 <p>When you are not using the Derby persistence manager, you may safely remove the Derby bundle from your Sling instance.</p>
 <h2 id="jdbc-driver">JDBC Driver<a class="headerlink" href="#jdbc-driver" title="Permanent link">&para;</a></h2>
 <p>The hardest thing to do is probably getting the JDBC driver for your database. One option is to look at the bundles provided by Spring Source in their repository at <a href="http://www.springsource.com/repository/">http://www.springsource.com/repository/</a>.</p>
-<p>Another option is to create the bundle on your own using Peter Kriens' <a href="http://www.aqute.biz/Bnd/Bnd">bnd Tool</a>:</p>
+<p>Another option is to create the bundle on your own using Peter Kriens' <a href="http://bnd.bndtools.org/">bnd Tool</a>:</p>
 <ol>
 <li>Get the JDBC driver for your database from the driver provider</li>
 <li>
@@ -203,7 +203,7 @@ This needs to be reconfigured and restar
 <h2 id="credits">Credits<a class="headerlink" href="#credits" title="Permanent link">&para;</a></h2>
 <p>This description is based on Tony Giaccone's description <a href="http://markmail.org/message/wlbfrukmjjsl33hh">Swapping Postgres for Derby</a> sent to the Sling Users mailing list.</p>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1770754 by sseifert on Mon, 21 Nov 2016 20:48:56 +0000
+        Rev. 1770755 by sseifert on Mon, 21 Nov 2016 20:51:34 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project