From 41eab38a581e93055524fad2284abae03cdd5043 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Thu, 2 Jan 2014 13:58:05 -0500 Subject: [PATCH] Add a footer with some links to the Web pages. --- py/rlgall.py | 8 +++++++- web/about/arogue5.html | 1 + web/about/index.html | 1 + web/about/rogue3.html | 1 + web/about/rogue4.html | 1 + web/about/rogue5.html | 1 + web/about/srogue.html | 1 + web/about/ttyrec.html | 1 + web/archive.cgi | 3 ++- web/download.html | 1 + web/index.html | 1 + web/main.css | 12 ++++++++++++ web/scoring/index.html | 1 + 13 files changed, 31 insertions(+), 2 deletions(-) diff --git a/py/rlgall.py b/py/rlgall.py index a671389..33b78f5 100644 --- a/py/rlgall.py +++ b/py/rlgall.py @@ -42,7 +42,13 @@ cell = ' {0}\n' rcell = ' {0}\n' hcell = ' {0}\n' tblend = '\n' -pend = "\n" +pend = """
+rlgallery.org +Recent Games +High Scores +
+ +""" # This would be more useful if we had to do translation headerbook = {"endt":"End time", "score":"Score", "name":"Name", "xl":"XL", diff --git a/web/about/arogue5.html b/web/about/arogue5.html index 1636072..c03a184 100644 --- a/web/about/arogue5.html +++ b/web/about/arogue5.html @@ -16,5 +16,6 @@ up and down levels.

The Roguelike Restoration Project updated the game to run on modern systems.

The Roguelike Gallery's version contains a few more bugfixes. Download it here.

+
rlgallery.org Recent Games High Scores
diff --git a/web/about/index.html b/web/about/index.html index 46fb9ad..d1cd06d 100644 --- a/web/about/index.html +++ b/web/about/index.html @@ -28,5 +28,6 @@ data is stored using PostgreSQL.

The Web player was created with node.js.

+
rlgallery.org Recent Games High Scores
diff --git a/web/about/rogue3.html b/web/about/rogue3.html index aa14402..345421a 100644 --- a/web/about/rogue3.html +++ b/web/about/rogue3.html @@ -15,5 +15,6 @@ and distributed with BSD. This was the first widely-played version of Rogue.

The Roguelike Gallery's version has been further modified to work with dgamelaunch and to log the results of all games.

The source code can be downloaded.

+
rlgallery.org Recent Games High Scores
diff --git a/web/about/rogue4.html b/web/about/rogue4.html index a690a06..c02bd00 100644 --- a/web/about/rogue4.html +++ b/web/about/rogue4.html @@ -15,5 +15,6 @@ and distributed with BSD. It is called V4 because it has more in common with the

The Roguelike Gallery's version has been further modified to work with dgamelaunch and to log the results of all games.

The source code can be downloaded.

+
rlgallery.org Recent Games High Scores
diff --git a/web/about/rogue5.html b/web/about/rogue5.html index ee41159..1ad7761 100644 --- a/web/about/rogue5.html +++ b/web/about/rogue5.html @@ -15,5 +15,6 @@ created for Unix.

The Roguelike Gallery's version has been further modified to work with dgamelaunch and to log the results of all games.

The source code is available for download.

+
rlgallery.org Recent Games High Scores
diff --git a/web/about/srogue.html b/web/about/srogue.html index 2a79ef4..b77d5db 100644 --- a/web/about/srogue.html +++ b/web/about/srogue.html @@ -16,5 +16,6 @@ final version, numbered 9.0, was completed in 1984.

The Roguelike Gallery modified Super-Rogue to work with rlgallery.org's system, fixed a few bugs which made winning easy, and added support for the arrow keys.

The source code is available for download.

+
rlgallery.org Recent Games High Scores
diff --git a/web/about/ttyrec.html b/web/about/ttyrec.html index f73f5af..adde474 100644 --- a/web/about/ttyrec.html +++ b/web/about/ttyrec.html @@ -25,5 +25,6 @@ wrong places, try making your terminal bigger. Unfortunately, ttyrecs don't tell <escape>[1;<number of rows>r )

Note: if you are using ipbt, you must also tell ipbt what size terminal to use. Check ipbt's documentation.

+
rlgallery.org Recent Games High Scores
diff --git a/web/archive.cgi b/web/archive.cgi index 53a15f8..da6220c 100755 --- a/web/archive.cgi +++ b/web/archive.cgi @@ -358,5 +358,6 @@ else: sys.stdout.write('

Or browse all ttyrecs.

') sys.stdout.write('

What are ttyrecs?

') -sys.stdout.write("\n\n\n") +sys.stdout.write('\n') +sys.stdout.write(rlgall.pend) exit() diff --git a/web/download.html b/web/download.html index 684b76e..4d3189b 100644 --- a/web/download.html +++ b/web/download.html @@ -25,5 +25,6 @@ free MacBook and $100 for an Apple Developer account.

Bugs?

If you find any problems, report them on Bitbucket.

+
rlgallery.org Recent Games High Scores
diff --git a/web/index.html b/web/index.html index d072b4d..b463011 100644 --- a/web/index.html +++ b/web/index.html @@ -36,5 +36,6 @@ of historical roguelikes is being restored and made available for play on this s

Feb. 2, 2012: Everything should be recovered from the failed upgrade. Please report any problems.

Feb. 4, 2011: Some updates to the website. The ttyrec finder is now usable.

+
rlgallery.org Recent Games High Scores
diff --git a/web/main.css b/web/main.css index 460a9bf..4089619 100644 --- a/web/main.css +++ b/web/main.css @@ -43,3 +43,15 @@ form div { span.metavar { font-style: italic; } + +div.foot { + margin-top: 1em; + font-size: 0.8em; + background-color: #E0FFE0; + padding: 0.3em; + text-align: center; +} + +div.foot a { + padding: 0 0.6em; +} diff --git a/web/scoring/index.html b/web/scoring/index.html index 9b159e5..58f2d47 100644 --- a/web/scoring/index.html +++ b/web/scoring/index.html @@ -15,5 +15,6 @@
  • Explorers
  • +
    rlgallery.org Recent Games High Scores