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/05 09:13:44 UTC

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

Author: humbedooh
Date: Mon Aug  5 09:13:44 2019
New Revision: 1864422

URL: http://svn.apache.org/viewvc?rev=1864422&view=rev
Log:
add release manager 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=1864422&r1=1864421&r2=1864422&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 Mon Aug  5 09:13:44 2019
@@ -487,7 +487,9 @@ function activity_tips(data) {
       }
     }
     if (rtxt != '') {
-        rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul><hr/>";
+        rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul>";
+        rtxt += new HTML('a', {href: 'https://reporter.apache.org/addrelease.html?%s'.format(project)}, 'Manage release data').outerHTML;
+        rtxt += "<hr/>";
     }
     
     

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=1864422&r1=1864421&r2=1864422&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Mon Aug  5 09:13:44 2019
@@ -1666,7 +1666,9 @@ function activity_tips(data) {
       }
     }
     if (rtxt != '') {
-        rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul><hr/>";
+        rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul>";
+        rtxt += new HTML('a', {href: 'https://reporter.apache.org/addrelease.html?%s'.format(project)}, 'Manage release data').outerHTML;
+        rtxt += "<hr/>";
     }