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


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/1c53b801
Tree: http://git-wip-us.apache.org/repos/asf/cayenne-website/tree/1c53b801
Diff: http://git-wip-us.apache.org/repos/asf/cayenne-website/diff/1c53b801

Branch: refs/heads/master
Commit: 1c53b801528de766cf78891ff1403d653600678e
Parents: dcfcb5e
Author: Nikita Timofeev <stari...@gmail.com>
Authored: Wed Sep 5 15:48:45 2018 +0300
Committer: Nikita Timofeev <stari...@gmail.com>
Committed: Wed Sep 5 15:48:45 2018 +0300

----------------------------------------------------------------------
 src/main/site/data/contributors.yaml            |  7 +++++-
 .../site/layouts/_default/contributors.html     | 23 ++++++++++++++++++++
 2 files changed, 29 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/1c53b801/src/main/site/data/contributors.yaml
----------------------------------------------------------------------
diff --git a/src/main/site/data/contributors.yaml 
b/src/main/site/data/contributors.yaml
index e13d222..acb8a8d 100644
--- a/src/main/site/data/contributors.yaml
+++ b/src/main/site/data/contributors.yaml
@@ -172,4 +172,9 @@ contributors:
     role: 
     email: "eric at centralparksoftware dot com"
     website: 
"[http://www.centralparksoftware.com/](http://www.centralparksoftware.com/)"
-    active: false     
\ No newline at end of file
+    active: false
+
+other:
+  - name: "jianingwang"
+    org: "Tencent's XuanWu Lab"
+    comment: "Finding and reporting XXE Vulnerability in Cayenne Modeler"
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/1c53b801/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 7227f36..3119984 100644
--- a/src/main/site/layouts/_default/contributors.html
+++ b/src/main/site/layouts/_default/contributors.html
@@ -54,6 +54,29 @@
             </table>
         </div>
 
+        <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>Org</th>
+                    <th>Comment</th>
+                </tr>
+                </thead>
+                <tbody>
+                {{- range $.Site.Data.contributors.other -}}
+                <tr>
+                    <td>{{ .name }}</td>
+                    <td>{{ .org }}</td>
+                    <td>{{ if .comment }}{{ .comment | markdownify }}{{ end 
}}</td>
+                </tr>
+                {{- end -}}
+                </tbody>
+            </table>
+        </div>
+
     </section>
 </main>
 

Reply via email to