You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2019/08/03 07:50:07 UTC

svn commit: r1864319 - in /comdev/reporter.apache.org/trunk/site/wizard/js: source/generators.js wizard.js

Author: humbedooh
Date: Sat Aug  3 07:50:06 2019
New Revision: 1864319

URL: http://svn.apache.org/viewvc?rev=1864319&view=rev
Log:
emphasize time period

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js
    comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js?rev=1864319&r1=1864318&r2=1864319&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js Sat Aug  3 07:50:06 2019
@@ -263,7 +263,7 @@ function health_tips(data) {
         if (pct < -10) color = 'maroon';
         ctxt += ' decrease';
       }
-      txt += "<li style='color: %s;'>%u PRs opened on GitHub (%s)</li>".format(color, data.kibble.prs.after.opened, ctxt);
+      txt += "<li style='color: %s;'>%u PRs opened on GitHub, past quarter (%s)</li>".format(color, data.kibble.prs.after.opened, ctxt);
     }
     
     if (data.kibble) {
@@ -277,7 +277,7 @@ function health_tips(data) {
         if (pct < -10) color = 'maroon';
         ctxt += ' decrease';
       }
-      txt += "<li style='color: %s;'>%u PRs closed on GitHub (%s)</li>".format(color, data.kibble.prs.after.closed, ctxt);
+      txt += "<li style='color: %s;'>%u PRs closed on GitHub, past quarter (%s)</li>".format(color, data.kibble.prs.after.closed, ctxt);
     }
     
     // Append header IF there is data, otherwise nah.

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js?rev=1864319&r1=1864318&r2=1864319&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Sat Aug  3 07:50:06 2019
@@ -1432,7 +1432,7 @@ function health_tips(data) {
         if (pct < -10) color = 'maroon';
         ctxt += ' decrease';
       }
-      txt += "<li style='color: %s;'>%u PRs opened on GitHub (%s)</li>".format(color, data.kibble.prs.after.opened, ctxt);
+      txt += "<li style='color: %s;'>%u PRs opened on GitHub, past quarter (%s)</li>".format(color, data.kibble.prs.after.opened, ctxt);
     }
     
     if (data.kibble) {
@@ -1446,7 +1446,7 @@ function health_tips(data) {
         if (pct < -10) color = 'maroon';
         ctxt += ' decrease';
       }
-      txt += "<li style='color: %s;'>%u PRs closed on GitHub (%s)</li>".format(color, data.kibble.prs.after.closed, ctxt);
+      txt += "<li style='color: %s;'>%u PRs closed on GitHub, past quarter (%s)</li>".format(color, data.kibble.prs.after.closed, ctxt);
     }
     
     // Append header IF there is data, otherwise nah.