Updated README to show how to update build site contents from Docker container.


Project: http://git-wip-us.apache.org/repos/asf/incubator-senssoft/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-senssoft/commit/c593cd06
Tree: http://git-wip-us.apache.org/repos/asf/incubator-senssoft/tree/c593cd06
Diff: http://git-wip-us.apache.org/repos/asf/incubator-senssoft/diff/c593cd06

Branch: refs/heads/master
Commit: c593cd06a581afb4622a8224bef7da3c386fb349
Parents: f4abbc9
Author: msb3399 <mbe...@draper.com>
Authored: Thu May 25 17:49:11 2017 -0400
Committer: msb3399 <mbe...@draper.com>
Committed: Thu May 25 17:49:11 2017 -0400

----------------------------------------------------------------------
 site/README.md                                 |   7 +
 site/_site/CHANGELOG.md                        |  12 +
 site/_site/Dockerfile                          |  26 +
 site/_site/README.md                           |  16 +
 site/_site/community/index.html                |  10 +-
 site/_site/distill/index.html                  |   6 +-
 site/_site/docs/contributing/index.html        | 334 +++++++++++
 site/_site/docs/distill/analytics.html         |  24 +-
 site/_site/docs/distill/api.html               |  24 +-
 site/_site/docs/distill/changelog.html         |  24 +-
 site/_site/docs/distill/http.html              |  30 +-
 site/_site/docs/distill/index.html             |  24 +-
 site/_site/docs/distill/models.html            |  24 +-
 site/_site/docs/distill/start.html             |  24 +-
 site/_site/docs/distill/utilities.html         |  24 +-
 site/_site/docs/index.html                     |  26 +-
 site/_site/docs/stout/index.html               |  24 +-
 site/_site/docs/stout/start.html               |  24 +-
 site/_site/docs/system/index.html              |  24 +-
 site/_site/docs/tap/index.html                 |  24 +-
 site/_site/docs/userale/index.html             |  32 +-
 site/_site/docs/useralejs/index.html           |  30 +-
 site/_site/docs/useralejs/testing.html         | 331 +++++++++++
 site/_site/docs/useralejs/troubleshooting.html |  26 +-
 site/_site/docs/useralepy/api.html             | 592 ++++++++++++++++++++
 site/_site/docs/useralepy/changelog.html       | 379 +++++++++++++
 site/_site/docs/useralepy/index.html           | 423 ++++++++++++++
 site/_site/docs/useralepy/start.html           | 364 ++++++++++++
 site/_site/feed.xml                            |   2 +-
 site/_site/index.html                          |   8 +-
 site/_site/releases/index.html                 |   6 +-
 site/_site/stout/index.html                    |   6 +-
 site/_site/system/index.html                   |   6 +-
 site/_site/tap/index.html                      |   8 +-
 site/_site/userale/index.html                  |   6 +-
 35 files changed, 2716 insertions(+), 234 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/README.md
----------------------------------------------------------------------
diff --git a/site/README.md b/site/README.md
index daecf07..9ea4930 100644
--- a/site/README.md
+++ b/site/README.md
@@ -9,4 +9,11 @@ How to Build Site
 3. Deploy site on localhost:8000
     ```
     docker run -p 8000:8000 -it apache-site python -m SimpleHTTPServer 
+    ```
+4. (Optional): To update the site, can copy the files from the container to 
_site.
+    ```
+    # First grab container id
+    docker inspect --format="{{.Id}}" apache-site
+    # Reference container id to grab built contents
+    docker cp <container_id>:/app/_site .
     ```
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/site/_site/CHANGELOG.md b/site/_site/CHANGELOG.md
new file mode 100644
index 0000000..d97729f
--- /dev/null
+++ b/site/_site/CHANGELOG.md
@@ -0,0 +1,12 @@
+CHANGELOG
+---------
+
+### 1.0.1 (2017-05-25)
+- Updated contributing guide
+- Fixed broken links
+- Added Dockerfile to show how to build site
+- Added README and CHANGELOG
+- Updated UserALE.pyqt5 name to UserALE.py
+
+### 1.0.0 (2017-01-12)
+- Initial commit.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/Dockerfile
----------------------------------------------------------------------
diff --git a/site/_site/Dockerfile b/site/_site/Dockerfile
new file mode 100644
index 0000000..d7d3628
--- /dev/null
+++ b/site/_site/Dockerfile
@@ -0,0 +1,26 @@
+FROM starefossen/ruby-node
+MAINTAINER Michelle Beard <msbe...@apache.org>
+
+# Cache bundle
+COPY Gemfile* /tmp/
+WORKDIR /tmp
+RUN bundle install
+
+ENV app /app
+
+# Install npm modules
+COPY package.json /tmp/
+WORKDIR /tmp
+RUN npm install -g
+
+# Add src code
+RUN mkdir $app
+WORKDIR $app
+ADD . $app
+
+# Jekyll buld
+RUN jekyll build
+
+WORKDIR $app/_site
+
+EXPOSE 8000
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/README.md
----------------------------------------------------------------------
diff --git a/site/_site/README.md b/site/_site/README.md
new file mode 100644
index 0000000..2f9e68a
--- /dev/null
+++ b/site/_site/README.md
@@ -0,0 +1,16 @@
+How to Build Site
+-----------------
+
+1. Download and Install [``Docker``](http://docker.com)
+2. Build site
+    ```
+    docker build -t apache-site .
+    ```
+3. Deploy site on localhost:8000
+    ```
+    docker run -p 8000:8000 -it apache-site python -m SimpleHTTPServer 
+    ```
+4. (Optional): To update the site, can copy the files from the container to 
_site.
+    ```
+    docker 
+    ```
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/community/index.html
----------------------------------------------------------------------
diff --git a/site/_site/community/index.html b/site/_site/community/index.html
index 1c1916a..6cb5e85 100644
--- a/site/_site/community/index.html
+++ b/site/_site/community/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/community/";>
+  <link rel="canonical" href="http://senssoft.incubator.apache.org/community/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -69,7 +69,7 @@
   <div class="page-content">
     <div class="ui vertical segment">
   <p>
-    The Apache SensSoft team happily welcomes contributors and supporters of 
our work.  Contributions, bug reports, and suggestions are welcome for the core 
products, website, documentation, and everything else!  See our <a 
href="/docs/system/contributing">docs</a> for more information on submitting 
effective contributions and bug reports.
+    The Apache SensSoft team happily welcomes contributors and supporters of 
our work.  Contributions, bug reports, and suggestions are welcome for the core 
products, website, documentation, and everything else!  See our <a 
href="/docs/contributing">docs</a> for more information on submitting effective 
contributions and bug reports.
   </p>
 </div>
 
@@ -126,7 +126,7 @@
     <div class="content">Issues and Bugs</div>
   </h3>
   <p>
-    Visit our <a href="https://issues.apache.org/jira/browse/SENSSOFT";>Jira 
Issue Tracker</a> for full information on current developments, bugs, etc.
+    Visit our <a href="https://issues.apache.org/jira/browse/SENSSOFT";>JIRA 
Issue Tracker</a> for full information on current developments, bugs, etc.
   </p>
   <h3 class="ui header">
     <i class="sticky note icon"></i>
@@ -184,7 +184,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/distill/index.html
----------------------------------------------------------------------
diff --git a/site/_site/distill/index.html b/site/_site/distill/index.html
index 784bf24..7cf571c 100644
--- a/site/_site/distill/index.html
+++ b/site/_site/distill/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/distill/";>
+  <link rel="canonical" href="http://senssoft.incubator.apache.org/distill/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -177,7 +177,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/contributing/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/contributing/index.html 
b/site/_site/docs/contributing/index.html
new file mode 100644
index 0000000..68c1fcf
--- /dev/null
+++ b/site/_site/docs/contributing/index.html
@@ -0,0 +1,334 @@
+<!DOCTYPE html>
+<html lang="en">
+
+  <head>
+  <meta charset="utf-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+
+  <title>Contributing</title>
+  <meta name="description" content="First, thank you for contributing to 
Apache SensSoft!">
+
+  <link rel="stylesheet" type="text/css" 
href="/semantic/dist/semantic.min.css">
+  <script 
src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js";></script>
+  <script src="/semantic/dist/semantic.min.js"></script>
+  <script src="https://d3js.org/d3.v4.min.js";></script>
+  <script src="/js/main.js"></script>
+
+  <link rel="stylesheet" href="/assets/main.css">
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/contributing/";>
+  <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
+
+  
+</head>
+
+
+  <body>
+
+    <div class="site-header">
+  <div id="main-menu" class="ui inverted padded fixed top borderless menu">
+    <a class="site-title" href="/">
+      <h3 class="ui inverted header item">Apache SensSoft</h3>
+    </a>
+
+    <div class="right menu">
+      <div class="ui dropdown item">
+        Components
+        <div class="menu">
+          <a class="item" href="/system">System</a>
+          <a class="item" href="/userale">UserALE</a>
+          <a class="item" href="/distill">Distill</a>
+          <a class="item" href="/tap">Tap</a>
+          <a class="item" href="/stout">Stout</a>
+        </div>
+      </div>
+      <div class="ui dropdown item">
+        <a href="/docs">Docs</a>
+        <div class="menu">
+          <a class="item" href="/docs/system">System</a>
+          <a class="item" href="/docs/userale">UserALE</a>
+          <a class="item" href="/docs/useralejs">UserALE.js</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
+          <a class="item" href="/docs/distill">Distill</a>
+          <a class="item" href="/docs/tap">Tap</a>
+          <a class="item" href="/docs/stout">Stout</a>
+        </div>
+      </div>
+      <a class="item" href="/releases">Releases</a>
+      <a class="item" href="/community">Community</a>
+    </div>
+  </div>
+</div>
+
+
+    <div class="main-wrapper">
+      <div class="docs-wrapper">
+  <div class="docs-sidebar">
+    
+
+
+
+
+
+
+
+
+<!-- <div class="ui inverted list">
+  <a class="item" href="/docs">About the Docs</a>
+</div> -->
+<div id="docs-nav" class="ui inverted accordion">
+  
+    <div class="active title">
+  
+    <i class="dropdown icon"></i>
+    Apache SensSoft
+  </div>
+  
+    <div class="active content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/">About the Docs</a>
+      
+        <a class="item" href="/docs/contributing/">Contributing</a>
+      
+    </div>
+  </div>
+
+
+  
+    <div class="title">
+  
+    <i class="dropdown icon"></i>
+    System
+  </div>
+  
+    <div class="content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/system/">Getting Started</a>
+      
+    </div>
+  </div>
+
+  
+    <div class="title">
+  
+    <i class="dropdown icon"></i>
+    UserALE
+  </div>
+  
+    <div class="content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/userale/">About UserALE</a>
+      
+    </div>
+  </div>
+
+  
+    <div class="title">
+  
+    <i class="dropdown icon"></i>
+    UserALE.js
+  </div>
+  
+    <div class="content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/useralejs/">Getting Started</a>
+      
+        <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
+      
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
+      
+    </div>
+  </div>
+
+  
+    <div class="title">
+  
+    <i class="dropdown icon"></i>
+    UserALE.py
+  </div>
+  
+    <div class="content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/useralepy/">Installation</a>
+      
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
+      
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
+      
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
+      
+    </div>
+  </div>
+
+  
+    <div class="title">
+  
+    <i class="dropdown icon"></i>
+    Distill
+  </div>
+  
+    <div class="content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/distill/">Installation</a>
+      
+        <a class="item" href="/docs/distill/start.html">Getting Started</a>
+      
+        <a class="item" href="/docs/distill/api.html">API Documentation</a>
+      
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+      
+        <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
+      
+        <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
+      
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+      
+        <a class="item" href="/docs/distill/changelog.html">Changelog</a>
+      
+    </div>
+  </div>
+
+  
+    <div class="title">
+  
+    <i class="dropdown icon"></i>
+    Tap
+  </div>
+  
+    <div class="content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/tap/">Getting Started</a>
+      
+    </div>
+  </div>
+
+  
+    <div class="title">
+  
+    <i class="dropdown icon"></i>
+    Stout
+  </div>
+  
+    <div class="content">
+  
+    <div class="ui inverted bulleted list docs-list">
+      
+        <a class="item" href="/docs/stout/">About Stout</a>
+      
+        <a class="item" href="/docs/stout/start.html">Getting Started</a>
+      
+    </div>
+  </div>
+</div>
+
+  </div>
+  <div class="docs-content">
+    <h2 class="ui header">Contributing</h2>
+    <p>First, thank you for contributing to Apache SensSoft!</p>
+
+<p>There are certain procedures that must be followed for all contributions. 
These procedures are necessary to allow us to allocate resources for reviewing 
and testing your contribution, as well as to communicate effectively with you 
during the review process.</p>
+
+<p>See individual product guides for product-specific information on getting 
started as a contributor, setup and testing, code style, etc.</p>
+
+<p>To report a bug or other issue, simply create an issue in JIRA, as 
described in Step 1 below.</p>
+
+<h4 id="1-create-an-issue-in-jira">1. Create an issue in JIRA</h4>
+
+<p>All changes to Apache SensSoft must have a corresponding issue in <a 
href="https://issues.apache.org/jira/browse/SENSSOFT";>JIRA</a> so the change 
can be properly tracked.  If you do not already have an account on JIRA, you 
will need to create one before creating your new issue.</p>
+
+<h4 id="2-make-and-test-your-changes-locally">2. Make and test your changes 
locally</h4>
+
+<p>The Apache SensSoft source code is maintained in <a 
href="https://git-wip-us.apache.org/repos/asf?s=senssoft";>several git 
repositories</a> hosted by Apache.  These repositories are mirrored and more 
easily available <a href="https://github.com/apache?q=senssoft";>on GitHub</a>.  
To make your changes, fork the appropriate GitHub repository and make commits 
to a topic branch in your fork.  Commits should be made in logical units and 
must reference the JIRA issue number:</p>
+<div class="language-shell highlighter-rouge"><pre class="highlight"><code>   
git commit -m <span class="s2">"#SENSSOFT-123: High-level message describing 
the changes."</span>
+</code></pre>
+</div>
+<p>Avoid commits which cover multiple, distinct goals that could (and should) 
be handled separately.  If you do not already have an account on JIRA, you will 
need to create one to claim an issue, discuss development, or report 
results.</p>
+
+<h4 id="3-submit-your-changes-via-a-pull-request-on-github">3. Submit your 
changes via a pull request on GitHub</h4>
+
+<p>Once your changes are ready, submit them by creating a pull request for the 
corresponding topic branch you created when you began working on your changes.  
The core team will then review your changes and, if they pass review, your 
changes will be merged into the primary Apache-hosted repos.</p>
+
+  </div>
+</div>
+
+    </div>
+
+    <div class="footer ui inverted very padded vertical segment">
+  <div class="ui vertical segment">
+    <div class="ui four column grid">
+      <div class="column">
+        <h4 class="ui inverted header">About</h4>
+        <div class="ui inverted link list">
+          <a class="item" href="/system">System</a>
+          <a class="item" href="/userale">UserALE</a>
+          <a class="item" href="/distill">Distill</a>
+          <a class="item" href="/tap">Tap</a>
+          <a class="item" href="/stout">Stout</a>
+        </div>
+      </div>
+      <div class="column">
+        <h4 class="ui inverted header">Docs</h4>
+        <div class="ui inverted link list">
+          <a class="item" href="/docs/system">System</a>
+          <a class="item" href="/docs/userale">UserALE</a>
+          <a class="item" href="/docs/useralejs">UserAle.js</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
+          <a class="item" href="/docs/distill">Distill</a>
+          <a class="item" href="/docs/tap">Tap</a>
+          <a class="item" href="/docs/stout">Stout</a>
+        </div>
+      </div>
+      <div class="column">
+        <h4 class="ui inverted header">Community</h4>
+        <div class="ui inverted link list">
+          <a class="item" 
href="https://github.com/apache?q=senssoft";>GitHub</a>
+          <a class="item" 
href="http://stackoverflow.com/questions/tagged/apache-senssoft";>StackOverflow</a>
+          <a class="item" 
href="https://issues.apache.org/jira/browse/SENSSOFT";>Jira Issue Tracker</a>
+          <a class="item" 
href="https://cwiki.apache.org/confluence/display/SENSSOFT";>Project Wiki</a>
+          <a class="item" href="https://twitter.com/apachesenssoft";>Twitter</a>
+        </div>
+      </div>
+      <div class="column">
+        <h4 class="ui inverted header">Apache</h4>
+        <div class="ui inverted link list">
+          <a class="item" 
href="http://www.apache.org/licenses/LICENSE-2.0.html";>License</a>
+          <a class="item" href="http://www.apache.org/";>Apache Software 
Foundation</a>
+          <a class="item" href="http://incubator.apache.org/";>Apache 
Incubator</a>
+          <a class="item" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsor Apache</a>
+          <a class="item" 
href="http://www.apache.org/foundation/thanks.html";>Thank you</a>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="ui inverted vertical segment">
+    <div class="ui two column middle aligned grid">
+      <div class="column">
+        Apache SensSoft is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
+      </div>
+      <div class="center aligned column">
+        <img class="component-image" src="/images/incubator-logo-white.png">
+        <br>
+        Copyright © 2017 The Apache Software Foundation, Licensed under the 
Apache License, Version 2.0.  Apache, the Apache feather logo, and the Apache 
Incubator logo are trademarks of The Apache Software Foundation.  Software as a 
Sensor is a trademark of the Charles Stark Draper Laboratory, Inc.
+      </div>
+    </div>
+  </div>
+</div>
+
+
+  </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/analytics.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/analytics.html 
b/site/_site/docs/distill/analytics.html
index 402621e..b596e34 100644
--- a/site/_site/docs/distill/analytics.html
+++ b/site/_site/docs/distill/analytics.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" 
href="http://localhost:4000/docs/distill/analytics.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/analytics.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -356,7 +356,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/api.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/api.html b/site/_site/docs/distill/api.html
index adb86a7..f386b18 100644
--- a/site/_site/docs/distill/api.html
+++ b/site/_site/docs/distill/api.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/distill/api.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/api.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -287,7 +287,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/changelog.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/changelog.html 
b/site/_site/docs/distill/changelog.html
index d349531..5ac4c9f 100644
--- a/site/_site/docs/distill/changelog.html
+++ b/site/_site/docs/distill/changelog.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" 
href="http://localhost:4000/docs/distill/changelog.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/changelog.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -291,7 +291,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/http.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/http.html 
b/site/_site/docs/distill/http.html
index 2ebec24..0a565c3 100644
--- a/site/_site/docs/distill/http.html
+++ b/site/_site/docs/distill/http.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/distill/http.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/http.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -520,10 +520,8 @@ testing/?stat<span class="o">=</span>terms&amp;elem<span 
class="o">=</span>signu
 <span class="p">}</span>
 </code></pre>
   </div>
-</blockquote>
-
-<blockquote>
-  <p><strong>Parameters:</strong></p>
+  <p>w
+<strong>Parameters:</strong></p>
   <ul>
     <li>app_id – Application name</li>
   </ul>
@@ -592,7 +590,7 @@ testing/?stat<span class="o">=</span>terms&amp;elem<span 
class="o">=</span>signu
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/index.html 
b/site/_site/docs/distill/index.html
index 6cd8185..f045787 100644
--- a/site/_site/docs/distill/index.html
+++ b/site/_site/docs/distill/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/distill/";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -431,7 +431,7 @@ When the package is installed via easy_install or pip this 
function will be boun
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/models.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/models.html 
b/site/_site/docs/distill/models.html
index 26f145f..29d0c6d 100644
--- a/site/_site/docs/distill/models.html
+++ b/site/_site/docs/distill/models.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/distill/models.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/models.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -575,7 +575,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/start.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/start.html 
b/site/_site/docs/distill/start.html
index ccb3f2d..47cba1b 100644
--- a/site/_site/docs/distill/start.html
+++ b/site/_site/docs/distill/start.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/distill/start.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/start.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -274,7 +274,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/distill/utilities.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/distill/utilities.html 
b/site/_site/docs/distill/utilities.html
index 8f84512..d1fd4c8 100644
--- a/site/_site/docs/distill/utilities.html
+++ b/site/_site/docs/distill/utilities.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" 
href="http://localhost:4000/docs/distill/utilities.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/distill/utilities.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -361,7 +361,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/index.html b/site/_site/docs/index.html
index a8b709b..c95e804 100644
--- a/site/_site/docs/index.html
+++ b/site/_site/docs/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/";>
+  <link rel="canonical" href="http://senssoft.incubator.apache.org/docs/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -238,7 +238,7 @@
   </div>
   <div class="docs-content">
     <h2 class="ui header">About the Docs</h2>
-    <p>The Apache SensSoft docs are organized by product.  Each product’s 
documentation includes information like quick start guides, tutorials, full API 
descriptions, and contributing guides.</p>
+    <p>The Apache SensSoft docs are organized by product.  Each product’s 
documentation includes information like quick start guides, tutorials, full API 
descriptions, and contribution guides.</p>
 
   </div>
 </div>
@@ -264,7 +264,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/stout/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/stout/index.html b/site/_site/docs/stout/index.html
index 81599f4..db49f46 100644
--- a/site/_site/docs/stout/index.html
+++ b/site/_site/docs/stout/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/stout/";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/stout/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -284,7 +284,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/stout/start.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/stout/start.html b/site/_site/docs/stout/start.html
index a059aec..de2d231 100644
--- a/site/_site/docs/stout/start.html
+++ b/site/_site/docs/stout/start.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/stout/start.html";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/stout/start.html";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -364,7 +364,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/system/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/system/index.html 
b/site/_site/docs/system/index.html
index b9e425e..bdd9cce 100644
--- a/site/_site/docs/system/index.html
+++ b/site/_site/docs/system/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/system/";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/system/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -301,7 +301,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/tap/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/tap/index.html b/site/_site/docs/tap/index.html
index 1b64b55..344372b 100644
--- a/site/_site/docs/tap/index.html
+++ b/site/_site/docs/tap/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/tap/";>
+  <link rel="canonical" href="http://senssoft.incubator.apache.org/docs/tap/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -266,7 +266,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/userale/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/userale/index.html 
b/site/_site/docs/userale/index.html
index 03b527c..18208a9 100644
--- a/site/_site/docs/userale/index.html
+++ b/site/_site/docs/userale/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/userale/";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/userale/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -242,15 +242,15 @@
 
 <h3 id="about-userale">About UserALE</h3>
 
-<p>The User Analytic Logging Engine (User ALE) is part of Apache SensSoft. 
User ALE is for Software Developers, HCI/UX researchers, and project managers 
who develop user facing software tools—applications that are used for 
manipulating, analyzing, or visualizing data or other systems.</p>
+<p>The User Analytic Logging Engine (UserALE) is part of Apache SensSoft. 
UserALE is for Software Developers, HCI/UX researchers, and project managers 
who develop user facing software tools—applications that are used for 
manipulating, analyzing, or visualizing data or other systems.</p>
 
-<p>User ALE provides an API for instrumenting software tools, turning them 
into a human usability sensors. With every user interaction User ALE will 
transmit specially structured messages (JSON) from software tools to an 
activity logging server (Elastic). These messages not only report user 
activities and their timing, but provide sufficient context to understand how 
those activities are related to the functional organization of the software 
tool. This allows for greater utility in understanding how users are 
interacting with software tool features, and seeds more rigorous modeling and 
analytic approaches to understand not just what users do in software tools, but 
how they perform tasks with them.</p>
+<p>UserALE provides an API for instrumenting software tools, turning them into 
a human usability sensors. With every user interaction User ALE will transmit 
specially structured messages (JSON) from software tools to an activity logging 
server (<a href="http://elastic.co";>Elasticsearch™</a>). These messages not 
only report user activities and their timing, but provide sufficient context to 
understand how those activities are related to the functional organization of 
the software tool. This allows for greater utility in understanding how users 
are interacting with software tool features, and seeds more rigorous modeling 
and analytic approaches to understand not just what users do in software tools, 
but how they perform tasks with them.</p>
 
-<p>User ALE provides data provides insight into software tool usage frequency, 
users’ cognitive/behavioral strategy in using tools to complete tasks, their 
workflows, as well as their integrative use of software tool features.</p>
+<p>UserALE provides data provides insight into software tool usage frequency, 
users’ cognitive/behavioral strategy in using tools to complete tasks, their 
workflows, as well as their integrative use of software tool features.</p>
 
 <h3 id="who-is-userale-for">Who is UserALE for?</h3>
 
-<p>The User Analytic Logging Engine (User ALE) is for Software Developers, 
HCI/UX researchers, and project managers who develop user facing software 
tools.</p>
+<p>UserALE is for Software Developers, HCI/UX researchers, and project 
managers who develop user facing software tools.</p>
 
   </div>
 </div>
@@ -276,7 +276,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/c593cd06/site/_site/docs/useralejs/index.html
----------------------------------------------------------------------
diff --git a/site/_site/docs/useralejs/index.html 
b/site/_site/docs/useralejs/index.html
index e7c5ea7..2096118 100644
--- a/site/_site/docs/useralejs/index.html
+++ b/site/_site/docs/useralejs/index.html
@@ -16,7 +16,7 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://localhost:4000/docs/useralejs/";>
+  <link rel="canonical" 
href="http://senssoft.incubator.apache.org/docs/useralejs/";>
   <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" 
href="/feed.xml">
 
   
@@ -48,7 +48,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserALE.js</a>
-          <a class="item" href="/docs/useralepyqt">UserALE.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserALE.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>
@@ -90,7 +90,7 @@
       
         <a class="item" href="/docs/">About the Docs</a>
       
-        <a class="item" href="/docs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/contributing/">Contributing</a>
       
     </div>
   </div>
@@ -143,7 +143,7 @@
       
         <a class="item" 
href="/docs/useralejs/troubleshooting.html">Troubleshooting</a>
       
-        <a class="item" 
href="/docs/useralejs/contributing.html">Contributing</a>
+        <a class="item" href="/docs/useralejs/testing.html">Build and Test</a>
       
     </div>
   </div>
@@ -152,20 +152,20 @@
     <div class="title">
   
     <i class="dropdown icon"></i>
-    UserALE.pyqt
+    UserALE.py
   </div>
   
     <div class="content">
   
     <div class="ui inverted bulleted list docs-list">
       
-        <a class="item" href="/docs/useralepyqt/">Installation</a>
+        <a class="item" href="/docs/useralepy/">Installation</a>
       
-        <a class="item" href="/docs/useralepyqt/start.html">Getting Started</a>
+        <a class="item" href="/docs/useralepy/start.html">Getting Started</a>
       
-        <a class="item" href="/docs/useralepyqt/api.html">API Documentation</a>
+        <a class="item" href="/docs/useralepy/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/useralepyqt/changelog.html">Changelog</a>
+        <a class="item" href="/docs/useralepy/changelog.html">Changelog</a>
       
     </div>
   </div>
@@ -187,13 +187,13 @@
       
         <a class="item" href="/docs/distill/api.html">API Documentation</a>
       
-        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
+        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
       
         <a class="item" href="/docs/distill/http.html">Apache Distill HTTP 
Client</a>
       
         <a class="item" href="/docs/distill/models.html">Apache Distill 
Models</a>
       
-        <a class="item" href="/docs/distill/analytics.html">Apache Distill 
Analytics</a>
+        <a class="item" href="/docs/distill/utilities.html">Apache Distill 
Utilities</a>
       
         <a class="item" href="/docs/distill/changelog.html">Changelog</a>
       
@@ -244,9 +244,9 @@
 
 <h3 id="include-useralejs-in-your-project">Include UserALE.js in your 
project</h3>
 
-<p>To include UserAle.js in your project with default configuration, simply 
include the script tag below:</p>
+<p>To include UserALE.js in your project with default configuration, simply 
include the script tag below:</p>
 
-<div class="language-html highlighter-rouge"><pre class="highlight"><code>  
<span class="nt">&lt;script </span><span class="na">src=</span><span 
class="s">"&lt;yourUseraleSource&gt;"</span><span 
class="nt">&gt;&lt;/script&gt;</span>
+<div class="language-html highlighter-rouge"><pre class="highlight"><code>  
<span class="nt">&lt;script </span><span class="na">src=</span><span 
class="s">"&lt;userale-0.1.0.js&gt;"</span><span 
class="nt">&gt;&lt;/script&gt;</span>
 </code></pre>
 </div>
 
@@ -254,7 +254,7 @@
 
 <p>HTML5 Data Parameters are used to configure UserALE.js.  For example, to 
set the logging URL:</p>
 
-<div class="language-html highlighter-rouge"><pre class="highlight"><code>  
<span class="nt">&lt;script </span><span class="na">src=</span><span 
class="s">"userale.js"</span> <span class="na">data-url=</span><span 
class="s">"http://yourLoggingUrl";</span><span 
class="nt">&gt;&lt;/script&gt;</span>
+<div class="language-html highlighter-rouge"><pre class="highlight"><code>  
<span class="nt">&lt;script </span><span class="na">src=</span><span 
class="s">"userale-0.1.0.js"</span> <span class="na">data-url=</span><span 
class="s">"http://server:port";</span><span class="nt">&gt;&lt;/script&gt;</span>
 </code></pre>
 </div>
 
@@ -346,7 +346,7 @@
           <a class="item" href="/docs/system">System</a>
           <a class="item" href="/docs/userale">UserALE</a>
           <a class="item" href="/docs/useralejs">UserAle.js</a>
-          <a class="item" href="/docs/useralepyqt">UserAle.pyqt</a>
+          <a class="item" href="/docs/useralepy">UserAle.py</a>
           <a class="item" href="/docs/distill">Distill</a>
           <a class="item" href="/docs/tap">Tap</a>
           <a class="item" href="/docs/stout">Stout</a>


Reply via email to