Return-Path: X-Original-To: apmail-community-commits-archive@minotaur.apache.org Delivered-To: apmail-community-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3849417689 for ; Mon, 21 Sep 2015 19:31:17 +0000 (UTC) Received: (qmail 56909 invoked by uid 500); 21 Sep 2015 19:31:17 -0000 Delivered-To: apmail-community-commits-archive@community.apache.org Received: (qmail 56882 invoked by uid 500); 21 Sep 2015 19:31:17 -0000 Mailing-List: contact commits-help@community.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@community.apache.org Delivered-To: mailing list commits@community.apache.org Received: (qmail 56873 invoked by uid 99); 21 Sep 2015 19:31:17 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Sep 2015 19:31:17 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id ACD811809B0 for ; Mon, 21 Sep 2015 19:31:16 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 3.5 X-Spam-Level: *** X-Spam-Status: No, score=3.5 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RDNS_NONE=2.5] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id ik3h3ckoNl8X for ; Mon, 21 Sep 2015 19:31:16 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (unknown [209.188.14.139]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id 1919644173 for ; Mon, 21 Sep 2015 19:31:16 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id B4A35E022D for ; Mon, 21 Sep 2015 19:31:15 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 8CBF63A01E3 for ; Mon, 21 Sep 2015 19:31:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1704403 - /comdev/projects.apache.org/site/js/projects.js Date: Mon, 21 Sep 2015 19:31:15 -0000 To: commits@community.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150921193115.8CBF63A01E3@svn01-us-west.apache.org> Author: sebb Date: Mon Sep 21 19:31:15 2015 New Revision: 1704403 URL: http://svn.apache.org/viewvc?rev=1704403&view=rev Log: Link to minutes does not work currently for Climate or Logging or ComDev Use Display name, and fix up exceptions Modified: comdev/projects.apache.org/site/js/projects.js Modified: comdev/projects.apache.org/site/js/projects.js URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/js/projects.js?rev=1704403&r1=1704402&r2=1704403&view=diff ============================================================================== --- comdev/projects.apache.org/site/js/projects.js (original) +++ comdev/projects.apache.org/site/js/projects.js Mon Sep 21 19:31:15 2015 @@ -507,7 +507,14 @@ function renderCommitteePage(committeeId // Reporting cycle var cycles = ["every month", "January, April, July, October", "February, May, August, November", "March, June, September, December"]; - appendLiInnerHTML(ul, "Reporting cycle: " + cycles[committee.reporting] + ", see minutes"); + var minutes = committee.name.substr("Apache ".length).replace(/ /g, '_'); + // does not work for APR and Logging Services currently + if (committeeId == 'apr') { + minutes = 'Apr'; + } else if (committeeId == 'logging') { + minutes = 'Logging'; + } + appendLiInnerHTML(ul, "Reporting cycle: " + cycles[committee.reporting] + ", see minutes"); // PMC if (unixgroups[unixgroup + "-pmc"]) {