You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drat.apache.org by ma...@apache.org on 2018/02/28 06:17:37 UTC

[drat] branch asf-site updated (47e60dc -> ac5daa8)

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

mattmann pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/drat.git.


    from 47e60dc  Merge pull request #111 from nipurndoshi/dev-site
     new 58fb27b  Rectify PMC; only list PMC, and don't list contributors.
     new c0e191e  remove commented code.
     new ac5daa8  Merge branch 'asf-site' of github.com:apache/drat into asf-site

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 index.html | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
mattmann@apache.org.

[drat] 02/03: remove commented code.

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mattmann pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/drat.git

commit c0e191e544046f19d5e225c6bc33233a14cfc432
Author: Chris Mattmann <ch...@jpl.nasa.gov>
AuthorDate: Tue Feb 27 22:16:06 2018 -0800

    remove commented code.
---
 index.html | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/index.html b/index.html
index bd2c88d..59a9a25 100644
--- a/index.html
+++ b/index.html
@@ -215,14 +215,6 @@
 
     <script type="text/javascript">
       var drat = {};
-
-     // drat = $.getJSON( "https://api.github.com/repos/apache/drat/contributors",
-      //  function( drat){
-     //     for( var i=0; i<drat.length;i++){
-     //         $(".names").append('<div class="col-md-3 breathing-space"><a target="_blank" href="https://github.com/' +  drat[i].login + '"><img src="' + drat[i].avatar_url +'" width="50%"/><h5>' + drat[i].login + '</h5></a></div>');
-     //       }
-      //  })
-      //  .fail( function(){
           drat = {
                             "display_name": "DRAT",
                             "site": "http://drat.apache.org/",
@@ -292,10 +284,6 @@
             for( var username in drat.roster){
               $(".names").append('<div class="col-md-3 breathing-space"><a href="https://github.com/' + username + '"><img src="https://avatars.githubusercontent.com/' + username +'" width="50%"/><h5>' + drat.roster[username]["name"] + '</h5></a></div>');
             }
-
-            //});
-
-
       
     </script>
   </body>

-- 
To stop receiving notification emails like this one, please contact
mattmann@apache.org.

[drat] 01/03: Rectify PMC; only list PMC, and don't list contributors.

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mattmann pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/drat.git

commit 58fb27b4d3c193eef1a87cd7747e9842fb85de85
Author: Chris Mattmann <ch...@jpl.nasa.gov>
AuthorDate: Tue Feb 27 22:15:58 2018 -0800

    Rectify PMC; only list PMC, and don't list contributors.
---
 index.html | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/index.html b/index.html
index dc0887a..bd2c88d 100644
--- a/index.html
+++ b/index.html
@@ -160,7 +160,7 @@
 
      <section id="contributors" class="container-fluid alternate-darkbg white-text section-space">
        <div class="container text-center breathing-space">
-          <h2 class="col-sm-12 breathing-space ">CONTRIBUTORS</h2>
+          <h2 class="col-sm-12 breathing-space ">Project Management Committee (PMC)</h2>
           <hr/>
           <div class="row names">
 
@@ -216,13 +216,13 @@
     <script type="text/javascript">
       var drat = {};
 
-      drat = $.getJSON( "https://api.github.com/repos/apache/drat/contributors",
-        function( drat){
-          for( var i=0; i<drat.length;i++){
-              $(".names").append('<div class="col-md-3 breathing-space"><a target="_blank" href="https://github.com/' +  drat[i].login + '"><img src="' + drat[i].avatar_url +'" width="50%"/><h5>' + drat[i].login + '</h5></a></div>');
-            }
-        })
-        .fail( function(){
+     // drat = $.getJSON( "https://api.github.com/repos/apache/drat/contributors",
+      //  function( drat){
+     //     for( var i=0; i<drat.length;i++){
+     //         $(".names").append('<div class="col-md-3 breathing-space"><a target="_blank" href="https://github.com/' +  drat[i].login + '"><img src="' + drat[i].avatar_url +'" width="50%"/><h5>' + drat[i].login + '</h5></a></div>');
+     //       }
+      //  })
+      //  .fail( function(){
           drat = {
                             "display_name": "DRAT",
                             "site": "http://drat.apache.org/",
@@ -270,6 +270,10 @@
                                 "name": "Chris Mattmann",
                                 "date": "2017-09-20"
                               },
+						      "ottlinger": {
+								"name": "Philipp Ottlinger",
+								"date": "2018-02-27"
+							  },
                               "darth-pr": {
                                 "name": "Paul Ramirez",
                                 "date": "2017-09-20"
@@ -289,7 +293,7 @@
               $(".names").append('<div class="col-md-3 breathing-space"><a href="https://github.com/' + username + '"><img src="https://avatars.githubusercontent.com/' + username +'" width="50%"/><h5>' + drat.roster[username]["name"] + '</h5></a></div>');
             }
 
-            });
+            //});
 
 
       

-- 
To stop receiving notification emails like this one, please contact
mattmann@apache.org.

[drat] 03/03: Merge branch 'asf-site' of github.com:apache/drat into asf-site

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mattmann pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/drat.git

commit ac5daa85591c4c64ca0f6067d184dc89d13e09e6
Merge: c0e191e 47e60dc
Author: Chris Mattmann <ch...@jpl.nasa.gov>
AuthorDate: Tue Feb 27 22:17:25 2018 -0800

    Merge branch 'asf-site' of github.com:apache/drat into asf-site


-- 
To stop receiving notification emails like this one, please contact
mattmann@apache.org.