X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/85f01e3fae00ffbf96f810bf047ec051fe126d70..8b8ebb7815316b0a71e6169f40f4acf3876bab98:/pagegen.py diff --git a/pagegen.py b/pagegen.py index 0745c2e..ba90119 100644 --- a/pagegen.py +++ b/pagegen.py @@ -11,7 +11,6 @@ UIs = { "qui": { "class": "QUI", "uifiles": ["qui"], - "extra": ["mootools-1.2-more"], "doctype": "" }, @@ -40,7 +39,7 @@ UIs = { }, "swmui": { "class": "SWMUI", - "uifiles": ["swmui", "swmuilayout"], + "uifiles": ["swmui", "swmlayout"], "doctype": "" }, "uglyui": { @@ -57,8 +56,9 @@ def flatten(y): yield x else: yield x - -DEBUG = ["debug/%s" % x for x in flatten(DEBUG_BASE)] + +DEBUG_BASE = list(flatten(DEBUG_BASE)) +DEBUG = ["debug/%s" % x for x in DEBUG_BASE] def jslist(name, debug): ui = UIs[name]