Skip to content

Commit

Permalink
Minor changes based on Cloudi 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brucekissinger committed Jan 7, 2015
1 parent 0224432 commit f183036
Show file tree
Hide file tree
Showing 18 changed files with 99 additions and 47 deletions.
8 changes: 0 additions & 8 deletions Book_Recommendation_Application.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,6 @@ In this tutorial, the
`JSON protocol <http://www.wikipedia.org/wiki/Json>`_
will be used with the following libraries:


* PHP -
TBD

* Java -
TBD

Expand Down Expand Up @@ -177,11 +173,7 @@ A diagram showing the database tables and their interrelationships is shown belo

The primary tables are the **items** and **users** table. Several cross reference tables exist including:

* **item_downloads** - stores how many times an item has been downloaded as reported by the source site.
* **user_items** - tracks which items a user has downloaded and if they have submitted a rating
* **user_item_recommendations** - contains recommendations for a particular user
* **user_item_ratings** - holds the rating value that a user submits for an item

The **lcc_codes** table stores the descriptions of Library of Congress codes.
The **lcsh_codes** table stores the descriptions of Library of Congress Subject Heading codes.

2 changes: 1 addition & 1 deletion Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ here in case you want to look at the complete implementation.
This tutorial assumes that you have successfully `installed CloudI <http://cloudi.org/faq.html#3_Overview>`_ on a development system and can successfully start and stop it.

.. note::
The examples shown here were developed on a machine using CloudI version 1.3.3 running Ubuntu Linux version 14.04 operating system.
The examples shown here were developed on a machine using CloudI version 1.4.0 running Ubuntu Linux version 14.04 operating system.


.. index::
Expand Down
13 changes: 12 additions & 1 deletion Starting_Out.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,18 @@ For initial development, the following suggested changes should be made.

.. tip::

When you configure the CloudI installation, you can easily disable the integration test services using the **--with-integration-test=no** option.
Unfortunately, you can not just remove all the test services, because some of them are used to implement core functions that you will likely need.


The Book Recommendation application requires the services shown in the following table.

================= =========================== =========================================
Subscription Path Service Name Comments
================= =========================== =========================================
/cloudi/api cloudi_service_api_requests
/tests/websockets cloudi_service_http_cowboy
/tests/http cloudi_service_http_cowboy There are two entries for different ports
================= =========================== =========================================


4. It is important to realize that all services listed in the **cloudi.conf** file must start successfully when the cloud is first started.
Expand Down
Binary file modified _build/doctrees/Book_Recommendation_Application.doctree
Binary file not shown.
Binary file modified _build/doctrees/Introduction.doctree
Binary file not shown.
Binary file modified _build/doctrees/Starting_Out.doctree
Binary file not shown.
Binary file modified _build/doctrees/environment.pickle
Binary file not shown.
7 changes: 1 addition & 6 deletions _build/html/Book_Recommendation_Application.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,6 @@ <h2>3.4. Architectural Decisions<a class="headerlink" href="#architectural-decis
<a class="reference external" href="http://www.wikipedia.org/wiki/Json">JSON protocol</a>
will be used with the following libraries:</p>
<ul class="simple">
<li>PHP -
TBD</li>
<li>Java -
TBD</li>
<li>Erlang -
Expand Down Expand Up @@ -236,13 +234,10 @@ <h3>3.4.3. Integration Method<a class="headerlink" href="#integration-method" ti
<img alt="_images/DatabaseDiagram.png" src="_images/DatabaseDiagram.png" />
<p>The primary tables are the <strong>items</strong> and <strong>users</strong> table. Several cross reference tables exist including:</p>
<ul class="simple">
<li><strong>item_downloads</strong> - stores how many times an item has been downloaded as reported by the source site.</li>
<li><strong>user_items</strong> - tracks which items a user has downloaded and if they have submitted a rating</li>
<li><strong>user_item_recommendations</strong> - contains recommendations for a particular user</li>
<li><strong>user_item_ratings</strong> - holds the rating value that a user submits for an item</li>
</ul>
<p>The <strong>lcc_codes</strong> table stores the descriptions of Library of Congress codes.
The <strong>lcsh_codes</strong> table stores the descriptions of Library of Congress Subject Heading codes.</p>
</div>
</div>

Expand Down Expand Up @@ -308,7 +303,7 @@ <h3>Navigation</h3>
</ul>
</div>
<div class="footer">
Last updated on Dec 04, 2014.
Last updated on Jan 07, 2015.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions _build/html/Introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h2>1.2. About This Tutorial<a class="headerlink" href="#about-this-tutorial" ti
<p>This tutorial assumes that you have successfully <a class="reference external" href="http://cloudi.org/faq.html#3_Overview">installed CloudI</a> on a development system and can successfully start and stop it.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The examples shown here were developed on a machine using CloudI version 1.3.3 running Ubuntu Linux version 14.04 operating system.</p>
<p class="last">The examples shown here were developed on a machine using CloudI version 1.4.0 running Ubuntu Linux version 14.04 operating system.</p>
</div>
</div>
<div class="section" id="where-to-get-help">
Expand Down Expand Up @@ -145,7 +145,7 @@ <h3>Navigation</h3>
</ul>
</div>
<div class="footer">
Last updated on Nov 19, 2014.
Last updated on Jan 07, 2015.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
Expand Down
32 changes: 30 additions & 2 deletions _build/html/Starting_Out.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,36 @@ <h1>2. Starting Out<a class="headerlink" href="#starting-out" title="Permalink t
</div>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">When you configure the CloudI installation, you can easily disable the integration test services using the <strong>&#8211;with-integration-test=no</strong> option.</p>
<p class="last">Unfortunately, you can not just remove all the test services, because some of them are used to implement core functions that you will likely need.</p>
</div>
<p>The Book Recommendation application requires the services shown in the following table.</p>
<table border="1" class="docutils">
<colgroup>
<col width="20%" />
<col width="32%" />
<col width="48%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Subscription Path</th>
<th class="head">Service Name</th>
<th class="head">Comments</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>/cloudi/api</td>
<td>cloudi_service_api_requests</td>
<td>&nbsp;</td>
</tr>
<tr class="row-odd"><td>/tests/websockets</td>
<td>cloudi_service_http_cowboy</td>
<td>&nbsp;</td>
</tr>
<tr class="row-even"><td>/tests/http</td>
<td>cloudi_service_http_cowboy</td>
<td>There are two entries for different ports</td>
</tr>
</tbody>
</table>
<ol class="arabic simple" start="4">
<li>It is important to realize that all services listed in the <strong>cloudi.conf</strong> file must start successfully when the cloud is first started.
In other words, the failure of any service listed in the configuration file will keep the entire cloud from starting to ensure an error-free starting state. Seperate configuration methods will be used to show how a cloud may grow.</li>
Expand Down Expand Up @@ -244,7 +272,7 @@ <h3>Navigation</h3>
</ul>
</div>
<div class="footer">
Last updated on Dec 23, 2014.
Last updated on Jan 07, 2015.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
Expand Down
8 changes: 0 additions & 8 deletions _build/html/_sources/Book_Recommendation_Application.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,6 @@ In this tutorial, the
`JSON protocol <http://www.wikipedia.org/wiki/Json>`_
will be used with the following libraries:


* PHP -
TBD

* Java -
TBD

Expand Down Expand Up @@ -177,11 +173,7 @@ A diagram showing the database tables and their interrelationships is shown belo

The primary tables are the **items** and **users** table. Several cross reference tables exist including:

* **item_downloads** - stores how many times an item has been downloaded as reported by the source site.
* **user_items** - tracks which items a user has downloaded and if they have submitted a rating
* **user_item_recommendations** - contains recommendations for a particular user
* **user_item_ratings** - holds the rating value that a user submits for an item

The **lcc_codes** table stores the descriptions of Library of Congress codes.
The **lcsh_codes** table stores the descriptions of Library of Congress Subject Heading codes.

2 changes: 1 addition & 1 deletion _build/html/_sources/Introduction.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ here in case you want to look at the complete implementation.
This tutorial assumes that you have successfully `installed CloudI <http://cloudi.org/faq.html#3_Overview>`_ on a development system and can successfully start and stop it.

.. note::
The examples shown here were developed on a machine using CloudI version 1.3.3 running Ubuntu Linux version 14.04 operating system.
The examples shown here were developed on a machine using CloudI version 1.4.0 running Ubuntu Linux version 14.04 operating system.


.. index::
Expand Down
13 changes: 12 additions & 1 deletion _build/html/_sources/Starting_Out.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,18 @@ For initial development, the following suggested changes should be made.

.. tip::

When you configure the CloudI installation, you can easily disable the integration test services using the **--with-integration-test=no** option.
Unfortunately, you can not just remove all the test services, because some of them are used to implement core functions that you will likely need.


The Book Recommendation application requires the services shown in the following table.

================= =========================== =========================================
Subscription Path Service Name Comments
================= =========================== =========================================
/cloudi/api cloudi_service_api_requests
/tests/websockets cloudi_service_http_cowboy
/tests/http cloudi_service_http_cowboy There are two entries for different ports
================= =========================== =========================================


4. It is important to realize that all services listed in the **cloudi.conf** file must start successfully when the cloud is first started.
Expand Down
2 changes: 1 addition & 1 deletion _build/html/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ <h3>Navigation</h3>
</ul>
</div>
<div class="footer">
Last updated on Dec 26, 2014.
Last updated on Jan 07, 2015.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion _build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ <h3>Navigation</h3>
</ul>
</div>
<div class="footer">
Last updated on Dec 26, 2014.
Last updated on Jan 07, 2015.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion _build/html/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h3>Navigation</h3>
</ul>
</div>
<div class="footer">
Last updated on Dec 26, 2014.
Last updated on Jan 07, 2015.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
Expand Down
Loading

0 comments on commit f183036

Please sign in to comment.