Mercurial > hg > rlgallery-misc
annotate py/rlgnotes @ 69:c2127bc98694
Update the dgamelaunch compatibility patch.
The patch is now to be applied to dgamelaunch revision 6753fd6e.
Maybe I should maintain my own Git branch. But this project already
uses autotools and npm. I don't need any more software that's amazing
in theory but painful to actually work with.
| author | John "Elwin" Edwards |
|---|---|
| date | Sat, 23 Jan 2016 19:04:17 -0500 |
| parents | 5b4ff5680037 |
| children | d417016bbf73 |
| rev | line source |
|---|---|
| 61 | 1 #!/usr/bin/python3 |
| 2 | |
| 3 import os | |
| 4 import sys | |
| 5 import datetime | |
| 6 import rlgall | |
| 7 import pytz | |
| 8 | |
| 9 navbar = '<div class="nav"><a href="/">rlgallery.org</a> -> \ | |
| 10 <a href="/notes/">Notes</a> -> {0}</div>' | |
| 11 | |
| 12 rsshead = """<?xml version="1.0" encoding="UTF-8"?> | |
| 13 <rss version="2.0"> | |
| 14 <channel> | |
| 15 <title>Roguelike Gallery</title> | |
| 16 <description>News and notes from the Roguelike Gallery.</description> | |
| 17 <link>http://rlgallery.org/notes/</link> | |
| 18 """ | |
|
5b4ff5680037
Add a basic blog manager.
John "Elwin" Edwards |
