From 1d1bfa6b7df033ba705882e63e10201350df1ac9 Mon Sep 17 00:00:00 2001 From: floam Date: Tue, 14 Mar 2006 01:52:22 +0000 Subject: Redone get page. git-svn-id: svn://svn.icculus.org/quake3/trunk@634 edf5b092-35ff-0310-97b2-ce42778d08ea --- web/include/get.php | 67 ++++++++++++++++++++++++++++++------------------ web/include/thebrain.php | 2 +- 2 files changed, 43 insertions(+), 26 deletions(-) (limited to 'web/include') diff --git a/web/include/get.php b/web/include/get.php index b2441ed..01994d5 100644 --- a/web/include/get.php +++ b/web/include/get.php @@ -1,31 +1,39 @@ -

We have not yet had an official release. Nonetheless, you can still get -icculus.org/quake3 packaged for a few Operating Systems or build it yourself from Subversion.

The Quake 3 engine is open source, this does not mean that Quake 3 Arena the game is free. You must purchase the game to use the data!

- +

Get icculus.org/quake3

+

There are three methods of installation. The preffered way is to use an official +isntaller.

+ +Sanctioned Installers

We have provided installers for the most popular platforms icculus.org/quake3 supports. These have been tested, and if they do not work you can report bugs to us about them.

-

Using packages for your Operating System

-

If you're lucky your Operating System provider or someone else using it may have already +'; + +$unofficial = '

Using packages for your Operating System

+

If you\'re lucky your Operating System provider or someone else using it may have already done all of the work for you. Please report problems with these to those who are guilty.

+'; -

Check out and build from Subversion

+$source = +'

Check out and build from Subversion

Prerequisites

This part assumes Windows users are using Cygwin. -If you aren't, TortoiseSVN is a good +If you aren\'t, TortoiseSVN is a good client.

  1. Change into a directory that you want the tree to be kept in.
  2. @@ -115,17 +124,17 @@ client.

  3. Copy ioquake3.ppc in build/release-darwin-ppc/ to /Applications/Quake3/Quake3.app/Contents/MacOS/Quake3.
  4. -
  5. You need a libSDL-1.2.0.dylib in that .app's +
  6. You need a libSDL-1.2.0.dylib in that .app\'s MacOS directory.
  7. You need to copy your pak0.pk3 - from your Quake 3 CD-ROM's /baseq3 + from your Quake 3 CD-ROM\'s /baseq3 directory to your /Applications/Quake3/baseq3 directory.
  8. Ditto for the Team Arena mission pack, though you would be substituting baseq3 in the above example for missionpack.
-

After you've done all of that, you can double click +

After you\'ve done all of that, you can double click on the .app file, or change to the /Applications/Quake3/ directory in a terminal and run the binary. @@ -143,12 +152,20 @@ client.

  • If everything has gone well, you should have a binary that works! If not, seek help.
  • - -

    Point Release Installers

    -

    The id software patches are still needed before installing -this project because they contain updated .pk3 -files. We mirror them for your convenience:

    - +'; + +switch ($_GET['method']){ + case "official": + echo $official; + break; + case "unofficial": + echo $unofficial; + break; + case "source": + echo $source; + break; + default: + echo $official; + break; +} +?> diff --git a/web/include/thebrain.php b/web/include/thebrain.php index a89775c..6b95b61 100644 --- a/web/include/thebrain.php +++ b/web/include/thebrain.php @@ -5,7 +5,7 @@ if ((strpos($_SERVER['HTTP_ACCEPT'], "application/xhtml+xml")) || ($ua->parent elseif ((strpos($_SERVER['HTTP_ACCEPT'], "application/xml")) || ($ua->browser == "IE" && $ua->version >= 6)) { if ($ua->browser == "IE") { - $extradoctype = "\n"; + $extradoctype = ""; } $content_type = "application/xml"; } -- cgit v1.2.3