From b3499c7f7dd5cfbe783262ce5b3ca44b29666e15 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Sun, 5 Aug 2007 13:25:08 +0000 Subject: new rewritten page --- other/website/src/content_download.html | 73 +++++++++++++++++++++++++++++++++ other/website/src/content_home.html | 32 +++++++++++++++ other/website/src/content_support.html | 17 ++++++++ other/website/src/content_team.html | 53 ++++++++++++++++++++++++ other/website/src/make.sh | 6 +++ other/website/src/make_page.py | 6 +++ other/website/src/template.html | 30 ++++++++++++++ 7 files changed, 217 insertions(+) create mode 100644 other/website/src/content_download.html create mode 100644 other/website/src/content_home.html create mode 100644 other/website/src/content_support.html create mode 100644 other/website/src/content_team.html create mode 100755 other/website/src/make.sh create mode 100644 other/website/src/make_page.py create mode 100644 other/website/src/template.html (limited to 'other/website/src') diff --git a/other/website/src/content_download.html b/other/website/src/content_download.html new file mode 100644 index 00000000..bc8cbf9b --- /dev/null +++ b/other/website/src/content_download.html @@ -0,0 +1,73 @@ +

DOWNLOADS

+ +

This is the latest version of Teewars.

+ +

General notes

+ + + +

Teewars Version 0.2.0 Released 2007-08-05

+ + + +
+ + + + + + + + + + + + + + + +
+
Windows (32bit)
+ + +
 
+
Mac OS X (Intel)
+ + +
 
+
Mac OS X (PPC)
+ + +
 
+
Linux x86
+ + +
 
+
Linux x86_64
+ + +
+
  + + +

Release notes

+
    +
  • Two new maps
  • +
  • Ingame chat
  • +
  • Kill messages
  • +
  • New and improved scoreboard
  • +
  • Lots of weapon tweaks and improvements
  • +
  • Lots of new sounds
  • +
  • Revised offline GUI with settings for keys, graphics and more
  • +
  • Respawn times
  • +
  • Score and time limit
  • +
  • Reworked network engine, smoother, less bandwidth
  • +
  • The all-new Ninja powerup!
  • +
  • Added screenshot button: F10
  • +
  • New and improved master server system
  • +
+ +
\ No newline at end of file diff --git a/other/website/src/content_home.html b/other/website/src/content_home.html new file mode 100644 index 00000000..7392e628 --- /dev/null +++ b/other/website/src/content_home.html @@ -0,0 +1,32 @@ + +
+ +
+ +

TEEWARS 0.2.0 RELEASED 2007-08-05

+

The long sought-after update of Teewars has finally arrived! +The highligts of version 0.2.0 include:

+ + + +

Any support-related questions or bug reports can be given either on +IRC (#teewars at quakenet) or in the almighty forum (look under support).

+ +

Enjoy the new release!

+

The Teewars Team

+ +

WHAT IS THIS, THEN?

+

Teewars is a multiplayer 2D shooter, drawing its inspiration not only from +the old classics, but also incorporating the advancements that FPS games brought +in when the torch was handed over.

+ +

The game features 3D-accelerated sprite graphics, mouse-aiming, a grappling +hook, some rather weird weaponry and a built-in multiplayer server. You can play +it on Windows, MacOS X and any Linux flavor that can draw stuff on a screen.

+ +

More info about the game can be found under the support section.

diff --git a/other/website/src/content_support.html b/other/website/src/content_support.html new file mode 100644 index 00000000..f6792d80 --- /dev/null +++ b/other/website/src/content_support.html @@ -0,0 +1,17 @@ + +

SUPPORT

+ +

If you have trouble getting Teewars to run, experience performance problems or +have questions about the game, start out by checking our forums. Registration is free +(YA, RLY!) and no question is too dumb to search for.

+ +

There's also the IRC channel if you're feeling talkative, lonely or just want +to give us cake. Or bacon. We like bacon.

+ +

IRC: #teewars at irc.quakenet.org

+ +

FORUM

+ +

+ +

diff --git a/other/website/src/content_team.html b/other/website/src/content_team.html new file mode 100644 index 00000000..f8b78a3e --- /dev/null +++ b/other/website/src/content_team.html @@ -0,0 +1,53 @@ +

TEAM AND CONTRIBUTORS

+ + + +
+ +

THE TEAM

+

Magnus Auvinen (matricks)
+
Lead Programmer

+ +

Jakob Fries (serp)
+
Game Programmer

+ +

Olle Rosenquist (phobos)
+
Game Programmer

+ +

Joel de Vahl (void)
+
Engine Programmer

+ +

Johan Althoff (teetow)
+
Sound Designer

+ +

Tobias Lundmark (dopefish)
+
Level Designer

+ +

Victor Andreæ (red_com)
+
Lead Artist

+ +

Marika Metsävainio (maikka)
+
Level Artist

+ +

Tomas Landin (kungtotte)
+
Win32 Maintainer

+ +

Camilla Berglund (elmindreda)
+
Linux 32-Bit Maintainer

+ +
  + + +

THE CONTRIBUTORS

+ +
    +
  • Trin
  • +
  • Ampleyfly
  • +
  • Concept-P
  • +
  • Retro
  • +
  • People at Birdie
  • +
  • People at #c++.se
  • +
  • People at Starbreeze
  • +
+ +
\ No newline at end of file diff --git a/other/website/src/make.sh b/other/website/src/make.sh new file mode 100755 index 00000000..cf1c2723 --- /dev/null +++ b/other/website/src/make.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +python make_page.py < content_home.html > ../index.html +python make_page.py < content_team.html > ../team.html +python make_page.py < content_download.html > ../download.html +python make_page.py < content_support.html > ../support.html diff --git a/other/website/src/make_page.py b/other/website/src/make_page.py new file mode 100644 index 00000000..57d6ef51 --- /dev/null +++ b/other/website/src/make_page.py @@ -0,0 +1,6 @@ +import sys + +template = "".join(file("template.html").readlines()) +content = "".join(sys.stdin.readlines()) +final_page = template.replace("%CONTENT%", content) +print final_page \ No newline at end of file diff --git a/other/website/src/template.html b/other/website/src/template.html new file mode 100644 index 00000000..18eac49d --- /dev/null +++ b/other/website/src/template.html @@ -0,0 +1,30 @@ + + + + + + Teewars + + + + +
+ + +
+
 
+
+ + %CONTENT% + +
+
+
+ + + \ No newline at end of file -- cgit 1.4.1