summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/doap.ttl27
-rw-r--r--web/footer.html1
-rw-r--r--web/header.html16
-rw-r--r--web/index.txt37
-rw-r--r--web/screen.pngbin2280 -> 0 bytes
-rw-r--r--web/small.pngbin362 -> 0 bytes
-rw-r--r--web/summary.sh40
7 files changed, 0 insertions, 121 deletions
diff --git a/web/doap.ttl b/web/doap.ttl
deleted file mode 100644
index b15337f..0000000
--- a/web/doap.ttl
+++ /dev/null
@@ -1,27 +0,0 @@
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
-@prefix doap: <http://usefulinc.com/ns/doap#>.
-@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-@prefix : <http://njw.me.uk/software/spout#>.
-
-:p a doap:Project;
- doap:name "Spout";
- doap:shortdesc "A simple caveflying game";
- doap:description "Spout is a simple caveflying game. The aim is to get as high as possible avoiding or destroying obstacles.";
- doap:homepage <http://njw.me.uk/software/spout>;
- doap:repository :repo;
- doap:programming-language "C";
- doap:license <http://creativecommons.org/licenses/MIT/>;
- doap:release :v1.4;
- doap:maintainer <http://njw.me.uk/card#i>.
-
-<http://njw.me.uk/card#i> a foaf:Person;
- foaf:name "Nick White";
- foaf:homepage <http://njw.me.uk>.
-
-:repo a doap:GitRepository;
- doap:location <http://git.njw.me.uk/spout.git>.
-
-:v1.4 a doap:Version;
- doap:revision "1.4";
- doap:created "2010-10-24";
- doap:file-release <http://njw.me.uk/software/spout/spout-1.4.tar.bz2>.
diff --git a/web/footer.html b/web/footer.html
deleted file mode 100644
index 62b274f..0000000
--- a/web/footer.html
+++ /dev/null
@@ -1 +0,0 @@
-</body></html>
diff --git a/web/header.html b/web/header.html
deleted file mode 100644
index fed7a0b..0000000
--- a/web/header.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html><html><head>
-<style type="text/css">
-body { font-family: sans-serif; max-width: 75%; margin: auto;
- background: url(small.png) no-repeat 86% 2px; }
-h1 { font-size: 1.6em; text-align: center; margin-bottom: 0.2em; }
-h2 { font-size: 1.2em; border-bottom: thin solid black; margin-top: 0.1em; }
-h3 { border: thin solid black; margin: auto; background: #cd2f2f;
- max-width: 15em; text-align: center; padding: 0.2em; margin-bottom: 0.3em; }
-h3:hover { background: #ff9657; }
-h3 a { color: black; text-decoration: none }
-h3 a:hover { text-decoration: underline }
-img { display: block; margin: auto; }
-</style>
-<link rel="alternate" type="text/turtle" title="rdf" href="doap.ttl" />
-<title>Spout - A simple caveflying game</title>
-</head><body>
diff --git a/web/index.txt b/web/index.txt
deleted file mode 100644
index 1217b91..0000000
--- a/web/index.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-Spout
-=======================================================================
-
-About
------
-
-Spout is a simple caveflying game. The aim is to get as high as
-possible avoiding or destroying obstacles.
-
-![Screenshot of Spout](screen.png)
-
-It should work on any *nix system with SDL libraries installed.
-
-Spout is free software released under the terms of the MIT license.
-
-### [Download Spout 1.4](releases/spout-VERSION.tar.bz2)
-### ([GPG signature](releases/spout-VERSION.tar.bz2.sig))
-
-History
--------
-
-Spout was originally written for a handheld by kuni, and soon
-afterwards was ported to Windows using cygwin and sdl and released
-under the MIT license.
-
-In 2004 a 'unix version' was released, which mostly just slapped
-autotools into the windows version and infringed the license.
-
-This is a new unix version, based on the original Windows code by
-kuni, which aims to add useful features and simplify the code.
-
-Development
------------
-
-Please send any patches, bugs or general thoughts to me by
-[email](http://njw.me.uk/contact). A list of current issues to
-work on can be found in the TODO file in the repository.
diff --git a/web/screen.png b/web/screen.png
deleted file mode 100644
index 6a20078..0000000
--- a/web/screen.png
+++ /dev/null
Binary files differ
diff --git a/web/small.png b/web/small.png
deleted file mode 100644
index 39e79a6..0000000
--- a/web/small.png
+++ /dev/null
Binary files differ
diff --git a/web/summary.sh b/web/summary.sh
deleted file mode 100644
index ef58225..0000000
--- a/web/summary.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-
-test $# -ne 1 && echo "usage: $0 doap" && exit 1
-
-rdf="$1"
-
-q="PREFIX doap: <http://usefulinc.com/ns/doap#>
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-SELECT ?home ?repo ?license ?maintainer ?maintainerhome ?lang
-WHERE {
-?p a doap:Project;
- doap:homepage ?home;
- doap:repository ?r;
- doap:license ?license;
- doap:programming-language ?lang;
- doap:maintainer ?m.
-?r doap:location ?repo.
-?m foaf:name ?maintainer;
- foaf:homepage ?maintainerhome.
-}"
-
-roqet -q -r csv -e "$q" -D /dev/stdin < $rdf | sed '/^Result/d' \
-| while read r; do
- home=`echo $r | awk -F , '{print $2}'| sed -e 's/uri(\(.*\))/\1/'`
- repo=`echo $r | awk -F , '{print $3}'| sed -e 's/uri(\(.*\))/\1/'`
- licenseuri=`echo $r | awk -F , '{print $4}'| sed -e 's/uri(\(.*\))/\1/'`
- maint=`echo $r | awk -F , '{print $5}'| sed -e 's/"\(.*\)"/\1/'`
- mainthome=`echo $r | awk -F , '{print $6}'| sed -e 's/uri(\(.*\))/\1/'`
- lang=`echo $r | awk -F , '{print $7}'| sed -e 's/"\(.*\)"/\1/'`
- test "$licenseuri" = "http://www.gnu.org/licenses/gpl.html" && license="GPL"
- test "$licenseuri" = "http://creativecommons.org/licenses/MIT/" && license="MIT"
-
- cat <<- _EOF_
-- Project homepage: [$home]($home)
-- Code repository: [$repo]($repo)
-- Maintainer: [$maint]($mainthome)
-- Language: $lang
-- License: [$license]($licenseuri)
-_EOF_
-done