FS-7607 #resolve #comment Update URLs to reflect https protocol on freeswitch.org websites and update additional URLs to avoid 301 redirects.

This commit is contained in:
Ken Rice
2015-06-03 15:23:40 -05:00
parent 581c104753
commit 02a0a2a068
21 changed files with 25 additions and 25 deletions

View File

@@ -57,7 +57,7 @@ sub bugtxt($)
return catfile($tmp);
}
my $cmd = "wget -q http://jira.freeswitch.org/si/jira.issueviews:issue-xml/$bug/$bug.xml -O $tmp";
my $cmd = "wget -q https://freeswitch.org/jira/si/jira.issueviews:issue-xml/$bug/$bug.xml -O $tmp";
system($cmd);
@@ -71,7 +71,7 @@ sub bugtxt($)
if ($rname && $aname) {
my $data = "$title\nReporter: $rname [$rlogin]\nAssignee: $aname [$alogin]\nStatus: $status\nhttp://jira.freeswitch.org/browse/$bug\n";
my $data = "$title\nReporter: $rname [$rlogin]\nAssignee: $aname [$alogin]\nStatus: $status\nhttps://freeswitch.org/jira/browse/$bug\n";
open(O, ">$tmp");
print O $data;
close(O);