in crashclouseau/html.py [0:0]
def crashstack():
uuid = request.args.get("uuid", "")
stack, uuid_info = models.CrashStack.get_by_uuid(uuid)
if uuid_info:
channel = uuid_info["channel"]
repo_url = Mercurial.get_repo_url(channel)
sgn_url = utils.make_url_for_signature(
uuid_info["signature"],
uuid_info["buildid"],
utils.get_buildid(uuid_info["buildid"]),
channel,
uuid_info["product"],
)
return render_template(
"crashstack.html",
uuid_info=uuid_info,
stack=stack,
colors=utils.get_colors(),
enumerate=enumerate,
repo_url=repo_url,
channel=channel,
sgn_url=sgn_url,
)
abort(404)