Repository: cayenne-website
Updated Branches:
  refs/heads/master 1c53b8015 -> ee70e3604


Add "other contributors" section


Project: http://git-wip-us.apache.org/repos/asf/cayenne-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/cayenne-website/commit/ee70e360
Tree: http://git-wip-us.apache.org/repos/asf/cayenne-website/tree/ee70e360
Diff: http://git-wip-us.apache.org/repos/asf/cayenne-website/diff/ee70e360

Branch: refs/heads/master
Commit: ee70e36047cff13c4b573fe2ff257b82ce35d0c7
Parents: 1c53b80
Author: Nikita Timofeev <stari...@gmail.com>
Authored: Mon Sep 10 14:55:21 2018 +0300
Committer: Nikita Timofeev <stari...@gmail.com>
Committed: Mon Sep 10 14:55:21 2018 +0300

----------------------------------------------------------------------
 src/main/site/data/contributors.yaml            |  2 +-
 .../site/layouts/_default/contributors.html     | 29 ++++++++++----------
 2 files changed, 15 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/ee70e360/src/main/site/data/contributors.yaml
----------------------------------------------------------------------
diff --git a/src/main/site/data/contributors.yaml 
b/src/main/site/data/contributors.yaml
index acb8a8d..cc5e869 100644
--- a/src/main/site/data/contributors.yaml
+++ b/src/main/site/data/contributors.yaml
@@ -177,4 +177,4 @@ contributors:
 other:
   - name: "jianingwang"
     org: "Tencent's XuanWu Lab"
-    comment: "Finding and reporting XXE Vulnerability in Cayenne Modeler"
\ No newline at end of file
+    comment: "Found and reported XXE Vulnerability in Cayenne Modeler"
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/ee70e360/src/main/site/layouts/_default/contributors.html
----------------------------------------------------------------------
diff --git a/src/main/site/layouts/_default/contributors.html 
b/src/main/site/layouts/_default/contributors.html
index 3119984..e9dfe83 100644
--- a/src/main/site/layouts/_default/contributors.html
+++ b/src/main/site/layouts/_default/contributors.html
@@ -31,52 +31,51 @@
             </table>
         </div>
 
-        <h3 class="text-center">Emeritus Committers</h3>
-        <p class="text-center">Committers who are no longer active in the 
community. We wish them well and hope to see them return.</p>
+        <h3 class="text-center">Other Contributors</h3>
+        <p class="text-center"></p>
         <div class="table-responsive  mt-2 mb-5">
             <table class="table table-bordered ">
                 <thead>
                 <tr>
                     <th>Name</th>
-                    <th>Email</th>
-                    <th>Website</th>
+                    <th>Organization</th>
+                    <th>Comment</th>
                 </tr>
                 </thead>
                 <tbody>
-                {{- range where $.Site.Data.contributors.contributors "active" 
false -}}
+                {{- range $.Site.Data.contributors.other -}}
                 <tr>
                     <td>{{ .name }}</td>
-                    <td>{{ .email }}</td>
-                    <td>{{ if .website }}{{ .website | markdownify }}{{ end 
}}</td>
+                    <td>{{ .org }}</td>
+                    <td>{{ if .comment }}{{ .comment | markdownify }}{{ end 
}}</td>
                 </tr>
                 {{- end -}}
                 </tbody>
             </table>
         </div>
 
-        <h3 class="text-center">Other Contributors</h3>
-        <p class="text-center"></p>
+        <h3 class="text-center">Emeritus Committers</h3>
+        <p class="text-center">Committers who are no longer active in the 
community. We wish them well and hope to see them return.</p>
         <div class="table-responsive  mt-2 mb-5">
             <table class="table table-bordered ">
                 <thead>
                 <tr>
                     <th>Name</th>
-                    <th>Org</th>
-                    <th>Comment</th>
+                    <th>Email</th>
+                    <th>Website</th>
                 </tr>
                 </thead>
                 <tbody>
-                {{- range $.Site.Data.contributors.other -}}
+                {{- range where $.Site.Data.contributors.contributors "active" 
false -}}
                 <tr>
                     <td>{{ .name }}</td>
-                    <td>{{ .org }}</td>
-                    <td>{{ if .comment }}{{ .comment | markdownify }}{{ end 
}}</td>
+                    <td>{{ .email }}</td>
+                    <td>{{ if .website }}{{ .website | markdownify }}{{ end 
}}</td>
                 </tr>
                 {{- end -}}
                 </tbody>
             </table>
         </div>
-
     </section>
 </main>
 

Reply via email to