You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flagon.apache.org by po...@apache.org on 2019/06/27 03:27:46 UTC

[incubator-flagon] 01/02: minor updates to pages

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

poorejc pushed a commit to branch FLAGON-344
in repository https://gitbox.apache.org/repos/asf/incubator-flagon.git

commit aa41bfa46c58cd9593ae95a9d1a8bf76b6b8d0e6
Author: poorejc <po...@apache.org>
AuthorDate: Wed Jun 26 23:18:47 2019 -0400

    minor updates to pages
---
 LICENSE                                     |  2 +-
 site/.dockerignore                          |  1 +
 site/README.md                              |  6 ++--
 site/_config.yml                            |  2 +-
 site/{copy => _copy}/index_landingPage_copy |  0
 site/_docs/stack/scaling.md                 |  2 +-
 site/_docs/useralejs/API.md                 |  5 ++-
 site/_docs/useralejs/build.md               |  5 ++-
 site/_docs/useralejs/dataschema.md          |  5 ++-
 site/_docs/useralejs/index.md               |  6 ++--
 site/_docs/useralejs/modifying.md           |  3 +-
 site/_docs/useralejs/troubleshooting.md     |  2 +-
 site/_includes/doc_sidebar.html             |  8 ++---
 site/_includes/footer.html                  |  4 +--
 site/_includes/header.html                  |  4 +--
 site/_pages/community.html                  |  1 +
 site/_pages/distill.html                    | 44 +++++++++++------------
 site/_site/community/index.html             | 54 ++++++++++++++---------------
 site/_site/docs/contributing/index.html     | 18 +++++-----
 19 files changed, 85 insertions(+), 87 deletions(-)

diff --git a/LICENSE b/LICENSE
index 761b178..18f2950 100644
--- a/LICENSE
+++ b/LICENSE
@@ -186,7 +186,7 @@
       same "printed page" as the copyright notice for easier
       identification within third-party archives.
 
-   © Copyright 2016 The Charles Stark Draper Laboratory, Inc. All rights reserved.
+   © Copyright [yyyy] [name of copyright owner]
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
diff --git a/site/.dockerignore b/site/.dockerignore
index ff1c68d..81b1a3b 100644
--- a/site/.dockerignore
+++ b/site/.dockerignore
@@ -2,4 +2,5 @@
 *.md
 _site
 Dockerfile
+_copy
 
diff --git a/site/README.md b/site/README.md
index ac0216c..575e010 100644
--- a/site/README.md
+++ b/site/README.md
@@ -4,16 +4,16 @@ How to Build and Deploy Site
 1. Download and Install [``Docker``](http://docker.com)
 2. Build site
     ```
-    docker build -t senssoft:site .
+    docker build -t flagon:site .
     ```
 3. Deploy site on localhost:8000
     ```
-    docker run -p 8000:8000 -it senssoft:site python -m SimpleHTTPServer 
+    docker run -p 8000:8000 -it flagon:site python -m SimpleHTTPServer 
     ```
 4. (Optional): To update the site, can copy the files from the container to _site.
     ```
     # First grab container id
-    CID=$(docker create -p 8000:8000 -it senssoft:site python -m SimpleHTTPServer)
+    CID=$(docker create -p 8000:8000 -it flagon:site python -m SimpleHTTPServer)
     # Reference container id to grab built contents
     docker cp $CID:/app/_site .
     ```
diff --git a/site/_config.yml b/site/_config.yml
index 793f914..c52bf4a 100644
--- a/site/_config.yml
+++ b/site/_config.yml
@@ -17,7 +17,7 @@ title: Apache Flagon
 description: The homepage for Apache Flagon
 baseurl: "" # the subpath of your site, e.g. /blog
 url: "http://flagon.incubator.apache.org" # the base hostname & protocol for your site, e.g. http://example.com
-twitter_username: apacheflagon
+twitter_username: ApacheFlagon
 github_username:  apache
 
 collections:
diff --git a/site/copy/index_landingPage_copy b/site/_copy/index_landingPage_copy
similarity index 100%
rename from site/copy/index_landingPage_copy
rename to site/_copy/index_landingPage_copy
diff --git a/site/_docs/stack/scaling.md b/site/_docs/stack/scaling.md
index 9e9642e..6877eaa 100644
--- a/site/_docs/stack/scaling.md
+++ b/site/_docs/stack/scaling.md
@@ -1,7 +1,7 @@
 ---
 title: Scaling Considerations
 component: stack
-permalink: /docs/stack/scaling
+permalink: /docs/stack/scaling/
 priority: 0
 ---
 
diff --git a/site/_docs/useralejs/API.md b/site/_docs/useralejs/API.md
index da1b383..4e6acb5 100644
--- a/site/_docs/useralejs/API.md
+++ b/site/_docs/useralejs/API.md
@@ -1,8 +1,7 @@
 ---
-title: API
+title: UserALE.js API
 component: useralejs
-permalink: /docs/useralejs/API
-priority: 11
+priority: 2
 ---
 
 # Modifying UserALE.js Behavior via API
diff --git a/site/_docs/useralejs/build.md b/site/_docs/useralejs/build.md
index 2a66a75..5eb2b1b 100644
--- a/site/_docs/useralejs/build.md
+++ b/site/_docs/useralejs/build.md
@@ -1,8 +1,7 @@
 ---
-title: Build and Test
+title: UserALE.js Build and Test
 component: useralejs
-permalink: /docs/useralejs/build
-priority: 11
+priority: 1
 ---
 
 ### Building UserALE.js
diff --git a/site/_docs/useralejs/dataschema.md b/site/_docs/useralejs/dataschema.md
index 85d9660..4d510c8 100644
--- a/site/_docs/useralejs/dataschema.md
+++ b/site/_docs/useralejs/dataschema.md
@@ -1,8 +1,7 @@
 ---
-title: Data Schema
+title: UserALE.js Data Schema
 component: useralejs
-permalink: /docs/useralejs/dataschema
-priority: 11
+priority: 4
 ---
 
 #The UserALE.js Dataschema
diff --git a/site/_docs/useralejs/index.md b/site/_docs/useralejs/index.md
index 85dbfbc..3ef9959 100644
--- a/site/_docs/useralejs/index.md
+++ b/site/_docs/useralejs/index.md
@@ -15,7 +15,7 @@ To start logging with Apache UserALE.js, you can include our script directly in
 To include UserALE.js in a specific project, you'll need to deploy a version of our minified UserALE.js script in an accessible location (e.g., webserver), and simply include this script tag on the page:
 
 ```html
-<script src="/path/to/userale-1.0.0.min.js"></script>
+<script src="/path/to/userale-2.0.0.min.js"></script>
 ```
 
 This tag will execute the UserALE.js script in your, with no other modifications to your project needed!
@@ -25,7 +25,7 @@ This tag will execute the UserALE.js script in your, with no other modifications
 UserALE.js is designed to be easily configured to fit your use case. We use HTML data parameters to pass configuration options to the library. For example, one thing you'll need to do is set the URL (location) of your minified UserALE.js script:
 
 ```html
-<script src="/path/to/userale-1.0.0.min.js" data-url="http://yourLoggingUrl"></script>
+<script src="/path/to/userale-2.0.0.min.js" data-url="http://yourLoggingUrl"></script>
 ```
 
 The complete list of configurable options is:
@@ -44,6 +44,8 @@ The complete list of configurable options is:
 | data-tool | Name of tool being logged | null |
 
 See our page on [Build and Test]({{ '/docs/useralejs/build' | prepend: site.baseurl }}) for UserALE.js to learn how to build your own minified version of the UserALE.js script, or you check-out a pre-built script with default parameters in our [repo](https://github.com/apache/incubator-flagon-useralejs/tree/master/build).
+
+User our [example test utility](https://github.com/apache/incubator-flagon-useralejs/tree/master/example) to experiment with script tag parameters.
 ### Deploying the UserALE.js WebExtension
 
 If you're interested in using our Web Extension to log user activity across all pages they visit, try our web extension, which injects UserALE.js into any web page your client(s) navigate to. This option is perfect for testing and research. The web extension builds through the same [build pipeline]({{ '/docs/useralejs/build' | prepend: site.baseurl }}) as UserALE.js. You can also use pre-built extension files in our [repo](https://github.com/apache/incubator-flagon-useralejs/tree/FLAGON- [...]
diff --git a/site/_docs/useralejs/modifying.md b/site/_docs/useralejs/modifying.md
index 7ba80e6..e0ee466 100644
--- a/site/_docs/useralejs/modifying.md
+++ b/site/_docs/useralejs/modifying.md
@@ -1,8 +1,7 @@
 ---
 title: Modifying UserALE.js
 component: useralejs
-permalink: /docs/useralejs/modifying
-priority: 11
+priority: 3
 ---
 
 # Customizing UserALE.js Logs through Source Code Modifications
diff --git a/site/_docs/useralejs/troubleshooting.md b/site/_docs/useralejs/troubleshooting.md
index 6343457..a972883 100644
--- a/site/_docs/useralejs/troubleshooting.md
+++ b/site/_docs/useralejs/troubleshooting.md
@@ -1,7 +1,7 @@
 ---
 title: Troubleshooting
 component: useralejs
-permalink: /docs/useralejs/troubleshooting
+priority: 5
 ---
 
 ### Enable Cross-Origin Resource Sharing (CORS)
diff --git a/site/_includes/doc_sidebar.html b/site/_includes/doc_sidebar.html
index 05e21d8..d045abd 100644
--- a/site/_includes/doc_sidebar.html
+++ b/site/_includes/doc_sidebar.html
@@ -32,21 +32,21 @@
   </div>
 
 
-  {% if page.component == 'system' %}
+  {% if page.component == 'stack' %}
     <div class="active title">
   {% else %}
     <div class="title">
   {% endif %}
     <i class="dropdown icon"></i>
-    System
+    Stack
   </div>
-  {% if page.component == 'system' %}
+  {% if page.component == 'stack' %}
     <div class="active content">
   {% else %}
     <div class="content">
   {% endif %}
     <div class="ui inverted bulleted list docs-list">
-      {% for doc in system %}
+      {% for doc in stack %}
         <a class="item" href="{{ doc.url }}">{{ doc.title }}</a>
       {% endfor %}
     </div>
diff --git a/site/_includes/footer.html b/site/_includes/footer.html
index f4cdf24..a256b6e 100644
--- a/site/_includes/footer.html
+++ b/site/_includes/footer.html
@@ -4,7 +4,7 @@
       <div class="column">
         <h4 class="ui inverted header">About</h4>
         <div class="ui inverted link list">
-          <a class="item" href="{{ '/system' | prepend: site.baseurl }}">System</a>
+          <a class="item" href="{{ '/stack' | prepend: site.baseurl }}">Stack</a>
           <a class="item" href="{{ '/userale' | prepend: site.baseurl }}">UserALE</a>
           <a class="item" href="{{ '/distill' | prepend: site.baseurl }}">Distill</a>
           <a class="item" href="{{ '/tap' | prepend: site.baseurl }}">Tap</a>
@@ -14,7 +14,7 @@
       <div class="column">
         <h4 class="ui inverted header">Docs</h4>
         <div class="ui inverted link list">
-          <a class="item" href="{{ '/docs/system' | prepend: site.baseurl }}">System</a>
+          <a class="item" href="{{ '/docs/stack' | prepend: site.baseurl }}">Stack</a>
           <a class="item" href="{{ '/docs/userale' | prepend: site.baseurl }}">UserALE</a>
           <a class="item" href="{{ '/docs/useralejs' | prepend: site.baseurl }}">UserAle.js</a>
           <a class="item" href="{{ '/docs/useralepy' | prepend: site.baseurl }}">UserAle.py</a>
diff --git a/site/_includes/header.html b/site/_includes/header.html
index 3bbf22a..42c15dc 100644
--- a/site/_includes/header.html
+++ b/site/_includes/header.html
@@ -8,7 +8,7 @@
       <div class="ui dropdown item">
         Components
         <div class="menu">
-          <a class="item" href="{{ '/stack' | prepend: site.baseurl }}">System</a>
+          <a class="item" href="{{ '/stack' | prepend: site.baseurl }}">Stack</a>
           <a class="item" href="{{ '/userale' | prepend: site.baseurl }}">UserALE</a>
           <a class="item" href="{{ '/distill' | prepend: site.baseurl }}">Distill</a>
           <a class="item" href="{{ '/tap' | prepend: site.baseurl }}">Tap</a>
@@ -18,7 +18,7 @@
       <div class="ui dropdown item">
         <a href="{{ '/docs' | prepend: site.baseurl }}">Docs</a>
         <div class="menu">
-          <a class="item" href="{{ '/docs/stack' | prepend: site.baseurl }}">System</a>
+          <a class="item" href="{{ '/docs/stack' | prepend: site.baseurl }}">Stack</a>
           <a class="item" href="{{ '/docs/userale'| prepend: site.baseurl }}">UserALE</a>
           <a class="item" href="{{ '/docs/useralejs'| prepend: site.baseurl }}">UserALE.js</a>
           <a class="item" href="{{ '/docs/useralepy'| prepend: site.baseurl }}">UserALE.py</a>
diff --git a/site/_pages/community.html b/site/_pages/community.html
index 083e9eb..17f8df9 100644
--- a/site/_pages/community.html
+++ b/site/_pages/community.html
@@ -98,5 +98,6 @@ title: Community
     <li>Dan Traviglia</li>
     <li>Arthi Vezhavendan</li>
     <li>Steve York</li>
+    <li>David Meikle</li>
   </ul>
 </div>
diff --git a/site/_pages/distill.html b/site/_pages/distill.html
index 9f92d10..3e6f30b 100644
--- a/site/_pages/distill.html
+++ b/site/_pages/distill.html
@@ -5,29 +5,29 @@ title: Distill
 image: /images/distill_inverted.png
 component: Distill
 
-description: Apache Distill is an experimental analytics framework for handling and analyzing UserALE data. Distill allows you to apply the power of python to you analytical pipeline, giving you option to manipulate and model UserALE data in a python environment or to request model output from python libries for use in applications or dashboards like <a href="{{ '/tap' | prepend: site.baseurl }}">Apache Tap<a/>. Distill empowers you to learn more from your data than any commercial servic [...]
+description: Apache Distill is an experimental analytics framework for handling and analyzing UserALE data. Distill allows you to focus on the data you want and model it. Distill empowers you to learn more from your data than any commercial service; use Distill's analytic libraries to generate statistics on how users interact with different elements of your application and also understand how users interact with your applications. Distill specializes in models of sequence and workflow so [...]
 
 features:
-  -
-    icon: search
-    color: blue
-    title: Easy, efficient queries
-    description: Distill utilizes RESTful APIs to streamline making calls to your UserALE log database.
-  -
-    icon: object ungroup
-    color: yellow
-    title: Segment your data
-    description: Retrieve on the cases or fields that you want.
-  -
-    icon: line chart
-    color: red
-    title: Compute gross usage trends
-    description: Distill comes with built-in statistics libraries so that you can see how much your application is being used and which elements users rely on most.
-  -
-    icon: ordered list
-    color: green
-    title: Model workflow
-    description: Distill comes with built in graph libraries for studying how user behaviors are sequenced in time allowing you to explore models of how user behavior unfolds over time.
+-
+icon: search
+color: blue
+title: Easy, efficient queries
+description: Distill utilizes RESTful APIs to streamline making calls to your UserALE log database.
+-
+icon: object ungroup
+color: yellow
+title: Segment your data
+description: Retrieve on the cases or fields that you want.
+-
+icon: line chart
+color: red
+title: Compute gross usage trends
+description: Distill comes with built-in statistics libraries so that you can see how much your application is being used and which elements users rely on most.
+-
+icon: ordered list
+color: green
+title: Model workflow
+description: Distill comes with built in graph libraries for studying how user behaviors are sequenced in time allowing you to explore models of how user behavior unfolds over time.
 
 contentCount: 0
----
+---
\ No newline at end of file
diff --git a/site/_site/community/index.html b/site/_site/community/index.html
index 9365434..6e96000 100644
--- a/site/_site/community/index.html
+++ b/site/_site/community/index.html
@@ -7,7 +7,7 @@
   <meta name="viewport" content="width=device-width, initial-scale=1">
 
   <title>Community</title>
-  <meta name="description" content="The homepage for Apache SensSoft">
+  <meta name="description" content="The homepage for Apache Flagon">
 
   <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>
@@ -16,8 +16,8 @@
   <script src="/js/main.js"></script>
 
   <link rel="stylesheet" href="/assets/main.css">
-  <link rel="canonical" href="http://senssoft.incubator.apache.org/community/">
-  <link rel="alternate" type="application/rss+xml" title="Apache SensSoft" href="/feed.xml">
+  <link rel="canonical" href="http://flagon.incubator.apache.org/community/">
+  <link rel="alternate" type="application/rss+xml" title="Apache Flagon" href="/feed.xml">
 
   
 </head>
@@ -28,7 +28,7 @@
     <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>
+      <h3 class="ui inverted header item">Apache Flagon</h3>
     </a>
 
     <div class="right menu">
@@ -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/contributing">docs</a> for more information on submitting effective contributions and bug reports.
+    The Apache Flagon 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>
 
@@ -80,8 +80,8 @@
     <div class="content">Users</div>
   </h3>
   <p>
-    For users of Apache SensSoft who want to keep up to date with new releases and community highlights.  To subscribe, email <a href="mailto:user-subscribe@senssoft.incubator.apache.org">user-subscribe@senssoft.incubator.apache.org</a>.
-    <a class="ui yellow button" href="mailto:users-subscribe@senssoft.incubator.apache.org">User List</a>
+    For users of Apache Flagon who want to keep up to date with new releases and community highlights.  To subscribe, email <a href="mailto:user-subscribe@flagon.incubator.apache.org">user-subscribe@flagon.incubator.apache.org</a>.
+    <a class="ui yellow button" href="mailto:users-subscribe@flagon.incubator.apache.org">User List</a>
   </p>
 
   <h3 class="ui header">
@@ -89,16 +89,16 @@
     <div class="content">Dev</div>
   </h3>
   <p>
-    For contributors to Apache SensSoft or those interested in ongoing design and development efforts.  To subscribe, email <a href="mailto:dev-subscribe@senssoft.incubator.apache.org">dev-subscribe@senssoft.incubator.apache.org</a>.
-    <a class="ui blue button" href="mailto:dev-subscribe@senssoft.incubator.apache.org">Dev List</a>
+    For contributors to Apache Flagon or those interested in ongoing design and development efforts.  To subscribe, email <a href="mailto:dev-subscribe@flagon.incubator.apache.org">dev-subscribe@flagon.incubator.apache.org</a>.
+    <a class="ui blue button" href="mailto:dev-subscribe@flagon.incubator.apache.org">Dev List</a>
   </p>
   <h3 class="ui header">
     <i class="upload icon"></i>
     <div class="content">Commits</div>
   </h3>
   <p>
-    For emails-on-commit across all Apache SensSoft products.  To subscribe, email <a href="mailto:commits-subscribe@senssoft.incubator.apache.org">commits-subscribe@senssoft.incubator.apache.org</a>.
-    <a class="ui blue button" href="mailto:commits-subscribe@senssoft.incubator.apache.org">Commits List</a>
+    For emails-on-commit across all Apache Flagon products.  To subscribe, email <a href="mailto:commits-subscribe@flagon.incubator.apache.org">commits-subscribe@flagon.incubator.apache.org</a>.
+    <a class="ui blue button" href="mailto:commits-subscribe@flagon.incubator.apache.org">Commits List</a>
   </p>
 </div>
 
@@ -109,47 +109,45 @@
     <div class="content">GitHub</div>
   </h3>
   <p>
-    <a href="https://github.com/apache?q=senssoft">Find our code on Github</a> to browse and contribute.
+    <a href="https://github.com/apache?q=flagon">Find our code on Github</a> to browse and contribute.
   </p>
   <h3 class="ui header">
     <i class="twitter icon"></i>
     <div class="content">Twitter</div>
   </h3>
   <p>
-    <a href="https://twitter.com/apachesenssoft">Follow us on Twitter</a> to keep up to date on Apache SensSoft and related developments.
+    <a href="https://twitter.com/ApacheFlagon">Follow us on Twitter</a> to keep up to date on Apache Flagon and related developments.
   </p>
   <h3 class="ui header">
     <i class="stack overflow icon"></i>
     <div class="content">StackOverflow</div>
   </h3>
   <p>
-    Get your questions answered on <a href="http://stackoverflow.com/questions/tagged/apache-senssoft">StackOverflow</a>.
+    Get your questions answered on <a href="http://stackoverflow.com/questions/tagged/apache-flagon">StackOverflow</a>.
   </p>
   <h3 class="ui header">
     <i class="bug icon"></i>
     <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/FLAGON">JIRA Issue Tracker</a> for full information on current developments, bugs, etc.
   </p>
   <h3 class="ui header">
     <i class="sticky note icon"></i>
     <div class="content">Wiki</div>
   </h3>
   <p>
-    See our <a href="https://cwiki.apache.org/confluence/display/SENSSOFT">wiki</a> for detailed information on project organization, roadmaps, etc.
+    See our <a href="https://cwiki.apache.org/confluence/display/FLAGON">wiki</a> for detailed information on project organization, roadmaps, etc.
   </p>
 </div>
 
 <div class="ui vertical segment">
   <h2 class="ui header">Contributors</h2>
   <p>
-    Thank you to all our contributors!  Want to be added?  Contribute and <a href="mailto:dev@senssoft.incubator.apache.org">contact us!</a>
+    Thank you to all our contributors!  Want to be added?  Contribute and <a href="mailto:dev@flagon.incubator.apache.org">contact us!</a>
   </p>
   <ul class="ui list">
     <li>Michelle Beard</li>
-    <li>Hugh Enxing</li>
-    <li>Kyle Finley</li>
     <li>Robert Foley</li>
     <li>Alex Ford</li>
     <li>Clay Gimenez</li>
@@ -161,6 +159,7 @@
     <li>Dan Traviglia</li>
     <li>Arthi Vezhavendan</li>
     <li>Steve York</li>
+    <li>David Meikle</li>
   </ul>
 </div>
 
@@ -197,11 +196,11 @@
       <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>
+          <a class="item" href="https://github.com/apache?q=flagon">GitHub</a>
+          <a class="item" href="http://stackoverflow.com/questions/tagged/apache-flagon">StackOverflow</a>
+          <a class="item" href="https://issues.apache.org/jira/browse/FLAGON">Jira Issue Tracker</a>
+          <a class="item" href="https://cwiki.apache.org/confluence/display/FLAGON">Project Wiki</a>
+          <a class="item" href="https://twitter.com/ApacheFlagon">Twitter</a>
         </div>
       </div>
       <div class="column">
@@ -219,12 +218,11 @@
   <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 th [...]
+        Apache Flagon 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  [...]
       </div>
       <div class="center aligned column">
-        Copyright &copy; 2018 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
-        Apache SensSoft, SensSoft, Apache, the Apache feather logo, the Apache SensSoft 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.
+        Copyright &copy; 2019 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br>
+        Apache Flagon, Flagon, Apache, the Apache feather logo, the Apache Flagon logo and the Apache Incubator logo are trademarks of The Apache Software Foundation.
       </div>
     </div>
   </div>
diff --git a/site/_site/docs/contributing/index.html b/site/_site/docs/contributing/index.html
index e1ecd75..1325815 100644
--- a/site/_site/docs/contributing/index.html
+++ b/site/_site/docs/contributing/index.html
@@ -7,7 +7,7 @@
   <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!">
+  <meta name="description" content="First, thank you for contributing to Apache Flagon!">
 
   <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>
@@ -16,8 +16,8 @@
   <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">
+  <link rel="canonical" href="http://flagon.incubator.apache.org/docs/contributing/">
+  <link rel="alternate" type="application/rss+xml" title="Apache Flagon" href="/feed.xml">
 
   
 </head>
@@ -28,7 +28,7 @@
     <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>
+      <h3 class="ui inverted header item">Apache Flagon</h3>
     </a>
 
     <div class="right menu">
@@ -81,7 +81,7 @@
     <div class="active title">
   
     <i class="dropdown icon"></i>
-    Apache SensSoft
+    Apache Flagon
   </div>
   
     <div class="active content">
@@ -238,7 +238,7 @@
   </div>
   <div class="docs-content">
     <h2 class="ui header">Contributing</h2>
-    <p>First, thank you for contributing to Apache SensSoft!</p>
+    <p>First, thank you for contributing to Apache Flagon!</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>
 
@@ -248,12 +248,12 @@
 
 <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>
+<p>All changes to Apache Flagon must have a corresponding issue in <a href="https://issues.apache.org/jira/browse/Flagon">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>
+<p>The Apache Flagon source code is maintained in <a href="https://git-wip-us.apache.org/repos/asf?s=flagon">several git repositories</a> hosted by Apache.  These repositories are mirrored and more easily available <a href="https://github.com/apache?q=flagon">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">"[FLAGON]-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>