You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2019/04/01 00:53:27 UTC

[whimsy] branch master updated: cross-reference podlings.xml

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

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 62194a1  cross-reference podlings.xml
62194a1 is described below

commit 62194a15888a5b8603a0340c5cd0b0ef10f5fba0
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sun Mar 31 20:52:58 2019 -0400

    cross-reference podlings.xml
---
 www/incubator/graduated.cgi | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/www/incubator/graduated.cgi b/www/incubator/graduated.cgi
index 6dfde4c..05b1dbf 100755
--- a/www/incubator/graduated.cgi
+++ b/www/incubator/graduated.cgi
@@ -31,9 +31,12 @@ _html do
           _ 'This script cross-checks Committee Reports from '
           _a 'Board Minutes',
             href: 'https://whimsy.apache.org/board/minutes/'
-          _ '  and '
+          _ ', '
           _a 'committee-info.txt',
             href: 'https://svn.apache.org/repos/private/committers/board/committee-info.txt'
+          _ ',  and '
+          _a 'podlings.xml',
+            href: 'https://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings.xml'
           _ '.'
         end
       }
@@ -55,6 +58,7 @@ _html do
             _tr do
               _th 'Committee'
               _th 'Established'
+              _th 'Podling status'
               _th 'Graduated?'
               _th 'Active?'
             end
@@ -78,6 +82,7 @@ _html do
               }.compact.first
 
               incubated += 1 if graduated
+              podling = ASF::Podling.find(name.downcase)
 
               _tr_ do
                 _td do
@@ -86,6 +91,12 @@ _html do
                 _td do
                   _a establish, href: "../board/minutes/#{href}##{establish}"
                 end
+                _td do
+                  if podling
+                    _a podling.status, href:
+                      "https://incubator.apache.org/projects/#{name.downcase}.html"
+                  end
+                end
                 _td graduated
                 _td !!active
               end