From f1f9d455f271d216fb73ecee6181b49030078777 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Tue, 14 Aug 2007 21:59:16 +0000 Subject: moved /trunk/other to /assets --- 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 | 54 ------------------------ other/website/src/make.sh | 6 --- other/website/src/make_page.py | 6 --- other/website/src/template.html | 30 -------------- 7 files changed, 218 deletions(-) delete mode 100644 other/website/src/content_download.html delete mode 100644 other/website/src/content_home.html delete mode 100644 other/website/src/content_support.html delete mode 100644 other/website/src/content_team.html delete mode 100755 other/website/src/make.sh delete mode 100644 other/website/src/make_page.py delete 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 deleted file mode 100644 index bc8cbf9b..00000000 --- a/other/website/src/content_download.html +++ /dev/null @@ -1,73 +0,0 @@ -

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 deleted file mode 100644 index 75461800..00000000 --- a/other/website/src/content_home.html +++ /dev/null @@ -1,32 +0,0 @@ - -
- -
- -

TEEWARS 0.2.0 RELEASED 2007-08-05

-

The long sought-after update of Teewars has finally arrived! -The highlights 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 deleted file mode 100644 index f6792d80..00000000 --- a/other/website/src/content_support.html +++ /dev/null @@ -1,17 +0,0 @@ - -

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 deleted file mode 100644 index 18a85ccb..00000000 --- a/other/website/src/content_team.html +++ /dev/null @@ -1,54 +0,0 @@ -

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 deleted file mode 100755 index cf1c2723..00000000 --- a/other/website/src/make.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/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 deleted file mode 100644 index 57d6ef51..00000000 --- a/other/website/src/make_page.py +++ /dev/null @@ -1,6 +0,0 @@ -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 deleted file mode 100644 index 18eac49d..00000000 --- a/other/website/src/template.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - Teewars - - - - -
- - -
-
 
-
- - %CONTENT% - -
-
-
- - - \ No newline at end of file -- cgit 1.4.1