]> jfr.im git - irc/quakenet/qwebirc.git/blob - bin/pagegen.py
Merge in default.
[irc/quakenet/qwebirc.git] / bin / pagegen.py
1 import os, sys, pages, subprocess, re, optionsgen, config
2
3 class HGException(Exception):
4 pass
5
6 def jslist(name, debug):
7 ui = pages.UIs[name]
8 if debug:
9 x = [pages.JS_BASE, ui.get("extra", []), pages.DEBUG, ["debug/ui/frontends/%s" % y for y in ui["uifiles"]]]
10 hgid = ""
11 else:
12 #x = [pages.JS_BASE, ui.get("buildextra", ui.get("extra", [])), pages.BUILD_BASE, name]
13 x = [name]
14 hgid = "-" + gethgid()
15
16 return list("js/%s%s.js" % (y, hgid) for y in pages.flatten(x))
17
18 def csslist(name, debug, gen=False):
19 ui = pages.UIs[name]
20 nocss = ui.get("nocss")
21 if not debug:
22 return ["css/%s-%s.css" % (name, gethgid())]
23 css = pages.flatten([ui.get("extracss", []), "colours", "dialogs"])
24 if not nocss:
25 css = list(css) + [name]
26 return list("css/%s%s.css" % ("debug/" if gen else "", x) for x in css)
27
28 def _gethgid():
29 try:
30 p = subprocess.Popen(["hg", "id"], stdout=subprocess.PIPE)
31 except Exception, e:
32 if hasattr(e, "errno") and e.errno == 2:
33 raise HGException, "unable to execute"
34
35 data = p.communicate()[0]
36 if p.wait() != 0:
37 raise HGException, "unable to get id"
38 return re.match("^([0-9a-f]+).*", data).group(1)
39
40 HGID = None
41 def gethgid():
42 global HGID
43 if HGID is None:
44 try:
45 HGID = _gethgid()
46 except HGException, e:
47 print >>sys.stderr, "warning: hg: %s (using a random id)." % e
48 HGID = os.urandom(10).encode("hex")
49 return HGID
50
51 def producehtml(name, debug):
52 ui = pages.UIs[name]
53 js = jslist(name, debug)
54 css = csslist(name, debug, gen=True)
55 csshtml = "\n".join(" <link rel=\"stylesheet\" href=\"%s\" type=\"text/css\"/>" % x for x in css)
56 jshtml = "\n".join(" <script type=\"text/javascript\" src=\"%s\"></script>" % x for x in js)
57
58 div = ui.get("div", "")
59 customjs = ui.get("customjs", "")
60
61 return """%s
62 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
63 <head>
64 <title>%s (qwebirc)</title>
65 <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
66 <link rel="icon" type="image/png" href="images/favicon.png"/>
67 %s%s
68 %s
69 <script type="text/javascript">
70 var ui = new qwebirc.ui.Interface("ircui", qwebirc.ui.%s, %s);
71 </script>
72 </head>
73 <body>
74 <div id="ircui">
75 <noscript>
76 <div id="noscript">Javascript is required to use IRC.</div>
77 </noscript>%s
78 </div>
79 </body>
80 </html>
81 """ % (ui["doctype"], config.APP_TITLE, csshtml, customjs, jshtml, ui["class"], optionsgen.get_options(), div)
82
83 def main(outputdir=".", produce_debug=True):
84 p = os.path.join(outputdir, "static")
85 for x in pages.UIs:
86 if produce_debug:
87 f = open(os.path.join(p, "%sdebug.html" % x), "wb")
88 try:
89 f.write(producehtml(x, debug=True))
90 finally:
91 f.close()
92
93 f = open(os.path.join(p, "%s.html" % x), "wb")
94 try:
95 f.write(producehtml(x, debug=False))
96 finally:
97 f.close()
98
99 if __name__ == "__main__":
100 main()
101