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 2013/09/26 07:59:13 UTC

svn commit: r879937 - in /websites/staging/olingo/trunk/content: ./ doc/tutorials/basicread.html

Author: buildbot
Date: Thu Sep 26 05:59:12 2013
New Revision: 879937

Log:
Staging update by buildbot for olingo

Modified:
    websites/staging/olingo/trunk/content/   (props changed)
    websites/staging/olingo/trunk/content/doc/tutorials/basicread.html

Propchange: websites/staging/olingo/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Sep 26 05:59:12 2013
@@ -1 +1 @@
-1526382
+1526388

Modified: websites/staging/olingo/trunk/content/doc/tutorials/basicread.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/tutorials/basicread.html (original)
+++ websites/staging/olingo/trunk/content/doc/tutorials/basicread.html Thu Sep 26 05:59:12 2013
@@ -71,18 +71,18 @@
             
             <h1 id="read-scenario">Read Scenario</h1>
 <hr />
-<h3 id="how-to-guide-for-building-a-sample-odata-service-with-the-odata-library-java">How To Guide for building a Sample OData service with the OData Library (Java)</h3>
+<h2 id="how-to-guide-for-building-a-sample-odata-service-with-the-odata-library-java">How To Guide for building a Sample OData service with the OData Library (Java)</h2>
 <p>This How To Guide prerequisites a Project Setup (Git, Maven, etc.) and then shows how to develop an OData Service and make the same available.
 It shows in addition how to implement the Model Provider to expose the Entity Data Model (EDM) and the Data Provider to expose the runtime data.
 The implementation of the Data Provider (ODataSingleProcessor) illustrates how to expose a single entry, a feed and how to follow associations.</p>
 <h2 id="prerequisites">Prerequisites</h2>
-<p><a href="../project-setup.html">Project Setup</a> is successfully done.</p>
+<p><a href="../project-setup.html">Project Setup</a> is successfully done and the project is ready to start in your <code>$ODATA_PROJECT_HOME</code>.</p>
 <h2 id="implement-your-odata-service">Implement your OData Service</h2>
 <h3 id="shortcut">Shortcut</h3>
 <p>As a shortcut you can download the <a href="apache-olingo-tutorial-basic_read">Olingo Tutorial 'Basic-Read' Project</a>.</p>
 <h3 id="deployment-descriptor">Deployment Descriptor</h3>
 <ul>
-<li>The sample-web project contains a Deployment Descriptor. Create the web.xml file in the <code>olingo.odata2.sample.cars.web</code> project by generating a Deployment Descriptor Stub. Replace the xml in the stub with the following deployment descriptor xml. </li>
+<li>The sample-web project contains a Deployment Descriptor. Create the <code>web.xml</code> file in the <code>$ODATA_PROJECT_HOME\olingo.odata2.sample.cars.web</code> project by generating a Deployment Descriptor Stub. Replace the xml in the stub with the following deployment descriptor xml. </li>
 </ul>
 <h6 id="sample-code">Sample Code</h6>
 <div class="codehilite"><pre><span class="cp">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;</span>
@@ -114,7 +114,7 @@ The implementation of the Data Provider 
 
 <ul>
 <li>
-<p>Start the command line tool, goto folder <em>~git_repository~\org.apache.olingo.odata2.sample.cars</em> and enter
+<p>Start the command line tool, go to folder <em>$ODATA_PROJECT_HOME\org.apache.olingo.odata2.sample.cars</em> and enter
 <code>mvn clean install</code> to build your projects </p>
 </li>
 <li>