Author: sebb
Date: Sun Jul  6 11:09:42 2025
New Revision: 1926992

URL: http://svn.apache.org/viewvc?rev=1926992&view=rev
Log:
Use site-relative links

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js
    
comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.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=1926992&r1=1926991&r2=1926992&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 Sun 
Jul  6 11:09:42 2025
@@ -509,7 +509,7 @@ function activity_tips(data) {
     }
     if (rtxt != '') {
         rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul>";
-        rtxt += new HTML('a', {target: '_blank', href: 
'https://reporter.apache.org/addrelease.html?%s'.format(project)}, 'Manage 
release data').outerHTML;
+        rtxt += new HTML('a', {target: '_blank', href: 
'/addrelease.html?%s'.format(project)}, 'Manage release data').outerHTML;
         rtxt += "<hr/>";
     }
     

Modified: 
comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js
URL: 
http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js?rev=1926992&r1=1926991&r2=1926992&view=diff
==============================================================================
--- 
comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js 
(original)
+++ 
comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js 
Sun Jul  6 11:09:42 2025
@@ -986,7 +986,7 @@ function statistics_releases(data) {
         rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul>";
         rtxt += new HTML('a', {
             target: '_blank',
-            href: 
'https://reporter.apache.org/addrelease.html?%s'.format(project)
+            href: '/addrelease.html?%s'.format(project)
         }, 'Manage release data').outerHTML;
     }
 

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=1926992&r1=1926991&r2=1926992&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Sun Jul  6 
11:09:42 2025
@@ -1723,7 +1723,7 @@ function activity_tips(data) {
     }
     if (rtxt != '') {
         rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul>";
-        rtxt += new HTML('a', {target: '_blank', href: 
'https://reporter.apache.org/addrelease.html?%s'.format(project)}, 'Manage 
release data').outerHTML;
+        rtxt += new HTML('a', {target: '_blank', href: 
'/addrelease.html?%s'.format(project)}, 'Manage release data').outerHTML;
         rtxt += "<hr/>";
     }
     
@@ -3209,7 +3209,7 @@ function statistics_releases(data) {
         rtxt = "<h6>Recent releases: </h6><ul>" + rtxt + "</ul>";
         rtxt += new HTML('a', {
             target: '_blank',
-            href: 
'https://reporter.apache.org/addrelease.html?%s'.format(project)
+            href: '/addrelease.html?%s'.format(project)
         }, 'Manage release data').outerHTML;
     }
 


Reply via email to