fixed entries, improved html table

This commit is contained in:
Trilarion
2018-06-13 14:11:03 +02:00
parent 360bd0835c
commit 58b9b2575b
29 changed files with 1562 additions and 689 deletions

View File

@ -11,6 +11,7 @@
"https://git.code.sf.net/p/battlefieldjava/git",
"https://git.code.sf.net/p/dangerdeep/git",
"https://git.code.sf.net/p/dropshock/code",
"https://git.code.sf.net/p/erebusrpg/code",
"https://git.code.sf.net/p/rmoffice/code",
"https://git.octaforge.org/engine/octaforge.git",
"https://git.savannah.gnu.org/git/adonthell/adonthell-wastesedge.git",
@ -80,7 +81,9 @@
"https://github.com/Trilarion/avanor.git",
"https://github.com/Trilarion/deity.git",
"https://github.com/Trilarion/dungeonmap.git",
"https://github.com/Trilarion/eos-game.git",
"https://github.com/Trilarion/freetrain.git",
"https://github.com/Trilarion/jewelhunt.git",
"https://github.com/Trilarion/rpdungeon.git",
"https://github.com/Trilarion/sge2d.git",
"https://github.com/Tuxemon/Tuxemon.git",
@ -139,6 +142,7 @@
"https://github.com/godrin/antargis.git",
"https://github.com/graememcc/micropolisJS.git",
"https://github.com/gregoryfenton/other-life.git",
"https://github.com/grrk-bzzt/kqlives.git",
"https://github.com/guillaume-gouchon/dungeonhero.git",
"https://github.com/guillaume-gouchon/dungeonquest.git",
"https://github.com/guillaume-gouchon/smash.js.git",
@ -158,6 +162,7 @@
"https://github.com/jmimu/FITD.git",
"https://github.com/jonburesh/sintelgame.git",
"https://github.com/jp8900308/other-life.git",
"https://github.com/jpmalkiewicz/decker.git",
"https://github.com/jsettlers/settlers-remake.git",
"https://github.com/jwvhewitt/dmeternal.git",
"https://github.com/jwvhewitt/gearhead-1.git",

View File

@ -67,6 +67,10 @@ if __name__ == '__main__':
archives = json.loads(text)
print('update {} archives'.format(len(archives)))
# remove those that do not work
ignore = ['https://git.code.sf.net/p/dangerdeep/git', 'https://git.code.sf.net/p/erebusrpg/code', 'https://git.code.sf.net/p/rmoffice/code']
archives = [x for x in archives if x not in ignore]
# get derived folder names
folders = [derive_folder_name(url) for url in archives]