kill some broken URLs

git-svn-id: svn://svn.icculus.org/netradiant/trunk@212 61c419a2-8eb2-4b30-bcec-8cead039b335
This commit is contained in:
divverent 2009-03-05 14:17:51 +00:00
parent e647ac225f
commit 29b0e01ae7
4 changed files with 8 additions and 12 deletions

View File

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?> <?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<!-- generated by Radiant setup, modify at your own risks --> <!-- generated by Radiant setup, modify at your own risks -->
<!-- links for the Quake III Arena game pack -->
<links> <links>
<item name="TA Teams Manual" url="New_Teams_For_Q3TA/index.html"/> <item name="Nexuiz website" url="http://www.alientrap.org/nexuiz/"/>
<item name="Team Arena Mapping" url="Team_Arena_Mapping_Help/start.html"/>
</links> </links>

View File

@ -507,7 +507,7 @@ void DoAbout()
"licensed under the GNU GPL.\n\n" "licensed under the GNU GPL.\n\n"
"NetRadiant is unsupported, however\n" "NetRadiant is unsupported, however\n"
"you may report your problems at\n" "you may report your problems at\n"
"http://www.alientrap.org/forum/" // FIXME real URL "http://www.icculus.org/netradiant/"
)); ));
gtk_widget_show(GTK_WIDGET(label)); gtk_widget_show(GTK_WIDGET(label));

View File

@ -976,11 +976,13 @@ void OpenUpdateURL()
{ {
// build the URL // build the URL
StringOutputStream URL(256); StringOutputStream URL(256);
URL << "http://www.qeradiant.com/index.php?data=dlupdate&query_dlup=1"; URL << "http://www.icculus.org/netradiant/?cmd=update&data=dlupdate&query_dlup=1";
#ifdef WIN32 #ifdef WIN32
URL << "&OS_dlup=1"; URL << "&OS_dlup=1";
#else #elif defined(__APPLE__)
URL << "&OS_dlup=2"; URL << "&OS_dlup=2";
#else
URL << "&OS_dlup=3";
#endif #endif
URL << "&Version_dlup=" RADIANT_VERSION; URL << "&Version_dlup=" RADIANT_VERSION;
g_GamesDialog.AddPacksURL(URL); g_GamesDialog.AddPacksURL(URL);
@ -998,7 +1000,7 @@ void OpenHelpURL()
void OpenBugReportURL() void OpenBugReportURL()
{ {
OpenURL("http://www.qeradiant.com/?data=bugreport"); OpenURL("http://www.icculus.org/netradiant/?cmd=bugs");
} }

View File

@ -1,11 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?> <?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<!-- generated by Radiant setup, modify at your own risks --> <!-- generated by Radiant setup, modify at your own risks -->
<links> <links>
<item name="Web Links &amp; Misc" url="links.htm"/> <item name="NetRadiant website" url="http://www.icculus.org/netradiant/"/>
<item name="GtkRadiant Bugzilla - Report Bug" url="http://zerowing.idsoftware.com/bugzilla/index.cgi"/>
<item name="q3map2 handbook (web)" url="http://shaderlab.com/q3map2/manual/default.htm"/> <item name="q3map2 handbook (web)" url="http://shaderlab.com/q3map2/manual/default.htm"/>
<item name="ETB documentation (web)" url="http://www.map-craft.com/modules.php?name=ETB"/> <item name="ETB documentation (web)" url="http://www.map-craft.com/modules.php?name=ETB"/>
<item name="ChangeLog" url="changelog.txt"/>
<item name="Q3Map2 ChangeLog" url="changelog.q3map2.txt"/>
<item name="Credits" url="credits.html"/>
</links> </links>