X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/60ce7beede7215213e9043f213765ab51b2b309b..48f0fc4323550fdafaa33bb99725f16ab975b3d5:/bin/pages.py diff --git a/bin/pages.py b/bin/pages.py index 03815e9..b926b12 100644 --- a/bin/pages.py +++ b/bin/pages.py @@ -1,52 +1,23 @@ #!/usr/bin/env python -IRC_BASE = ["ircconnection", "irclib", "numerics", "baseircclient", "irctracker", "commandparser", "commands", "ircclient", "commandhistory"] -UI_BASE = ["baseui", "baseuiwindow", "colour", "url", "theme", "hilightcontroller", "menuitems", "tabcompleter", "panes/connect", "panes/embed", "panes/options", "panes/about", "panes/privacypolicy", "panes/feedback"] +IRC_BASE = ["ircconnection", "irclib", "numerics", "baseircclient", "irctracker", "commandparser", "commands", "ircclient", "commandhistory", "nicknamevalidator", "ignorecontroller"] +PANES = ["connect", "embed", "options", "about", "feedback", "url"] +UI_BASE = ["menuitems", "baseui", "baseuiwindow", "colour", "url", "theme", "notifications", "tabcompleter", "style", "xdomain"] +UI_BASE.extend(["panes/%s" % x for x in PANES]) -DEBUG_BASE = ["qwebirc", "version", "jslib", "crypto", "md5", ["irc/%s" % x for x in IRC_BASE], ["ui/%s" % x for x in UI_BASE], "qwebircinterface", "auth", "sound"] +DEBUG_BASE = ["qwebirc", "version", "qhash", "jslib", "crypto", "md5", ["irc/%s" % x for x in IRC_BASE], ["ui/%s" % x for x in UI_BASE], "qwebircinterface", "auth", "sound"] BUILD_BASE = ["qwebirc"] -JS_BASE = ["mootools-1.2.1-core", "mootools-1.2-more"] -JS_EXTRA = ["soundmanager2"] +JS_DEBUG_BASE = ["mootools-1.2.5-core-nc", "mootools-1.2.5.1-more-nc", "debug/soundmanager_defer", "soundmanager2"] +JS_RAW_BASE = ["//ajax.googleapis.com/ajax/libs/mootools/1.2.5/mootools-yui-compressed.js"] +JS_BASE = ["mootools-1.2.5.1-more", "../../js/soundmanager_defer", "soundmanager2-nodebug-jsmin"] +JS_EXTRA = [] UIs = { "qui": { "class": "QUI", + "nocss": True, "uifiles": ["qui"], "doctype": "" - }, - "mochaui": { - "class": "MochaUI", - "uifiles": ["mochaui"], - "extra": ["mochaui/mocha"], - "buildextra": ["mochaui/mocha-compressed"], - "extrajs": ["mochaui/excanvas-compressed"], - "doctype": "", - "div": """ -
-
-
-
-
-
-
-
-
-
""", - "extracss": ["mochaui/ui", "mochaui/content"], - "customjs": """ - """ - }, - "swmui": { - "class": "SWMUI", - "uifiles": ["swmui", "swmlayout"], - "doctype": "" - }, - "uglyui": { - "class": "UglyUI", - "uifiles": ["uglyui"], - "doctype": "" } }