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/06 09:25:42 UTC

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

Author: humbedooh
Date: Tue Aug  6 09:25:42 2019
New Revision: 1864482

URL: http://svn.apache.org/viewvc?rev=1864482&view=rev
Log:
fix link

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=1864482&r1=1864481&r2=1864482&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 Tue Aug  6 09:25:42 2019
@@ -184,7 +184,7 @@ function splash(state, json, all) {
             let tr = new HTML('tr');
             let rd = new HTML('td', {}, getReportDate(cycles, key, true));
             let elink = new HTML('td', {}, new HTML('a', {href: '?%s'.format(key)}, "Board report editor"));
-            let slink = new HTML('td', {}, new HTML('a', {href: '?%s'.format(key)}, "Full statistics for %s".format(tlpname)));
+            let slink = new HTML('td', {}, new HTML('a', {href: 'statistics?%s'.format(key)}, "Full statistics for %s".format(tlpname)));
             let title = new HTML('td', {}, new HTML('b', {}, tlpname));
             let cname = new HTML('td', {style: {color: ccolor}}, new HTML('b', {}, chair));
             tr.inject([title, cname, rd, elink, slink])

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=1864482&r1=1864481&r2=1864482&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Tue Aug  6 09:25:42 2019
@@ -1366,7 +1366,7 @@ function splash(state, json, all) {
             let tr = new HTML('tr');
             let rd = new HTML('td', {}, getReportDate(cycles, key, true));
             let elink = new HTML('td', {}, new HTML('a', {href: '?%s'.format(key)}, "Board report editor"));
-            let slink = new HTML('td', {}, new HTML('a', {href: '?%s'.format(key)}, "Full statistics for %s".format(tlpname)));
+            let slink = new HTML('td', {}, new HTML('a', {href: 'statistics?%s'.format(key)}, "Full statistics for %s".format(tlpname)));
             let title = new HTML('td', {}, new HTML('b', {}, tlpname));
             let cname = new HTML('td', {style: {color: ccolor}}, new HTML('b', {}, chair));
             tr.inject([title, cname, rd, elink, slink])