1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xml:lang="en"
lang="en"
>
<head
tal:define="
revno modules/lp.app.versioninfo/revno | string:unknown;
icingroot string:/+icing/rev${revno}"
>
<title>Oops!</title>
<link
type="text/css"
rel="stylesheet"
media="screen, print"
tal:attributes="href string:${icingroot}/combo.css" />
<script type="text/javascript"
tal:content="string:var cookie_scope = '${request/lp:cookie_scope}';"></script>
</head>
<body>
<div class="yui-d0">
<div id="maincontent">
<h1 class="exception">Oops!</h1>
<p>
Sorry, something just went wrong in Launchpad.
</p>
<p>
We’ve recorded what happened,
and we’ll fix it as soon as possible.
Apologies for the inconvenience.
</p>
<p>
(Error <abbr>ID</abbr>:
<tal:oops replace="structure view/oops_id_text" />)
</p>
<tal:traceback replace="structure view/maybeShowTraceback" />
<div class="related">
<ul>
<li>
<a tal:attributes="href modules/lp.services.webapp.vhosts/allvhosts/configs/mainsite/rooturl"
>Return to the Launchpad front page</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>
|