Author: humbedooh
Date: Thu Jan 16 17:27:26 2020
New Revision: 1872886
URL: http://svn.apache.org/viewvc?rev=1872886&view=rev
Log:
continue to next release if we found the TS, so as to not print too many lines
and duplicate items.
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=1872886&r1=1872885&r2=1872886&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 Thu
Jan 16 17:27:26 2020
@@ -496,6 +496,7 @@ function activity_tips(data) {
if (ts == reldate.unix()) {
rtxt += "<li>%s was released on %s.</li>".format(rel,
reldate.utc().format('YYYY-MM-DD'));
releases_shown++;
+ continue;
}
}
}
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=1872886&r1=1872885&r2=1872886&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Thu Jan 16
17:27:26 2020
@@ -1711,6 +1711,7 @@ function activity_tips(data) {
if (ts == reldate.unix()) {
rtxt += "<li>%s was released on %s.</li>".format(rel,
reldate.utc().format('YYYY-MM-DD'));
releases_shown++;
+ continue;
}
}
}