replace other instances of the old url

This commit is contained in:
Mitchell Livingston
2007-12-31 01:19:35 +00:00
parent 4ce681bca9
commit 4723192946
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle">
<channel>
<title>Transmission Appcast</title>
<link>http://transmission.m0k.org/appcast.xml</link>
<link>http://www.transmissionbt.com/appcast.xml</link>
<description>Most recent version available.</description>
<language>en</language>
<pubDate>Tue, 23 Oct 2007 23:20:00 -0400</pubDate>
+1 -1
View File
@@ -110,7 +110,7 @@ int main( int argc, char ** argv )
tr_handle_status * hstat;
tr_ctor * ctor;
printf( "Transmission %s - http://transmission.m0k.org/\n\n",
printf( "Transmission %s - http://www.transmissionbt.com/\n\n",
LONG_VERSION_STRING );
/* Get options */
+1 -1
View File
@@ -125,7 +125,7 @@ usage( const char * msg, ... )
printf(
"usage: %s [-dfh] [-p file] [-s file]\n"
"\n"
"Transmission %s http://transmission.m0k.org/\n"
"Transmission %s http://www.transmissionbt.com/\n"
"A fast and easy BitTorrent client\n"
"\n"
" -d --debug Print data send and received, implies -f\n"
+1 -1
View File
@@ -128,7 +128,7 @@ usage( const char * msg, ... )
printf(
"usage: %s [options] [files]...\n"
"\n"
"Transmission %s http://transmission.m0k.org/\n"
"Transmission %s http://www.transmissionbt.com/\n"
"A fast and easy BitTorrent client\n"
"\n"
" -h --help Display this message and exit\n"
+1 -1
View File
@@ -227,7 +227,7 @@ usage( const char * msg, ... )
printf(
"usage: %s [options]\n"
"\n"
"Transmission %s http://transmission.m0k.org/\n"
"Transmission %s http://www.transmissionbt.com/\n"
"A fast and easy BitTorrent client\n"
"\n"
" -a --add <torrent> Add a torrent\n"
+1 -1
View File
@@ -793,7 +793,7 @@ about ( void )
#endif
gtk_about_dialog_set_logo_icon_name( a, "transmission-logo" );
gtk_about_dialog_set_comments( a, _("A fast and easy BitTorrent client") );
gtk_about_dialog_set_website( a, "http://transmission.m0k.org/" );
gtk_about_dialog_set_website( a, "http://www.transmissionbt.com/" );
gtk_about_dialog_set_copyright( a, _("Copyright 2005-2007 The Transmission Project") );
gtk_about_dialog_set_authors( a, authors );
/* note to translators: put yourself here for credit in the "About" dialog */
+1 -1
View File
@@ -227,7 +227,7 @@ test_port( gpointer l )
char url[256];
g_usleep( G_USEC_PER_SEC * 3 ); /* give portmapping time to kick in */
snprintf( url, sizeof(url), "http://transmission.m0k.org/PortCheck.php?port=%d", port );
snprintf( url, sizeof(url), "http://www.transmissionbt.com/PortCheck.php?port=%d", port );
text = miniwget( url, &size );
/*g_message(" got len %d, [%*.*s]", size, size, size, text );*/
isOpen = text && *text=='1';
+1 -1
View File
@@ -25,7 +25,7 @@
#import "PortChecker.h"
#import "NSApplicationAdditions.h"
#define CHECKER_URL @"http://transmission.m0k.org/PortCheck.php?port=%d"
#define CHECKER_URL @"http://www.transmissionbt.com/PortCheck.php?port=%d"
#define CHECK_FIRE 3.0
@implementation PortChecker
+1 -1
View File
@@ -708,7 +708,7 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
info.SetVersion(_T(LONG_VERSION_STRING));
info.SetCopyright(_T("Copyright 2005-2007 The Transmission Project"));
info.SetDescription(_T("A fast and easy BitTorrent client"));
info.SetWebSite( _T( "http://transmission.m0k.org/" ) );
info.SetWebSite( _T( "http://www.transmissionbt.com/" ) );
info.SetIcon( ico );
info.AddDeveloper( _T("Charles Kerr (Back-end, GTK+, wxWidgets)") );
info.AddDeveloper( _T("Mitchell Livingston (Back-end; OS X)") );