You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by lr...@apache.org on 2015/11/24 02:28:17 UTC

[5/7] incubator-systemml-website git commit: Add Community Members template page

Add Community Members template page

List mentors and committers on the community
members page


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/commit/8e0a8b29
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/tree/8e0a8b29
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/diff/8e0a8b29

Branch: refs/heads/master
Commit: 8e0a8b296a1729b970fe356820c24a2a09febd06
Parents: 3d830a6
Author: Luciano Resende <lr...@apache.org>
Authored: Mon Nov 23 16:54:51 2015 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Mon Nov 23 17:20:06 2015 -0800

----------------------------------------------------------------------
 _data/members.yml    | 84 +++++++++++++++++++++++++++++++++++++++++++++++
 _data/mentors.yml    | 12 +++++++
 community-members.md | 43 ++++++++++++++++++++++++
 community.md         |  1 -
 4 files changed, 139 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/8e0a8b29/_data/members.yml
----------------------------------------------------------------------
diff --git a/_data/members.yml b/_data/members.yml
new file mode 100644
index 0000000..cb69a32
--- /dev/null
+++ b/_data/members.yml
@@ -0,0 +1,84 @@
+- name: Alexandre V Evfimievski
+  apache_id: ae2015
+  pmc: true
+  affiliation: IBM
+
+- name: Arvind Surve
+  apache_id: acs_s
+  pmc: true
+  affiliation: IBM
+
+- name: Berthold Reinwald
+  apache_id: reinwald
+  pmc: true
+  affiliation: IBM
+
+- name: DB Tsai
+  apache_id: dbtsai
+  pmc: true
+  affiliation: Netflix
+
+- name: Deron Eriksson
+  apache_id: deron
+  pmc: true
+  affiliation: IBM
+
+- name: Fred Reiss
+  apache_id: freiss
+  pmc: true
+  affiliation: IBM
+
+- name: Holden Karau
+  apache_id: holden
+  pmc: true
+  affiliation: IBM
+
+- name: Joseph Bradley
+  apache_id: jkbradley
+  pmc: true
+  affiliation: Databricks
+
+- name: Luciano Resende
+  apache_id: lresende
+  pmc: true
+  affiliation: IBM
+
+- name: Matthias Boehm
+  apache_id: mboehm7
+  pmc: true
+  affiliation: IBM
+
+- name: Mike Dusenberry
+  apache_id: dusenberrymw
+  pmc: true
+  affiliation: IBM
+
+- name: Niketan Pansare
+  apache_id: niketanpansare
+  pmc: true
+  affiliation: IBM
+
+- name: Patrick WendelL
+  apache_id: pwendell
+  pmc: true
+  affiliation: Databricks
+
+- name: Prithviraj Sen
+  apache_id: prithvi
+  pmc: true
+  affiliation: IBM
+
+- name: Reynold Xin
+  apache_id: rxin
+  pmc: true
+  affiliation: Databricks
+
+- name: Shirish Tatikonda
+  apache_id: shirisht
+  pmc: true
+  affiliation: IBM
+
+- name: Xiangrui Meng
+  apache_id: meng
+  pmc: true
+  affiliation: Databricks
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/8e0a8b29/_data/mentors.yml
----------------------------------------------------------------------
diff --git a/_data/mentors.yml b/_data/mentors.yml
new file mode 100644
index 0000000..f63dba3
--- /dev/null
+++ b/_data/mentors.yml
@@ -0,0 +1,12 @@
+- name: Luciano Resende
+  apache_id: lresende
+
+- name: Patrick Wendell
+  apache_id: pwendell
+
+- name: Reynold Xin
+  apache_id: rxin
+
+- name: Rich Bowen
+  apache_id: rbowen
+

http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/8e0a8b29/community-members.md
----------------------------------------------------------------------
diff --git a/community-members.md b/community-members.md
new file mode 100644
index 0000000..b069fe8
--- /dev/null
+++ b/community-members.md
@@ -0,0 +1,43 @@
+---
+layout: page
+title: Community Members
+description: Project Community Page
+group: nav-right
+---
+{% include JB/setup %}
+
+### {{ site.data.project.short_name }} Mentors
+
+{% if site.data.mentors %}
+<table class="table table-hover">
+    <tr>
+        <th><b>ID</b></th><th><b>Full Name</b></th>
+    </tr>
+    {% for mentor in site.data.mentors %}
+        <tr>
+        <td>{{mentor.apache_id}}</td>
+        <td>{{mentor.name}}</td>
+        </tr>
+    {% endfor %}
+</table>
+{% endif %}
+
+
+### {{ site.data.project.short_name }} Team Members
+
+{% if site.data.members %}
+<table class="table table-hover">
+    <tr>
+        <th><b>ID</b></th><th><b>Full Name</b></th><th><b>PMC</b></th><th><b>Affiliation</b></th>
+    </tr>
+    {% for member in site.data.members %}
+        <tr>
+        <td>{{member.apache_id}}</td>
+        <td>{{member.name}}</td>
+        <td>{{member.pmc}}</td>
+        <td>{{member.affiliation}}</td>
+        </tr>
+    {% endfor %}
+</table>
+{% endif %}
+

http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/8e0a8b29/community.md
----------------------------------------------------------------------
diff --git a/community.md b/community.md
index 5d914ed..57090f3 100644
--- a/community.md
+++ b/community.md
@@ -53,7 +53,6 @@ Before submitting an issue, please:
 Enhancement requests for new features are also welcome. The more concrete and rationale the request is, the greater the chance it will incorporated into future releases.
 
 
-
   [https://issues.apache.org/jira/browse/{{ site.data.project.jira }}](https://issues.apache.org/jira/browse/{{ site.data.project.jira }})