]> jfr.im git - irc/quakenet/qwebirc.git/blob - bin/pages.py
tidy up autobahn support -- now requires 0.17.2
[irc/quakenet/qwebirc.git] / bin / pages.py
1 #!/usr/bin/env python
2 IRC_BASE = ["ircconnection", "irclib", "numerics", "baseircclient", "irctracker", "commandparser", "commands", "ircclient", "commandhistory", "nicknamevalidator", "ignorecontroller"]
3 PANES = ["connect", "embed", "options", "about", "feedback", "url"]
4 UI_BASE = ["menuitems", "baseui", "baseuiwindow", "colour", "url", "theme", "notifications", "tabcompleter", "style", "xdomain"]
5 UI_BASE.extend(["panes/%s" % x for x in PANES])
6
7 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"]
8 BUILD_BASE = ["qwebirc"]
9 JS_DEBUG_BASE = ["mootools-1.2.5-core-nc", "mootools-1.2.5.1-more-nc", "debug/soundmanager_defer", "soundmanager2"]
10 JS_RAW_BASE = ["//ajax.googleapis.com/ajax/libs/mootools/1.2.5/mootools-yui-compressed.js"]
11 JS_BASE = ["mootools-1.2.5.1-more", "../../js/soundmanager_defer", "soundmanager2-nodebug-jsmin"]
12 JS_EXTRA = []
13
14 UIs = {
15 "qui": {
16 "class": "QUI",
17 "nocss": True,
18 "uifiles": ["qui"],
19 "doctype": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"" + "\n" \
20 " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"
21 }
22 }
23
24 def flatten(y):
25 for x in y:
26 if isinstance(x, list):
27 for x in flatten(x):
28 yield x
29 else:
30 yield x
31
32 DEBUG_BASE = list(flatten(DEBUG_BASE))
33 DEBUG = ["debug/%s" % x for x in DEBUG_BASE]