<%include file="/support/header.mako" args="environ=environ, title='Settings'"/>\ <%namespace module="toolserver.settings" import="main"/>\ <%! from json import dumps, loads %> <% bot, cookies, status, langs, projects = main(environ, headers) %> % if status:

${status}

% endif

Settings

This page contains some configurable options for this Toolserver site. Settings are saved as cookies. You can view and delete all cookies generated by this site at the bottom of this page.

Default site: http:// . .org
Background:

Cookies

% if cookies: % for cookie in cookies.itervalues(): % try: <% lines = dumps(loads(cookie.value), indent=4).splitlines() %> % except ValueError: % endtry % endfor
${cookie.key | h} % for line in lines:
${line | h}
% endfor
${cookie.value | h}
% else:

No cookies!

% endif <%include file="/support/footer.mako" args="environ=environ"/>