You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by bu...@apache.org on 2018/12/12 04:18:02 UTC

svn commit: r1037736 - in /websites/staging/olingo/trunk/content: ./ doc/javascript/ doc/odata2/tutorials/ doc/odata4/tutorials/action/ doc/odata4/tutorials/batch/ doc/odata4/tutorials/deep_insert/ doc/odata4/tutorials/media/ doc/odata4/tutorials/navig...

Author: buildbot
Date: Wed Dec 12 04:18:02 2018
New Revision: 1037736

Log:
Staging update by buildbot for olingo

Modified:
    websites/staging/olingo/trunk/content/   (props changed)
    websites/staging/olingo/trunk/content/doc/javascript/project-setup.html
    websites/staging/olingo/trunk/content/doc/odata2/tutorials/ExtendingtheEDM.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_action.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/media/tutorial_media.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/prerequisites/prerequisites.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/readep/tutorial_readep.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_es/tutorial_sqo_es.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_f/tutorial_sqo_f.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_o/tutorial_sqo_o.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_tcs/tutorial_sqo_tcs.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.html
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/write/tutorial_write.html

Propchange: websites/staging/olingo/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 12 04:18:02 2018
@@ -1 +1 @@
-1848717
+1848725

Modified: websites/staging/olingo/trunk/content/doc/javascript/project-setup.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/javascript/project-setup.html (original)
+++ websites/staging/olingo/trunk/content/doc/javascript/project-setup.html Wed Dec 12 04:18:02 2018
@@ -140,7 +140,7 @@ $ <span class="n">java</span> <span clas
 </ul>
 <h3 id="download-source">Download source<a class="headerlink" href="#download-source" title="Permanent link">&para;</a></h3>
 <p>Open your (git-)bash and use the following commonand:</p>
-<p><code>git clone https://git-wip-us.apache.org/repos/asf/olingo-odata4-js</code></p>
+<p><code>git clone https://gitbox.apache.org/repos/asf/olingo-odata4-js</code></p>
 <h3 id="install-the-project-dependencies">Install the project dependencies<a class="headerlink" href="#install-the-project-dependencies" title="Permanent link">&para;</a></h3>
 <h5 id="javascript">JavaScript<a class="headerlink" href="#javascript" title="Permanent link">&para;</a></h5>
 <p>After downloading navigate into the project folder via</p>

Modified: websites/staging/olingo/trunk/content/doc/odata2/tutorials/ExtendingtheEDM.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata2/tutorials/ExtendingtheEDM.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata2/tutorials/ExtendingtheEDM.html Wed Dec 12 04:18:02 2018
@@ -100,7 +100,7 @@
 h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
 <h1 id="extending-the-edm-generated-from-the-jpa-models">Extending the EDM Generated from the JPA Models<a class="headerlink" href="#extending-the-edm-generated-from-the-jpa-models" title="Permanent link">&para;</a></h1>
 <p>The Entity Data Model (EDM) generated from the JPA models can be extended with new Entity Types, Complex Types and also the existing EDM elements can be modified by implementing the interface method <code>org.apache.olingo.odata2.jpa.processor.api.model.JPAEdmExtension.extendJPAEdmSchema</code>.</p>
-<p>Link to the code - <a href="https://git-wip-us.apache.org/repos/asf?p=olingo-odata2.git;a=blob;f=odata2-jpa-processor/jpa-web/src/main/java/org/apache/olingo/odata2/jpa/processor/ref/extension/SalesOrderProcessingExtension.java;h=3dacd7e727528cb79cb3d4a878ac53d0a4b25277;hb=ecdc476">Support EDM Extension</a></p>
+<p>Link to the code - <a href="https://gitbox.apache.org/repos/asf?p=olingo-odata2.git;a=blob;f=odata2-jpa-processor/jpa-web/src/main/java/org/apache/olingo/odata2/jpa/processor/ref/extension/SalesOrderProcessingExtension.java;h=3dacd7e727528cb79cb3d4a878ac53d0a4b25277;hb=ecdc476">Support EDM Extension</a></p>
 <h4 id="how-to-add-a-complex-type-to-an-edm">How to Add a Complex Type to an EDM<a class="headerlink" href="#how-to-add-a-complex-type-to-an-edm" title="Permanent link">&para;</a></h4>
 <p>Consider a scenario where we have a Plain Old Java Object (POJO) in the OrderValue Java class and let us try to transform this POJO into a Complex Type in the EDM.</p>
 <h6 id="pojo-in-ordervalue-java-class">POJO in OrderValue Java Class<a class="headerlink" href="#pojo-in-ordervalue-java-class" title="Permanent link">&para;</a></h6>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_action.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_action.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_action.html Wed Dec 12 04:18:02 2018
@@ -128,7 +128,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we’ll implement a function import and an action import as well.</p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory <code>/samples/tutorials/p9_action</code></p>
 <p>The <a href="http://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part1-protocol/odata-v4.0-errata02-os-part1-protocol-complete.html#_Toc406398201">OData V4 specification</a> gives us a definition what <em>Functions</em>, <em>Actions</em> are:</p>
@@ -206,7 +206,7 @@ root.</p>
 <p>As you read in the definition, actions can have side effects (modifying the data) but cannot be composed like functions.</p>
 <h2 id="preparation">Preparation<a class="headerlink" href="#preparation" title="Permanent link">&para;</a></h2>
 <p>You should read the previous tutorials first to have an idea how to read entities and entity collections. In addition the following code is based on the write tutorial merged with the navigation tutorial.</p>
-<p>As a shortcut you should checkout the prepared tutorial project in the <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a> in folder /samples/tutorials/p9_action_preparation.</p>
+<p>As a shortcut you should checkout the prepared tutorial project in the <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a> in folder /samples/tutorials/p9_action_preparation.</p>
 <p>Afterwards do a Deploy and run: it should be working. At this state you can perform CRUD operations and do navigations between products and categories.</p>
 <h2 id="implementation">Implementation<a class="headerlink" href="#implementation" title="Permanent link">&para;</a></h2>
 <p>We use the given data model you are familiar with. To keep things simple we implement one function import and one action import.</p>
@@ -668,7 +668,7 @@ A cleverer implementation can handle bot
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html Wed Dec 12 04:18:02 2018
@@ -128,7 +128,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we’ll implement a bound action and function.</p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory <code>/samples/tutorials/p9_action</code></p>
 <p>The <a href="http://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part1-protocol/odata-v4.0-errata02-os-part1-protocol-complete.html#_Toc406398201">OData V4 specification</a> gives us a definition what <em>Functions</em>, <em>Actions</em> are:</p>
@@ -197,7 +197,7 @@ Actions/Functions whose IsBound attribut
 
 <h2 id="preparation">Preparation<a class="headerlink" href="#preparation" title="Permanent link">&para;</a></h2>
 <p>You should read the previous tutorials first to have an idea how to read entities and entity collections. </p>
-<p>As a shortcut you should checkout the prepared tutorial project in the <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a> in folder /samples/tutorials/p9_action_preparation.</p>
+<p>As a shortcut you should checkout the prepared tutorial project in the <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a> in folder /samples/tutorials/p9_action_preparation.</p>
 <p>Afterwards do a Deploy and run: it should be working. At this state you can perform CRUD operations and do navigations between products and categories.</p>
 <h2 id="implementation">Implementation<a class="headerlink" href="#implementation" title="Permanent link">&para;</a></h2>
 <p>We use the given data model you are familiar with. To keep things simple we implement one bound action and one bound function.</p>
@@ -897,7 +897,7 @@ Like by reading entity collections, the
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html Wed Dec 12 04:18:02 2018
@@ -103,7 +103,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we’ll implement batch requests.</p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory /samples/tutorials/p11_batch</p>
 <p><strong>Table of Contents</strong></p>
@@ -439,7 +439,7 @@ Let us try what is happing if we send a
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.html Wed Dec 12 04:18:02 2018
@@ -103,7 +103,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we will implement the handling of deep insert requests.</p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory /samples/tutorials/p12_deep_insert</p>
 <p><strong>Table of Contents</strong></p>
@@ -145,7 +145,7 @@ Such a request is issued againest the UR
 
 <h1 id="2-preparation">2. Preparation<a class="headerlink" href="#2-preparation" title="Permanent link">&para;</a></h1>
 <p>You should read the previous tutorials first to have an idea how to read and write entities. In addition the following code is based on the write tutorial merged with the navigation tutorial. <strong>It is strongly recommended to have a look at the prepared code.</strong> There are some changes how related entites are linked together. More details are descripted in the implementation chapter.</p>
-<p>As a shortcut you should checkout the prepared tutorial project in the <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a> in folder /samples/tutorials/p12_deep_insert_preparation.</p>
+<p>As a shortcut you should checkout the prepared tutorial project in the <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a> in folder /samples/tutorials/p12_deep_insert_preparation.</p>
 <p>Afterwards do a Deploy and run: it should be working. At this state you can perform CRUD operations and do navigations between products and categories.</p>
 <h1 id="2-implementation">2. Implementation<a class="headerlink" href="#2-implementation" title="Permanent link">&para;</a></h1>
 <p>Before we start with the implementation, please have a look at the class <code>myservice.mynamespace.data.Storage</code>. In difference to the <a href="http://olingo.apache.org/doc/odata4/tutorials/navigation/tutorial_navigation.html">navigation tutorial</a> the relations between two entities can not be hard coded because we would like to create and change relations between entities dynamically. In the constructor of the data storage the creation of the sample data is called. After that the method <code>linkProductsAndCategories</code>is called. This methods sets a few links between the just created entities. <strong>The linked entites are stored as navigation links</strong></p>
@@ -324,7 +324,7 @@ If it is the first category you created,
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/media/tutorial_media.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/media/tutorial_media.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/media/tutorial_media.html Wed Dec 12 04:18:02 2018
@@ -103,7 +103,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we will implement a media entity set.</p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>.
 This tutorial can be found in subdirectory /samples/tutorials/p10_media</p>
 <p><strong>Table of Contents</strong></p>
@@ -566,7 +566,7 @@ All methods have to be implemented in cl
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.html Wed Dec 12 04:18:02 2018
@@ -103,7 +103,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we will learn how to implement navigation between 2 Entity Types in an OData V4 service.</p>
 <p><strong>Note</strong>  </p>
-<p>The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+<p>The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory <em>\samples\tutorials\p4_navigation</em></p>
 <p><strong>Disclaimer</strong>  </p>
@@ -830,7 +830,7 @@ Check the <em>Links</em> section for mor
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/prerequisites/prerequisites.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/prerequisites/prerequisites.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/prerequisites/prerequisites.html Wed Dec 12 04:18:02 2018
@@ -112,8 +112,8 @@ and have installed at least the followin
 <p>To get the source code of the tutorials, please perform the follwing steps:</p>
 <ul>
 <li>
-<p>Clone the  project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>    </p>
-<p><em>> git clone https://git-wip-us.apache.org/repos/asf/olingo-odata4</em></p>
+<p>Clone the  project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>    </p>
+<p><em>> git clone https://gitbox.apache.org/repos/asf/olingo-odata4</em></p>
 </li>
 <li>
 <p>Checkout the tag 4.0.0</p>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/read/tutorial_read.html Wed Dec 12 04:18:02 2018
@@ -101,7 +101,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h1 id="how-to-build-an-odata-service-with-olingo-v4">How to build an OData Service with Olingo V4<a class="headerlink" href="#how-to-build-an-odata-service-with-olingo-v4" title="Permanent link">&para;</a></h1>
 <h2 id="part-1-read-scenario">Part 1: Read scenario<a class="headerlink" href="#part-1-read-scenario" title="Permanent link">&para;</a></h2>
 <p>This tutorial guides you through the steps required to write an OData Service based on the Olingo OData 4.0 Library for Java (based on current <em>Olingo 4.0.0</em> which can be get via the <a href="../../download.html">Download-Page</a>).</p>
-<p>The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+<p>The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>.
 This tutorial can be found in subdirectory <em>\samples\tutorials\p1_read</em></p>
 <p>We will create a Web Application and deploy it on a local Tomcat server.
@@ -934,7 +934,7 @@ If you face problems related to the serv
 <h1 id="6-summary">6. Summary<a class="headerlink" href="#6-summary" title="Permanent link">&para;</a></h1>
 <p>Finally, we have created our first OData service based on the V4 version of the OData specification and using the V4 server library provided by <em>Olingo</em>.
 Our first OData service is very simple; it only allows invoking one entity collection, apart from the Service Document and the Metadata Document.</p>
-<p>The final source code result can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+<p>The final source code result can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>.</p>
 <h1 id="links">Links<a class="headerlink" href="#links" title="Permanent link">&para;</a></h1>
 <h3 id="tutorials">Tutorials<a class="headerlink" href="#tutorials" title="Permanent link">&para;</a></h3>
@@ -955,7 +955,7 @@ A detailed description how to checkout t
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/readep/tutorial_readep.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/readep/tutorial_readep.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/readep/tutorial_readep.html Wed Dec 12 04:18:02 2018
@@ -109,7 +109,7 @@ These 2 topics will be covered in the pr
 <p>Note that this tutorial doesn’t cover modifying operations like create, update and delete.
 Such operations will be the focus of the Olingo V4 tutorial no. 3</p>
 <p><strong>Note</strong><br />
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory <em>\samples\tutorials\p2_readep</em></p>
 <p><strong>Disclaimer</strong><br />
@@ -857,7 +857,7 @@ It has been based on a simple OData mode
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_es/tutorial_sqo_es.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_es/tutorial_sqo_es.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_es/tutorial_sqo_es.html Wed Dec 12 04:18:02 2018
@@ -104,7 +104,7 @@ h2:hover > .headerlink, h3:hover > .head
 <p>In the present tutorial, we will continue implementing <strong>OData system query options</strong>.
 After we have learned the rather simple system query options <code>$top</code>, <code>$skip</code> and <code>$count</code> in the previous tutorial, we’re going to deal with <code>$select</code> and <code>$expand</code> in the present tutorial.</p>
 <p><strong>Note:</strong><br />
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory <em>\samples\tutorials\p6_queryoptions-es</em></p>
 <p><strong>Disclaimer:</strong><br />
@@ -546,7 +546,7 @@ The same system query option expressions
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_f/tutorial_sqo_f.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_f/tutorial_sqo_f.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_f/tutorial_sqo_f.html Wed Dec 12 04:18:02 2018
@@ -103,7 +103,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we’ll continue implementing OData system query options, this time focusing on <code>$filter</code></p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory <em>\samples\tutorials\p8_queryoptions-f</em></p>
 <p><strong>Table of Contents</strong></p>
@@ -638,7 +638,7 @@ This method is been called if the curren
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_o/tutorial_sqo_o.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_o/tutorial_sqo_o.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_o/tutorial_sqo_o.html Wed Dec 12 04:18:02 2018
@@ -103,7 +103,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial, we will continue implementing OData system query options, this time focusing on <code>$orderby</code></p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>. <br />
 This tutorial can be found in subdirectory <em>\samples\tutorials\p7_queryoptions-o</em></p>
 <p><strong>Disclaimer:</strong>
@@ -370,7 +370,7 @@ We have decided to not go for the advanc
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_tcs/tutorial_sqo_tcs.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_tcs/tutorial_sqo_tcs.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/sqo_tcs/tutorial_sqo_tcs.html Wed Dec 12 04:18:02 2018
@@ -138,7 +138,7 @@ However, the user can change the order o
 <a href="http://localhost:8080/DemoService/DemoService.svc/Products?$count=true">http://localhost:8080/DemoService/DemoService.svc/Products?$count=true</a></p>
 <p><img alt="ProductsWith$count" src="responseCount.jpg" title="The full list of Products with the count added in the payload" /></p>
 <p><strong>Note:</strong>
-TThe final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+TThe final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>.
 This tutorial can be found in subdirectory <em>\samples\tutorials\p5_queryoptions-tcs</em></p>
 <p><strong>Disclaimer:</strong>
@@ -465,7 +465,7 @@ More system query options will be treate
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.html Wed Dec 12 04:18:02 2018
@@ -104,7 +104,7 @@ h2:hover > .headerlink, h3:hover > .head
 <h2 id="preface">Preface<a class="headerlink" href="#preface" title="Permanent link">&para;</a></h2>
 <p>In the present tutorial we will add streaming support for Entity Collections on a per Entity granularity.</p>
 <p><strong>Note:</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.<br />
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.<br />
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>.<br />
 This tutorial can be found in the <code>DemoService-Streaming</code> module in the projects subdirectory <code>/samples/tutorials/pe_streaming</code></p>
 <p><strong>Table of Contents</strong></p>
@@ -387,7 +387,7 @@ Based on the requirements of the OData s
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/write/tutorial_write.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/write/tutorial_write.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/write/tutorial_write.html Wed Dec 12 04:18:02 2018
@@ -105,7 +105,7 @@ h2:hover > .headerlink, h3:hover > .head
 <p>In the first two tutorials (<a href="/doc/odata4/tutorials/read/tutorial_read.html">Read Collection</a> and <a href="/doc/odata4/tutorials/readep/tutorial_readep.html">Read Entity</a>), we’ve learned how to build a simple OData service that supports read operations for collection, single entity and property.</p>
 <p>In the present tutorial, will cover the write operations, which means creating an entity, modifying an existing entity and deleting an existing entity.</p>
 <p><strong>Note</strong>
-The final source code can be found in the project <a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">git repository</a>.
+The final source code can be found in the project <a href="https://gitbox.apache.org/repos/asf/olingo-odata4">git repository</a>.
 A detailed description how to checkout the tutorials can be found <a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">here</a>.
 This tutorial can be found in subdirectory <em>\samples\tutorials\p3_write</em></p>
 <p><strong>Disclaimer</strong>
@@ -459,7 +459,7 @@ It has been based on a simple OData mode
 </ul>
 <h3 id="code-and-repository">Code and Repository<a class="headerlink" href="#code-and-repository" title="Permanent link">&para;</a></h3>
 <ul>
-<li><a href="https://git-wip-us.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
+<li><a href="https://gitbox.apache.org/repos/asf/olingo-odata4">Git Repository</a></li>
 <li><a href="/doc/odata4/tutorials/prerequisites/prerequisites.html">Guide - To fetch the tutorial sources</a></li>
 <li><a href="http://www.apache.org/dyn/closer.lua/olingo/odata4/4.0.0/DemoService_Tutorial.zip">Demo Service source code as zip file (contains all tutorials)</a></li>
 </ul>