Skip to content

Commit

Permalink
Fix absolute links in moved source files
Browse files Browse the repository at this point in the history
  • Loading branch information
gathogojr committed Sep 27, 2023
1 parent 8fb3f29 commit f80747c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions pages/get-started/advanced-tutorial.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
<div class="row">
<div class="col-2-3">
<p>
The Open Data Protocol (OData) is a data access protocol built on core protocols like HTTP and commonly accepted methodologies like REST for the web. There are various kinds of <a href="https://www.odata.org/libraries/">libraries</a> and <a href="https://www.odata.org/ecosystem/">tools</a> that can be used to consume OData services. But for beginners and those who want to write their own libraries, the pure HTTP requests and responses are also very important. This documentation will not cover every feature details for OData V4 services but will try to cover various typical scenarios. If you want to have a more detailed understanding, please refer to <a href="https://www.odata.org/documentation/">OData Documentation</a>.
The Open Data Protocol (OData) is a data access protocol built on core protocols like HTTP and commonly accepted methodologies like REST for the web. There are various kinds of <a href="/libraries/">libraries</a> and <a href="/ecosystem/">tools</a> that can be used to consume OData services. But for beginners and those who want to write their own libraries, the pure HTTP requests and responses are also very important. This documentation will not cover every feature details for OData V4 services but will try to cover various typical scenarios. If you want to have a more detailed understanding, please refer to <a href="/documentation/">OData Documentation</a>.
</p>
<h4>Note:</h4>
<ul>
<li>This is the advanced section. For topics like requesting data, query options, basic data modification, operations and etc, please refer to <a href="https://www.odata.org/getting-started/basic-tutorial/">Basic Section</a>.</li>
<li>This is the advanced section. For topics like requesting data, query options, basic data modification, operations and etc, please refer to <a href="/getting-started/basic-tutorial/">Basic Section</a>.</li>
<li>All these are based on OData V4 sample service <a href="https://services.odata.org/V4/TripPinServiceRW">TripPin</a>, please just replace the <code>serviceRoot</code> below with the URL <code>https://services.odata.org/V4/TripPinServiceRW</code>. TripPin now supports ETag, so for data modification topics, you should first using GET on TripPin (eg. GET serviceRoot/People) to get the section information in the payload then use the URL with section for data modification examples. (something looks like https://services.odata.org/V4/(S(flat4rgegiueineatspfdku1))/TripPinServiceRW)</li>
<li>You may use <a href="https://www.telerik.com/fiddler">Fiddler</a> to run the request (especially the complex ones of data modification) and get the JSON response.</li>
<li>In TripPin service, ETag is currently enabled on entity <em>Person</em>. We omit the ETag related headers in request headers for short, please go to the <a href="https://www.odata.org/getting-started/basic-tutorial/#etag">ETag Section</a> for detailed information.</li>
<li>We will keep improving this by adding contents and fixing bugs. You can provide your feedbacks and ask questions using <a href="https://www.odata.org/join-the-odata-discussion/">OData Mailling List</a>.</li>
<li>In TripPin service, ETag is currently enabled on entity <em>Person</em>. We omit the ETag related headers in request headers for short, please go to the <a href="/getting-started/basic-tutorial/#etag">ETag Section</a> for detailed information.</li>
<li>We will keep improving this by adding contents and fixing bugs. You can provide your feedbacks and ask questions using <a href="/join-the-odata-discussion/">OData Mailling List</a>.</li>
</ul>
<div id="singleton">
<h2 class="page-header">Singleton</h2>
Expand Down
8 changes: 4 additions & 4 deletions pages/get-started/basic-tutorial.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
<!--body data-spy="scroll" data-target="nav"-->
<div class="row">
<div class="col-2-3">
<p>The Open Data Protocol (OData) is a data access protocol built on core protocols like HTTP and commonly accepted methodologies like REST for the web. There are various kinds of <a href="https://www.odata.org/libraries/">libraries</a> and <a href="https://www.odata.org/ecosystem/">tools</a> can be used to consume OData services. But for beginners and those who want to write their own libraries, the pure HTTP requests and responses are also very important. This documentation will not cover every feature details for OData V4 services but will try to cover various typical scenarios. If you want to have a more detailed understanding, please refer to <a href="https://www.odata.org/documentation/">OData Documentation</a>. </p>
<p>The Open Data Protocol (OData) is a data access protocol built on core protocols like HTTP and commonly accepted methodologies like REST for the web. There are various kinds of <a href="/libraries/">libraries</a> and <a href="/ecosystem/">tools</a> can be used to consume OData services. But for beginners and those who want to write their own libraries, the pure HTTP requests and responses are also very important. This documentation will not cover every feature details for OData V4 services but will try to cover various typical scenarios. If you want to have a more detailed understanding, please refer to <a href="/documentation/">OData Documentation</a>. </p>
<p>You can now use the <b><a href="/getting-started/learning-odata-on-postman">Postman collections</a></b> to learn OData in an interactive way.</p>
<h4>Note:</h4>
<ul>
<li>This is the Basic section. For topics like Singleton, Inheritance, Open Type, Containment and Batch, please refer to <a href="https://www.odata.org/getting-started/advanced-tutorial/">Advanced Section</a>.</li>
<li>This is the Basic section. For topics like Singleton, Inheritance, Open Type, Containment and Batch, please refer to <a href="/getting-started/advanced-tutorial/">Advanced Section</a>.</li>
<li>All these are based on OData V4 sample service <a href="https://services.odata.org/V4/TripPinServiceRW">TripPin</a>, please just replace the <code>serviceRoot</code> below with the URL <code>https://services.odata.org/V4/TripPinServiceRW</code>. TripPin now supports ETag, so for data modification topics, you should first using GET on TripPin (eg. GET serviceRoot/People) to get the section information in the payload then use the URL with section for data modification examples. (something looks like <code>https://services.odata.org/V4/(S(flat4rgegiueineatspfdku1))/TripPinServiceRW)</code></li>
<li>You may use <a href="https://www.telerik.com/fiddler">Fiddler</a> to run the request (especially the complex ones of data modification) and get the JSON response.</li>
<li>In TripPin service, ETag is currently enabled on entity <em>Person</em>. We omit the ETag related headers in request headers for short, please go to the <a href="https://www.odata.org/getting-started/basic-tutorial/#etag">ETag Section</a> for detailed information.</li>
<li>We will keep improving this by adding contents and fixing bugs. You can provide your feedbacks and ask questions using <a href="https://www.odata.org/join-the-odata-discussion/">OData Mailling List</a>.</li>
<li>In TripPin service, ETag is currently enabled on entity <em>Person</em>. We omit the ETag related headers in request headers for short, please go to the <a href="/getting-started/basic-tutorial/#etag">ETag Section</a> for detailed information.</li>
<li>We will keep improving this by adding contents and fixing bugs. You can provide your feedbacks and ask questions using <a href="/join-the-odata-discussion/">OData Mailling List</a>.</li>
</ul>
<div id="requestData">
<h2 class="page-header">Requesting Data</h2>
Expand Down

0 comments on commit f80747c

Please sign in to comment.