# HG changeset patch # User John "Elwin" Edwards # Date 1388689085 18000 # Node ID 86b616d880207d6a603e1b30730ed4a90387b74c # Parent 25843238434aa2b8324a7b696117b243d8f7dad1 Add a footer with some links to the Web pages. diff -r 25843238434a -r 86b616d88020 py/rlgall.py --- a/py/rlgall.py Thu Jan 02 13:09:48 2014 -0500 +++ b/py/rlgall.py Thu Jan 02 13:58:05 2014 -0500 @@ -42,7 +42,13 @@ 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 -r 25843238434a -r 86b616d88020 web/about/arogue5.html --- a/web/about/arogue5.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/about/arogue5.html Thu Jan 02 13:58:05 2014 -0500 @@ -16,5 +16,6 @@

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 -r 25843238434a -r 86b616d88020 web/about/index.html --- a/web/about/index.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/about/index.html Thu Jan 02 13:58:05 2014 -0500 @@ -28,5 +28,6 @@ data is stored using PostgreSQL.

The Web player was created with node.js.

+
rlgallery.org Recent Games High Scores
diff -r 25843238434a -r 86b616d88020 web/about/rogue3.html --- a/web/about/rogue3.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/about/rogue3.html Thu Jan 02 13:58:05 2014 -0500 @@ -15,5 +15,6 @@

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 -r 25843238434a -r 86b616d88020 web/about/rogue4.html --- a/web/about/rogue4.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/about/rogue4.html Thu Jan 02 13:58:05 2014 -0500 @@ -15,5 +15,6 @@

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 -r 25843238434a -r 86b616d88020 web/about/rogue5.html --- a/web/about/rogue5.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/about/rogue5.html Thu Jan 02 13:58:05 2014 -0500 @@ -15,5 +15,6 @@

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 -r 25843238434a -r 86b616d88020 web/about/srogue.html --- a/web/about/srogue.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/about/srogue.html Thu Jan 02 13:58:05 2014 -0500 @@ -16,5 +16,6 @@

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 -r 25843238434a -r 86b616d88020 web/about/ttyrec.html --- a/web/about/ttyrec.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/about/ttyrec.html Thu Jan 02 13:58:05 2014 -0500 @@ -25,5 +25,6 @@ <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 -r 25843238434a -r 86b616d88020 web/archive.cgi --- a/web/archive.cgi Thu Jan 02 13:09:48 2014 -0500 +++ b/web/archive.cgi Thu Jan 02 13:58:05 2014 -0500 @@ -358,5 +358,6 @@ 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 -r 25843238434a -r 86b616d88020 web/download.html --- a/web/download.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/download.html Thu Jan 02 13:58:05 2014 -0500 @@ -25,5 +25,6 @@

Bugs?

If you find any problems, report them on Bitbucket.

+
rlgallery.org Recent Games High Scores
diff -r 25843238434a -r 86b616d88020 web/index.html --- a/web/index.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/index.html Thu Jan 02 13:58:05 2014 -0500 @@ -36,5 +36,6 @@

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 -r 25843238434a -r 86b616d88020 web/main.css --- a/web/main.css Thu Jan 02 13:09:48 2014 -0500 +++ b/web/main.css Thu Jan 02 13:58:05 2014 -0500 @@ -43,3 +43,15 @@ 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 -r 25843238434a -r 86b616d88020 web/scoring/index.html --- a/web/scoring/index.html Thu Jan 02 13:09:48 2014 -0500 +++ b/web/scoring/index.html Thu Jan 02 13:58:05 2014 -0500 @@ -15,5 +15,6 @@
  • Explorers
  • +
    rlgallery.org Recent Games High Scores