Skip to content

Commit

Permalink
Updated URLs to reflect current project website
Browse files Browse the repository at this point in the history
  • Loading branch information
deurk committed Jun 23, 2014
1 parent ef46331 commit 2b138cb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 16 deletions.
16 changes: 6 additions & 10 deletions ABOUT
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
QTV: a QuakeWorld broacasting tool
----------------------------------
QTV: a QuakeWorld match broadcasting tool
-----------------------------------------

Official website:
http://qtv.qw-dev.net

Latest builds:
http://builds.qw-dev.net
https://github.com/deurk/qtv

Development team:
see CREDITS file
Expand All @@ -15,10 +12,9 @@ License:

Want to help?
- spread the word: link to our website, mention QTV, run it
- document usage and features: http://qtv.qw-dev.net/wiki
- report bugs or ask for new features: http://qtv.qw-dev.net/isssues
- fix bugs by patching sources: http://qtv.qw-dev.net/repository
- join the development team: http://qtv.qw-dev.net/boards
- document usage and features: ttps://github.com/deurk/qtv/wiki
- report bugs or ask for new features: ttps://github.com/deurk/qtv/isssues
- fix bugs by patching sources: ttps://github.com/deurk/qtv/pulls

:)

1 change: 0 additions & 1 deletion example-configs/qtv.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ allow_download_skins 1 // has been configured properly.
// EXAMPLES: //
// //
// qtv quakeworld.fi:27500 qtvpw //
// qtv qw-dev.net:28500 //
//////////////////////////////////////////
6 changes: 3 additions & 3 deletions httpsv.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ void HTTPSV_SendHTMLHeader(cluster_t *cluster, oproxy_t *dest, char *title)
" <script src=\"/script.js\" type=\"text/javascript\"></script>\n"
" </head>\n\n"
" <body>\n\n"
" <div id=\"navigation\"><span><a href=\"/nowplaying/\">Live</a></span><span><a href=\"/demos/\">Demos</a></span><span><a href=\"/admin/\">Admin</a></span><span><a href=\"http://qtv.qw-dev.net/wiki\" target=\"_blank\">Help</a></span></div>\n\n";
" <div id=\"navigation\"><span><a href=\"/nowplaying/\">Live</a></span><span><a href=\"/demos/\">Demos</a></span><span><a href=\"/admin/\">Admin</a></span><span><a href=\"https://github.com/deurk/qtv/wiki\" target=\"_blank\">Help</a></span></div>\n\n";

snprintf(buffer, sizeof(buffer), s, title);

Expand All @@ -240,7 +240,7 @@ void HTTPSV_SendHTMLFooter(cluster_t *cluster, oproxy_t *dest)
char *s;
char buffer[2048];

snprintf(buffer, sizeof(buffer), "\n <p id='version'><strong><a href='http://qtv.qw-dev.net'>QTV</a> %s, build %i</strong></p>\n", PROXY_VERSION, cluster->buildnumber);
snprintf(buffer, sizeof(buffer), "\n <p id='version'><strong><a href='https://github.com/deurk/qtv'>QTV</a> %s, build %i</strong></p>\n", PROXY_VERSION, cluster->buildnumber);
Net_ProxySend(cluster, dest, buffer, strlen(buffer));

s =
Expand Down Expand Up @@ -551,7 +551,7 @@ void HTTPSV_GetMethod(cluster_t *cluster, oproxy_t *pend)
{
// Redirect them to our funky website.
s = "HTTP/1.0 302 Found" CRLF
"Location: http://qtv.qw-dev.net" CRLF
"Location: https://github.com/deurk/qtv" CRLF
CRLF;
Net_ProxySend(cluster, pend, s, strlen(s));
}
Expand Down
2 changes: 1 addition & 1 deletion metaqtv/inc/footer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p id='version'><strong><a href='http://qtv.qw-dev.net/wiki/MetaQTV'><em>Meta</em>-QTV</a> 1.06</strong></p>
<p id='version'><strong><em>Meta</em>-QTV 1.06</strong></p>

</body>
</html>
2 changes: 1 addition & 1 deletion metaqtv/inc/qtvlist.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"http://quakeworld.fi:28000/" => "Quakeworld.fi",
"http://butt.se:30000/" => "Butt.se",
"http://qtv.quakeservers.net:30000/" => "QuakeServers.net",
"http://live.qw-dev.net" => "QW-DEV",
"http://qtv.quakeworld.eu" => "QuakeWorld.eu",
//"http://147.231.20.214:30000/" => "Lamicka",
"http://conus.mine.nu:28000/" => "conus.mine.nu",
"http://qw.thejews.se:28000/" => "The Jews",
Expand Down

0 comments on commit 2b138cb

Please sign in to comment.