Repository: incubator-atlas-website
Updated Branches:
  refs/heads/asf-site 02b206822 -> a876d1782


http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/TypeSystem.html
----------------------------------------------------------------------
diff --git a/TypeSystem.html b/TypeSystem.html
index de01779..6c9b46b 100644
--- a/TypeSystem.html
+++ b/TypeSystem.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Type System</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>
@@ -210,21 +210,21 @@
 <p><img src="images/twiki/data-types.png" alt="" /></p></div>
 <div class="section">
 <h4><a name="Types_Instances_Overview"></a>Types Instances Overview</h4>
-<p><img src="images/twiki/types-instances.png" alt="" /></p></div>
+<p><img src="images/twiki/types-instance.png" alt="" /></p></div>
 <div class="section">
 <h3><a name="Details"></a>Details</h3>
 <p>### Structs are like C structs - they don't have an identity - no 
independent lifecycle - like a bag of properties - like in hive, also</p>
-<p>### Classes are classes - like any OO class - have identity - can have 
inheritence - can contain structs - don't necessarily need to use a struct 
inside the class to define props - can also define props using <a 
href="./AttributeDefinition.html">AttributeDefinition</a> using the basic data 
types - classes are immutable once created</p>
+<p>### Classes are classes - like any OO class - have identity - can have 
inheritence - can contain structs - don't necessarily need to use a struct 
inside the class to define props - can also define props using 
AttributeDefinition using the basic data types - classes are immutable once 
created</p>
 <p>### On search interface: - can search for all instances of a class - 
classes could become tables in a relational system, for instance       - also 
databases, columns, etc.</p>
 <p>### Traits is similar to scala - traits more like decorators (?) - traits 
get applied to instances - not classes    - this satisfies the classification 
mechanism (ish) - can have a class instance have any number of traits - e.g. 
security clearance - any Person class could have it; so we add it as a mixin to 
the Person class       - security clearance trait has a level attribute        
- traits are labels     - each label can have its own attribute - reason for 
doing this is:     - modeled security clearance trait      - want to prescribe 
it to other things, too     - can now search for anything that has security 
clearance level = 1, for instance</p>
 <p>### On Instances: - class, trait, struct all have bags of attributes - can 
get name of type associated with attribute - can get or set the attribute in 
that bag for each instance</p>
 <p>### On Classification: - create column as a class - create a trait to 
classify as &quot;PHI&quot; - would create the instance of the column with the 
PHI trait - apply traits to instances - CAN'T apply traits to class</p>
 <p>### Other useful information</p>
-<p><a href="./HierarchicalClassType.html">HierarchicalClassType</a> - base 
type for <a href="./ClassType.html">ClassType</a> and <a 
href="./TraitType.html">TraitType</a> Instances created from Definitions</p>
-<p>Every instance is referenceable - i.e. something can point to it in the 
graph db <a href="./MetadataService.html">MetadataService</a> may not be used 
longterm - it is currently used for bootstrapping the repo &amp; type system</p>
+<p>HierarchicalClassType - base type for ClassType and TraitType Instances 
created from Definitions</p>
+<p>Every instance is referenceable - i.e. something can point to it in the 
graph db MetadataService may not be used longterm - it is currently used for 
bootstrapping the repo &amp; type system</p>
 <p>Id class - represents the Id of an instance</p>
-<p>When the web service receives an object graph, the <a 
href="./ObjectGraphWalker.html">ObjectGraphWalker</a> is used to update things  
      - <a href="./DiscoverInstances.html">DiscoverInstances</a> is used to 
discover the instances in the object graph received by the web service</p>
-<p><a href="./MapIds.html">MapIds</a> assigns new ids to the discovered 
instances in the object graph</p>
+<p>When the web service receives an object graph, the ObjectGraphWalker is 
used to update things       - DiscoverInstances is used to discover the 
instances in the object graph received by the web service</p>
+<p>MapIds assigns new ids to the discovered instances in the object graph</p>
 <p>Anything under the storage package is not part of the public 
interface</p></div>
                   </div>
           </div>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/api/application.wadl
----------------------------------------------------------------------
diff --git a/api/application.wadl b/api/application.wadl
index 170314d..59763be 100644
--- a/api/application.wadl
+++ b/api/application.wadl
@@ -26,6 +26,42 @@ Adds/Updates given entities identified by its GUID or unique 
attribute]]>
           <wadl:representation mediaType="application/json"/>
         </wadl:response>
       </wadl:method>
+      <wadl:method name="DELETE">
+        <wadl:doc>
+          <![CDATA[Delete entities from the repository identified by their 
guids (including their composite references)
+or
+Deletes a single entity identified by its type and unique attribute value from 
the repository (including their composite references)]]>
+        </wadl:doc>
+        <wadl:request>
+          <wadl:param name="guid" style="query">
+            <wadl:doc>
+              <![CDATA[list of deletion candidate guids
+or]]>
+            </wadl:doc>
+          </wadl:param>
+          <wadl:param name="type" style="query">
+            <wadl:doc>
+              <![CDATA[the entity type]]>
+            </wadl:doc>
+          </wadl:param>
+          <wadl:param name="property" style="query">
+            <wadl:doc>
+              <![CDATA[the unique attribute used to identify the entity]]>
+            </wadl:doc>
+          </wadl:param>
+          <wadl:param name="value" style="query">
+            <wadl:doc>
+              <![CDATA[the unique attribute value used to identify the 
entity]]>
+            </wadl:doc>
+          </wadl:param>
+        </wadl:request>
+        <wadl:response>
+          <wadl:doc>
+            <![CDATA[response payload as json - including guids of 
entities(including composite references from that entity) that were deleted]]>
+          </wadl:doc>
+          <wadl:representation mediaType="application/json"/>
+        </wadl:response>
+      </wadl:method>
       <wadl:method name="GET">
         <wadl:request>
           <wadl:param name="type" style="query"/>
@@ -93,6 +129,13 @@ Typically, would be one of all, TRAIT, CLASS, ENUM, 
STRUCT]]>
         </wadl:response>
       </wadl:method>
     </wadl:resource>
+    <wadl:resource path="/api/atlas/admin/status">
+      <wadl:method name="GET">
+        <wadl:response>
+          <wadl:representation mediaType="application/json"/>
+        </wadl:response>
+      </wadl:method>
+    </wadl:resource>
     <wadl:resource path="/api/atlas/admin/version">
       <wadl:method name="GET">
         <wadl:doc>
@@ -278,6 +321,36 @@ graph.getVertices(key, value);]]>
         </wadl:response>
       </wadl:method>
     </wadl:resource>
+    <wadl:resource path="/api/atlas/entities/{guid}/audit">
+      <wadl:param name="guid" style="template">
+        <wadl:doc>
+          <![CDATA[entity id]]>
+        </wadl:doc>
+      </wadl:param>
+      <wadl:method name="GET">
+        <wadl:doc>
+          <![CDATA[Returns the entity audit events for a given entity id. The 
events are returned in the decreasing order of timestamp.]]>
+        </wadl:doc>
+        <wadl:request>
+          <wadl:param name="startKey" style="query">
+            <wadl:doc>
+              <![CDATA[used for pagination. Startkey is inclusive, the 
returned results contain the event with the given startkey.
+First time getAuditEvents() is called for an entity, startKey should be null,
+with count = (number of events required + 1). Next time getAuditEvents() is 
called for the same entity,
+startKey should be equal to the entityKey of the last event returned in the 
previous call.]]>
+            </wadl:doc>
+          </wadl:param>
+          <wadl:param name="count" style="query">
+            <wadl:doc>
+              <![CDATA[number of events required]]>
+            </wadl:doc>
+          </wadl:param>
+        </wadl:request>
+        <wadl:response>
+          <wadl:representation mediaType="application/json"/>
+        </wadl:response>
+      </wadl:method>
+    </wadl:resource>
     <wadl:resource path="/api/atlas/entities/{guid}/traits">
       <wadl:param name="guid" style="template">
         <wadl:doc>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/api/resource_AdminResource.html
----------------------------------------------------------------------
diff --git a/api/resource_AdminResource.html b/api/resource_AdminResource.html
index 98ab10a..cb64643 100644
--- a/api/resource_AdminResource.html
+++ b/api/resource_AdminResource.html
@@ -74,6 +74,9 @@
         <a href="#path__admin_stack.html">/admin/stack</a>
         </li>
         <li>
+        <a href="#path__admin_status.html">/admin/status</a>
+        </li>
+        <li>
         <a href="#path__admin_version.html">/admin/version</a>
         </li>
       </ul>
@@ -96,6 +99,22 @@
         </tr>
       </table>
       <p>json representing the thread stack dump.</p>
+        <a name="path__admin_status.html"></a>
+      <h1>/admin/status</h1>
+      <a name="GET"></a>
+      <h2>GET</h2>
+      <h3>Response Body</h3>
+      <table>
+        <tr>
+          <td align="right">element:</td>
+          <td>(custom)</td>
+        </tr>
+        <tr>
+          <td align="right">media types:</td>
+          <td>application/json</td>
+        </tr>
+      </table>
+      <p>(no documentation provided)</p>
         <a name="path__admin_version.html"></a>
       <h1>/admin/version</h1>
       <a name="GET"></a>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/api/resource_EntityResource.html
----------------------------------------------------------------------
diff --git a/api/resource_EntityResource.html b/api/resource_EntityResource.html
index 26e649d..e502078 100644
--- a/api/resource_EntityResource.html
+++ b/api/resource_EntityResource.html
@@ -80,6 +80,9 @@ of the Type they correspond with.</p>
         <a href="#path__entities_-guid-.html">/entities/{guid}</a>
         </li>
         <li>
+        <a href="#path__entities_-guid-_audit.html">/entities/{guid}/audit</a>
+        </li>
+        <li>
         <a 
href="#path__entities_-guid-_traits.html">/entities/{guid}/traits</a>
         </li>
         <li>
@@ -97,6 +100,7 @@ of the Type they correspond with.</p>
       <ul>
         <li><a href="#POST">POST</a></li>
         <li><a href="#PUT">PUT</a></li>
+        <li><a href="#DELETE">DELETE</a></li>
         <li><a href="#GET">GET</a></li>
       </ul>
       <a name="POST"></a>
@@ -136,6 +140,67 @@ Adds/Updates given entities identified by its GUID or 
unique attribute
         </tr>
       </table>
       <p>response payload as json</p>
+      <a name="DELETE"></a>
+      <h2>DELETE</h2>
+      <p>
+            Delete entities from the repository identified by their guids 
(including their composite references)
+or
+Deletes a single entity identified by its type and unique attribute value from 
the repository (including their composite references)
+          </p>
+      <h3>Parameters</h3>
+      <table>
+        <tr>
+          <th>name</th>
+          <th>description</th>
+          <th>type</th>
+          <th>default</th>
+        </tr>
+        <tr>
+          <td>guid</td>
+          <td>
+            list of deletion candidate guids
+or
+          </td>
+          <td>query</td>
+          <td></td>
+        </tr>
+        <tr>
+          <td>type</td>
+          <td>
+            the entity type
+          </td>
+          <td>query</td>
+          <td></td>
+        </tr>
+        <tr>
+          <td>property</td>
+          <td>
+            the unique attribute used to identify the entity
+          </td>
+          <td>query</td>
+          <td></td>
+        </tr>
+        <tr>
+          <td>value</td>
+          <td>
+            the unique attribute value used to identify the entity
+          </td>
+          <td>query</td>
+          <td></td>
+        </tr>
+      </table>
+      <h3>Response Body</h3>
+      <table>
+        <tr>
+          <td align="right">element:</td>
+          <td>(custom)</td>
+        </tr>
+        <tr>
+          <td align="right">media types:</td>
+          <td>application/json</td>
+        </tr>
+      </table>
+      <p>response payload as json - including guids of entities(including 
composite references from that entity) that were deleted</p>
       <a name="GET"></a>
       <h2>GET</h2>
       <h3>Parameters</h3>
@@ -263,6 +328,61 @@ Does not support removal of attribute values
         </tr>
       </table>
       <p>(no documentation provided)</p>
+        <a name="path__entities_-guid-_audit.html"></a>
+      <h1>/entities/{guid}/audit</h1>
+      <a name="GET"></a>
+      <h2>GET</h2>
+      <p>
+            Returns the entity audit events for a given entity id. The events 
are returned in the decreasing order of timestamp.
+          </p>
+      <h3>Parameters</h3>
+      <table>
+        <tr>
+          <th>name</th>
+          <th>description</th>
+          <th>type</th>
+          <th>default</th>
+        </tr>
+        <tr>
+          <td>guid</td>
+          <td>
+            entity id
+          </td>
+          <td>path</td>
+          <td></td>
+        </tr>
+        <tr>
+          <td>startKey</td>
+          <td>
+            used for pagination. Startkey is inclusive, the returned results 
contain the event with the given startkey.
+First time getAuditEvents() is called for an entity, startKey should be null,
+with count = (number of events required + 1). Next time getAuditEvents() is 
called for the same entity,
+startKey should be equal to the entityKey of the last event returned in the 
previous call.
+          </td>
+          <td>query</td>
+          <td></td>
+        </tr>
+        <tr>
+          <td>count</td>
+          <td>
+            number of events required
+          </td>
+          <td>query</td>
+          <td>100</td>
+        </tr>
+      </table>
+      <h3>Response Body</h3>
+      <table>
+        <tr>
+          <td align="right">element:</td>
+          <td>(custom)</td>
+        </tr>
+        <tr>
+          <td align="right">media types:</td>
+          <td>application/json</td>
+        </tr>
+      </table>
+      <p>(no documentation provided)</p>
         <a name="path__entities_-guid-_traits.html"></a>
       <h1>/entities/{guid}/traits</h1>
       <a name="GET"></a>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index ee67321..28fe946 100644
--- a/index.html
+++ b/index.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Data Governance and Metadata framework for 
Hadoop</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>
@@ -256,7 +256,8 @@
 <ul>
 <li><a href="./Bridge-Hive.html">Hive Bridge</a></li>
 <li><a href="./Bridge-Sqoop.html">Sqoop Bridge</a></li>
-<li><a href="./Bridge-Falcon.html">Falcon Bridge</a></li></ul></li>
+<li><a href="./Bridge-Falcon.html">Falcon Bridge</a></li>
+<li><a href="./StormAtlasHook.html">Storm Bridge</a></li></ul></li>
 <li><a href="./HighAvailability.html">Fault Tolerance And High Availability 
Options</a></li></ul></div>
 <div class="section">
 <h3><a name="API_Documentation"></a>API Documentation</h3>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/issue-tracking.html
----------------------------------------------------------------------
diff --git a/issue-tracking.html b/issue-tracking.html
index 6a6f2da..b63070e 100644
--- a/issue-tracking.html
+++ b/issue-tracking.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Issue Tracking</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/license.html
----------------------------------------------------------------------
diff --git a/license.html b/license.html
index c0298c9..2ba8721 100644
--- a/license.html
+++ b/license.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Project License</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/mail-lists.html
----------------------------------------------------------------------
diff --git a/mail-lists.html b/mail-lists.html
index 1b7e8d7..42ff641 100644
--- a/mail-lists.html
+++ b/mail-lists.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/project-info.html
----------------------------------------------------------------------
diff --git a/project-info.html b/project-info.html
index 2e86034..0497e1c 100644
--- a/project-info.html
+++ b/project-info.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/source-repository.html
----------------------------------------------------------------------
diff --git a/source-repository.html b/source-repository.html
index 0db5db0..7c9b121 100644
--- a/source-repository.html
+++ b/source-repository.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Source Repository</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>
@@ -206,17 +206,17 @@
 <h2><a name="Web_Access"></a>Web Access</h2><a name="Web_Access"></a>
 <p>The following is a link to the online source repository.</p>
 <div class="source">
-<pre><a class="externalLink" 
href="https://git-wip-us.apache.org/repos/asf/incubator-atlas.git/atlas-docs";>https://git-wip-us.apache.org/repos/asf/incubator-atlas.git/atlas-docs</a></pre></div></div>
+<pre><a class="externalLink" 
href="https://github.com/apache/incubator-atlas.git/atlas-docs";>https://github.com/apache/incubator-atlas.git/atlas-docs</a></pre></div></div>
 <div class="section">
 <h2><a name="Anonymous_access"></a>Anonymous access</h2><a 
name="Anonymous_access"></a>
 <p>Refer to the documentation of the SCM used for more information about 
anonymously check out. The connection url is:</p>
 <div class="source">
-<pre>https://git-wip-us.apache.org/repos/asf/incubator-atlas.git/atlas-docs</pre></div></div>
+<pre>git:https://github.com/apache/incubator-atlas.git/atlas-docs</pre></div></div>
 <div class="section">
 <h2><a name="Developer_access"></a>Developer access</h2><a 
name="Developer_access"></a>
 <p>Refer to the documentation of the SCM used for more information about 
developer check out. The connection url is:</p>
 <div class="source">
-<pre>https://git-wip-us.apache.org/repos/asf/incubator-atlas.git/atlas-docs</pre></div></div>
+<pre>git:https://git-wip-us.apache.org/repos/asf/incubator-atlas.git/atlas-docs</pre></div></div>
 <div class="section">
 <h2><a name="Access_from_behind_a_firewall"></a>Access from behind a 
firewall</h2><a name="Access_from_behind_a_firewall"></a>
 <p>Refer to the documentation of the SCM used for more information about 
access behind a firewall.</p></div>

http://git-wip-us.apache.org/repos/asf/incubator-atlas-website/blob/a876d178/team-list.html
----------------------------------------------------------------------
diff --git a/team-list.html b/team-list.html
index dfe05b1..d5554e5 100644
--- a/team-list.html
+++ b/team-list.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2016-01-05
+ | Generated by Apache Maven Doxia at 2016-04-25
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20160105" />
+    <meta name="Date-Revision-yyyymmdd" content="20160425" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache Atlas &#x2013; Team list</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -189,7 +189,7 @@
         
                 
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2016-01-05</li> <li class="divider pull-right">|</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2016-04-25</li> <li class="divider pull-right">|</li>
               <li id="projectVersion" class="pull-right">Version: 
0.7-incubating-SNAPSHOT</li>
             
                             </ul>
@@ -227,7 +227,7 @@
 <td><a name="rhbutani"></a>rhbutani</td>
 <td>Harish Butani</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
-<td>Hortonworks Inc.</td>
+<td>-</td>
 <td>committer, PPMC</td>
 <td>-8</td>
 <td><span id="developer-1">-8</span></td></tr>
@@ -244,7 +244,7 @@
 <td>Jon Maron</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Hortonworks Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-5</td>
 <td><span id="developer-3">-5</span></td></tr>
 <tr class="b">
@@ -252,7 +252,7 @@
 <td>Andrew Ahn</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Hortonworks Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-8</td>
 <td><span id="developer-4">-8</span></td></tr>
 <tr class="a">
@@ -260,7 +260,7 @@
 <td>David Kaspar</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Merck &amp; Co Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>+1</td>
 <td><span id="developer-5">+1</span></td></tr>
 <tr class="b">
@@ -268,7 +268,7 @@
 <td>Ivo Lasek</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Merck &amp; Co Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>+1</td>
 <td><span id="developer-6">+1</span></td></tr>
 <tr class="a">
@@ -276,7 +276,7 @@
 <td>Dennis Fusaro</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Aetna Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-5</td>
 <td><span id="developer-7">-5</span></td></tr>
 <tr class="b">
@@ -284,7 +284,7 @@
 <td>Chris Hyzer</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Aetna Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-5</td>
 <td><span id="developer-8">-5</span></td></tr>
 <tr class="a">
@@ -292,7 +292,7 @@
 <td>Daniel Markwat</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Aetna Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-5</td>
 <td><span id="developer-9">-5</span></td></tr>
 <tr class="b">
@@ -300,7 +300,7 @@
 <td>Greg Senia</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Aetna Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-5</td>
 <td><span id="developer-10">-5</span></td></tr>
 <tr class="a">
@@ -308,7 +308,7 @@
 <td>James Vollmer</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Target Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-6</td>
 <td><span id="developer-11">-6</span></td></tr>
 <tr class="b">
@@ -316,7 +316,7 @@
 <td>Aaron Dossett</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Target Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-6</td>
 <td><span id="developer-12">-6</span></td></tr>
 <tr class="a">
@@ -324,7 +324,7 @@
 <td>Mitch Schussler</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>JPMC</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-5</td>
 <td><span id="developer-13">-5</span></td></tr>
 <tr class="b">
@@ -332,7 +332,7 @@
 <td>Viswanath Avasarala</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Schlumberger Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-6</td>
 <td><span id="developer-14">-6</span></td></tr>
 <tr class="a">
@@ -340,7 +340,7 @@
 <td>Anil Varma</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Schlumberger Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-6</td>
 <td><span id="developer-15">-6</span></td></tr>
 <tr class="b">
@@ -348,7 +348,7 @@
 <td>Barbara Stortz</td>
 <td>bstortz@sap</td>
 <td>SAP Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-8</td>
 <td><span id="developer-16">-8</span></td></tr>
 <tr class="a">
@@ -364,15 +364,15 @@
 <td>Suresh Srinivas</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Hortonworks Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-8</td>
 <td><span id="developer-18">-8</span></td></tr>
 <tr class="a">
 <td><a name="vranganathan"></a>vranganathan</td>
 <td>Venkat Ranganathan</td>
-<td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
+<td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Hortonworks Inc.</td>
-<td>committer</td>
+<td>committer, PPMC</td>
 <td>-8</td>
 <td><span id="developer-19">-8</span></td></tr>
 <tr class="b">
@@ -380,9 +380,17 @@
 <td>Suma Shivaprasad</td>
 <td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
 <td>Hortonworks Inc.</td>
-<td>committer, PPMC</td>
+<td>committer</td>
 <td>-8</td>
-<td><span id="developer-20">-8</span></td></tr></table></div>
+<td><span id="developer-20">-8</span></td></tr>
+<tr class="a">
+<td><a name="yhemanth"></a>yhemanth</td>
+<td>Hemanth Yamijala</td>
+<td><a class="externalLink" 
href="mailto:[email protected]";>[email protected]</a></td>
+<td>Hortonworks Inc.</td>
+<td>committer</td>
+<td>+05:30</td>
+<td><span id="developer-21">+05:30</span></td></tr></table></div>
 <div class="section">
 <h3><a name="Contributors"></a>Contributors</h3><a name="Contributors"></a>
 <p>There are no contributors listed for this project. Please check back again 
later.</p><script type="text/javascript">
@@ -418,6 +426,7 @@ function init(){
     offsetDate('developer-18', '-8');
     offsetDate('developer-19', '-8');
     offsetDate('developer-20', '-8');
+    offsetDate('developer-21', '0');
 }
 
 window.onLoad = init();

Reply via email to