X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/9c4fe2536841d3c6311b71cee9f067eaa32e9187..48f0fc4323550fdafaa33bb99725f16ab975b3d5:/bin/pagegen.py diff --git a/bin/pagegen.py b/bin/pagegen.py index 1c042d0..b05cd6e 100755 --- a/bin/pagegen.py +++ b/bin/pagegen.py @@ -1,53 +1,56 @@ import os, sys, pages, subprocess, re, optionsgen, config -class HGException(Exception): +class GitException(Exception): pass def jslist(name, debug): ui = pages.UIs[name] if debug: x = [pages.JS_DEBUG_BASE, ui.get("extra", []), pages.DEBUG, ["debug/ui/frontends/%s" % y for y in ui["uifiles"]]] - hgid = "" + gitid = "" else: #x = [pages.JS_BASE, ui.get("buildextra", ui.get("extra", [])), pages.BUILD_BASE, name] x = [pages.JS_RAW_BASE, name] - hgid = "-" + gethgid() + gitid = "-" + getgitid() - return list(y if y.startswith("//") else "js/%s%s.js" % (y, hgid) for y in pages.flatten(x)) + return list(y if y.startswith("//") else "js/%s%s.js" % (y, gitid) for y in pages.flatten(x)) def csslist(name, debug, gen=False): ui = pages.UIs[name] nocss = ui.get("nocss") if not debug: - return ["css/%s-%s.css" % (name, gethgid())] - css = pages.flatten([ui.get("extracss", []), "colours", "dialogs"]) + return ["css/%s-%s.css" % (name, getgitid())] + css = list(pages.flatten([ui.get("extracss", []), "colours", "dialogs"])) if not nocss: - css = list(css) + [name] - return list("css/%s%s.css" % ("debug/" if gen else "", x) for x in css) + css+=[name] + css = ["%s.css" % x for x in css] + if hasattr(config, "CUSTOM_CSS"): + css+=[config.CUSTOM_CSS] + return list("css/%s%s" % ("debug/" if gen else "", x) for x in css) -def _gethgid(): +def _getgitid(): try: - p = subprocess.Popen(["hg", "id"], stdout=subprocess.PIPE) + p = subprocess.Popen(["git", "rev-parse", "HEAD"], stdout=subprocess.PIPE, shell=os.name == "nt") except Exception, e: if hasattr(e, "errno") and e.errno == 2: - raise HGException, "unable to execute" - raise HGException, "unknown exception running hg: %s" % repr(e) + raise GitException, "unable to execute" + raise GitException, "unknown exception running git: %s" % repr(e) data = p.communicate()[0] if p.wait() != 0: - raise HGException, "unable to get id" + raise GitException, "unable to get id" return re.match("^([0-9a-f]+).*", data).group(1) -HGID = None -def gethgid(): - global HGID - if HGID is None: +GITID = None +def getgitid(): + global GITID + if GITID is None: try: - HGID = _gethgid() - except HGException, e: - print >>sys.stderr, "warning: hg: %s (using a random id)." % e - HGID = os.urandom(10).encode("hex") - return HGID + GITID = _getgitid() + except GitException, e: + print >>sys.stderr, "warning: git: %s (using a random id)." % e + GITID = os.urandom(10).encode("hex") + return GITID def producehtml(name, debug): ui = pages.UIs[name] @@ -56,6 +59,9 @@ def producehtml(name, debug): csshtml = "\n".join(" " % (config.STATIC_BASE_URL, x) for x in css) jshtml = "\n".join(" " % ("" if x.startswith("//") else config.STATIC_BASE_URL, x) for x in js) + if hasattr(config, "ANALYTICS_HTML"): + jshtml+="\n" + config.ANALYTICS_HTML + div = ui.get("div", "") customjs = ui.get("customjs", "") @@ -65,8 +71,11 @@ def producehtml(name, debug): %s (qwebirc) + + + -%s%s +%s%s %s