[thirdparty-commits] kpfleming: mantis/trunk r109 - in /mantis/trunk: ./ core/
SVN commits to the Digium third-party software repository
thirdparty-commits at lists.digium.com
Tue May 12 08:22:25 CDT 2009
Author: kpfleming
Date: Tue May 12 08:22:20 2009
New Revision: 109
URL: http://svn.asterisk.org/svn-view/thirdparty?view=rev&rev=109
Log:
prepare for transition to new site name
Modified:
mantis/trunk/bug_report.php
mantis/trunk/bug_update.php
mantis/trunk/config_defaults_inc.php
mantis/trunk/core/custom_function_api.php
mantis/trunk/core/html_api.php
Modified: mantis/trunk/bug_report.php
URL: http://svn.asterisk.org/svn-view/thirdparty/mantis/trunk/bug_report.php?view=diff&rev=109&r1=108&r2=109
==============================================================================
--- mantis/trunk/bug_report.php (original)
+++ mantis/trunk/bug_report.php Tue May 12 08:22:20 2009
@@ -108,7 +108,7 @@
if ($t_bug_data->view_state != 50) {
$irc_string = '*** NEW (' . $t_bug_id . ') [' . $t_bug_data->category . '] ' . $t_bug_data->summary;
$irc_string = $irc_string . "\n" . 'Reported by: ' . user_get_name($t_bug_data->reporter_id) . ' Karma: ' . karma_get_user_score($t_bug_data->reporter_id);
- $irc_string = $irc_string . "\n" . 'http://bugs.digium.com/' . string_get_bug_view_url($t_bug_id);
+ $irc_string = $irc_string . "\n" . 'https://issues.asterisk.org/' . string_get_bug_view_url($t_bug_id);
system('echo ' . escapeshellarg(${irc_string}) . ' | nc -w 1 -u 127.0.0.1 15124 > /dev/null');
}
Modified: mantis/trunk/bug_update.php
URL: http://svn.asterisk.org/svn-view/thirdparty/mantis/trunk/bug_update.php?view=diff&rev=109&r1=108&r2=109
==============================================================================
--- mantis/trunk/bug_update.php (original)
+++ mantis/trunk/bug_update.php Tue May 12 08:22:20 2009
@@ -161,7 +161,7 @@
$irc_string = $irc_string . "\n" . 'Assigned to: ' . user_get_name($t_bug_data->handler_id);
}
$irc_string = $irc_string . "\n" . 'Reported by: ' . user_get_name($t_bug_data->reporter_id) . ' Karma: ' . karma_get_user_score($t_bug_data->reporter_id);
- $irc_string = $irc_string . "\n" . 'http://bugs.digium.com/' . string_get_bug_view_url($f_bug_id);
+ $irc_string = $irc_string . "\n" . 'https://issues.asterisk.org/' . string_get_bug_view_url($f_bug_id);
system('echo ' . escapeshellarg(${irc_string}) . ' | nc -w 1 -u 127.0.0.1 15124 > /dev/null');
bug_set_field( $f_bug_id, 'status', CLOSED );
}
@@ -181,7 +181,7 @@
$irc_string = $irc_string . "\n" . 'Assigned to: ' . user_get_name($t_bug_data->handler_id);
}
$irc_string = $irc_string . "\n" . 'Reported by: ' . user_get_name($t_bug_data->reporter_id) . ' Karma: ' . karma_get_user_score($t_bug_data->reporter_id);
- $irc_string = $irc_string . "\n" . 'http://bugs.digium.com/' . string_get_bug_view_url($f_bug_id);
+ $irc_string = $irc_string . "\n" . 'https://issues.asterisk.org/' . string_get_bug_view_url($f_bug_id);
if (($ircsock = fsockopen("udp://127.0.0.1", 15124, $errno, $errstr, 2))) {
fwrite($ircsock, $irc_string);
fclose($ircsock);
Modified: mantis/trunk/config_defaults_inc.php
URL: http://svn.asterisk.org/svn-view/thirdparty/mantis/trunk/config_defaults_inc.php?view=diff&rev=109&r1=108&r2=109
==============================================================================
--- mantis/trunk/config_defaults_inc.php (original)
+++ mantis/trunk/config_defaults_inc.php Tue May 12 08:22:20 2009
@@ -119,7 +119,7 @@
$g_path = 'http://www.example.com/mantis/';
}
- $g_path = "http://bugs.digium.com/";
+ $g_path = "https://issues.asterisk.org/";
# path to your images directory (for icons)
# requires trailing /
@@ -229,7 +229,7 @@
$g_webmaster_email = 'webmaster at digium.com';
# the sender email, part of 'From: ' header in emails
- $g_from_email = 'noreply at bugs.digium.com';
+ $g_from_email = 'noreply at issues.asterisk.org';
# the sender name, part of 'From: ' header in emails
$g_from_name = 'Asterisk Bug Tracker';
Modified: mantis/trunk/core/custom_function_api.php
URL: http://svn.asterisk.org/svn-view/thirdparty/mantis/trunk/core/custom_function_api.php?view=diff&rev=109&r1=108&r2=109
==============================================================================
--- mantis/trunk/core/custom_function_api.php (original)
+++ mantis/trunk/core/custom_function_api.php Tue May 12 08:22:20 2009
@@ -136,7 +136,7 @@
$irc_string = $irc_string . "\n" . 'Assigned to: ' . user_get_name($t_bug_data->handler_id);
}
$irc_string = $irc_string . "\n" . 'Reported by: ' . user_get_name($t_bug_data->reporter_id) . ' Karma: ' . karma_get_user_score($t_bug_data->reporter_id);
- $irc_string = $irc_string . "\n" . 'http://bugs.digium.com/' . string_get_bug_view_url($p_issue_id);
+ $irc_string = $irc_string . "\n" . 'https://issues.asterisk.org/' . string_get_bug_view_url($p_issue_id);
if (($ircsock = fsockopen("udp://127.0.0.1", 15124, $errno, $errstr, 1))) {
fwrite($ircsock, $irc_string);
fclose($ircsock);
Modified: mantis/trunk/core/html_api.php
URL: http://svn.asterisk.org/svn-view/thirdparty/mantis/trunk/core/html_api.php?view=diff&rev=109&r1=108&r2=109
==============================================================================
--- mantis/trunk/core/html_api.php (original)
+++ mantis/trunk/core/html_api.php Tue May 12 08:22:20 2009
@@ -148,7 +148,7 @@
html_head_end();
/* echo " <div align=\"center\" width=\"100%\" style=\"background-color: #00dd00\">\n";
- echo " <strong>This is just a demo, for the real issue tracker visit: <a href=\"http://bugs.digium.com\">http://bugs.digium.com</a>.</strong>\n";
+ echo " <strong>This is just a demo, for the real issue tracker visit: <a href=\"https://issues.asterisk.org\">http://issues.asterisk.org</a>.</strong>\n";
echo " </div>\n";*/
html_body_begin();
$g_error_send_page_header = false;
@@ -317,7 +317,7 @@
}
echo '<div align="', $t_align, '">';
- echo '<a href="http://bugs.digium.com/" title="Digium Issue Tracker"><img border="0" alt="Mantis Bugtracker" src="images/Asterisk_logo.png" /></a>';
+ echo '<a href="https://issues.asterisk.org/" title="Digium Issue Tracker"><img border="0" alt="Mantis Bugtracker" src="images/Asterisk_logo.png" /></a>';
echo '</div>';
}
}
@@ -473,7 +473,7 @@
echo '<a href="http://www.mantisbt.org" title="Free Web Based Bug Tracker"><img src="images/mantis_logo_button.gif" width="88" height="35" alt="Powered by Mantis Bugtracker" border="0" /></a>';
echo '</div></td></tr>';
echo '<tr><td><div align="center">';
- echo 'bugs.digium.com runs on a server provided by <a href="http://www.digium.com">Digium, Inc.</a> and uses bandwidth donated to the open source Asterisk community';
+ echo 'issues.asterisk.org runs on a server provided by <a href="http://www.digium.com">Digium, Inc.</a> and uses bandwidth donated to the open source Asterisk community';
echo ' by <a href="http://www.api-digital.com">API Digital Communications</a> in Huntsville, AL USA.';
echo '</div></td></tr>';
echo '<tr><td><div align="center">';
More information about the thirdparty-commits
mailing list