This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/fluo-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 8f502be  Jekyll build from gh-pages:bf00c5c
8f502be is described below

commit 8f502beaaabdd784c68185e3e88828af04b9f766
Author: Keith Turner <ktur...@apache.org>
AuthorDate: Wed Nov 8 17:28:27 2017 -0500

    Jekyll build from gh-pages:bf00c5c
    
    added srikailash to contributors list
---
 feed.xml                   |  4 ++--
 people/index.html          | 10 ++++++++++
 tour/exercise-1/index.html | 37 ++++++++++++++++++++++++++++++++++---
 3 files changed, 46 insertions(+), 5 deletions(-)

diff --git a/feed.xml b/feed.xml
index fd6462e..4b99d71 100644
--- a/feed.xml
+++ b/feed.xml
@@ -5,8 +5,8 @@
     <description></description>
     <link>https://fluo.apache.org//</link>
     <atom:link href="https://fluo.apache.org//feed.xml"; rel="self" 
type="application/rss+xml" />
-    <pubDate>Thu, 02 Nov 2017 21:09:38 +0000</pubDate>
-    <lastBuildDate>Thu, 02 Nov 2017 21:09:38 +0000</lastBuildDate>
+    <pubDate>Wed, 08 Nov 2017 22:28:22 +0000</pubDate>
+    <lastBuildDate>Wed, 08 Nov 2017 22:28:22 +0000</lastBuildDate>
     <generator>Jekyll v3.3.1</generator>
     
     
diff --git a/people/index.html b/people/index.html
index e30d313..ed6ef07 100644
--- a/people/index.html
+++ b/people/index.html
@@ -222,6 +222,11 @@ based on commits.</p>
       <td><a href="https://www.timeanddate.com/time/zones/pt";>PT</a></td>
     </tr>
     <tr>
+      <td><a href="https://github.com/milleruntime";>Michael Miller</a></td>
+      <td><a href="http://www.centroid-llc.com/";>Centroid LLC</a></td>
+      <td><a href="https://www.timeanddate.com/time/zones/et";>ET</a></td>
+    </tr>
+    <tr>
       <td><a href="https://github.com/mjwall";>Michael Wall</a></td>
       <td> </td>
       <td><a href="https://www.timeanddate.com/time/zones/et";>ET</a></td>
@@ -231,6 +236,11 @@ based on commits.</p>
       <td><a href="https://sap.com";>SAP Labs LLC</a></td>
       <td><a href="https://www.timeanddate.com/time/zones/pt";>PT</a></td>
     </tr>
+    <tr>
+      <td><a href="https://github.com/srikailash";>Sri Kailash</a></td>
+      <td><a href="https://booking.com";>Booking.com</a></td>
+      <td><a href="https://www.timeanddate.com/time/zones/cest";>CEST</a></td>
+    </tr>
   </tbody>
 </table>
 
diff --git a/tour/exercise-1/index.html b/tour/exercise-1/index.html
index 9134115..976ec9d 100644
--- a/tour/exercise-1/index.html
+++ b/tour/exercise-1/index.html
@@ -316,9 +316,40 @@ u:http://oldnews.com/a23 uri hash  a6c4d1f
 <h2 id="part-2--computing-word-counts">Part 2 : Computing word counts.</h2>
 
 <p>Now that you have data loading, create an observer that watches the 
reference
-status column.  This observer should increment word counts when new content is
-referenced and decrement word counts when content is dereferenced.  The
-observer should also delete the content when its dereferenced.</p>
+status column (<em>doc:refs</em>).  This observer should take the following 
actions 
+based on the values of the columns <em>doc:refs</em> and 
<em>doc:processed</em>.</p>
+
+<table>
+  <thead>
+    <tr>
+      <th>doc:refs</th>
+      <th>doc:processed</th>
+      <th>Action</th>
+    </tr>
+  </thead>
+  <tbody>
+    <tr>
+      <td>referenced</td>
+      <td>false</td>
+      <td>Increment word counts and set <em>doc:processed</em> to 
<em>true</em></td>
+    </tr>
+    <tr>
+      <td>referenced</td>
+      <td>true</td>
+      <td>None</td>
+    </tr>
+    <tr>
+      <td>unreferenced</td>
+      <td>false</td>
+      <td>Delete content</td>
+    </tr>
+    <tr>
+      <td>unreferenced</td>
+      <td>true</td>
+      <td>Delete content and decrement word counts</td>
+    </tr>
+  </tbody>
+</table>
 
 <p>Make sure you handle the following scenario correctly.</p>
 

-- 
To stop receiving notification emails like this one, please contact
['"commits@fluo.apache.org" <commits@fluo.apache.org>'].

Reply via email to