<%page args="environ, cookies, title, slug=None, add_css=(), add_js=()"/>\ <%namespace module="toolserver.background" import="set_background"/>\ <%namespace name="index" file="/index.mako" import="get_tools"/>\ <%! from os import path %>\ <% tools = get_tools() root = path.dirname(environ["SCRIPT_NAME"]) this = environ["PATH_INFO"] pretty = path.split(root)[0] if not slug: slug = path.split(this)[1] if slug.endswith(".fcgi"): slug = slug[:-5] %>\ ${title} - earwig@toolserver % for filename in add_css: % endfor % for filename in add_js: % endfor <% selected = cookies["EarwigBackground"].value if "EarwigBackground" in cookies else "plain" %>\ % if selected == "plain": % else: <% bg_url = set_background(cookies, selected) %>\ % endif