comparison web/recent.cgi @ 100:44e8aaa20d02 default tip

Fix the format of archive links.
author John "Elwin" Edwards
date Wed, 03 Aug 2022 20:49:38 -0400
parents 25843238434a
children
comparison
equal deleted inserted replaced
99:801ec25cc0af 100:44e8aaa20d02
11 11
12 # The required header 12 # The required header
13 sys.stdout.write("Content-Type: text/html; charset=utf-8\r\n\r\n") 13 sys.stdout.write("Content-Type: text/html; charset=utf-8\r\n\r\n")
14 # The top of the page 14 # The top of the page
15 sys.stdout.write(rlgall.phead.format("Recent Games")) 15 sys.stdout.write(rlgall.phead.format("Recent Games"))
16 sys.stdout.write(rlgall.ptop); 16 sys.stdout.write(rlgall.ptop)
17 sys.stdout.write(rlgall.navtop.format("Recent")); 17 sys.stdout.write(rlgall.navtop.format("Recent"))
18 sys.stdout.write(rlgall.pti.format("Recent Expeditions")) 18 sys.stdout.write(rlgall.pti.format("Recent Expeditions"))
19 19
20 for game in rlgall.gamelist: 20 for game in rlgall.gamelist:
21 game.tablerecent(sys.stdout) 21 game.tablerecent(sys.stdout)
22 22