~launchpad-pqm/launchpad/devel

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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:tal="http://xml.zope.org/namespaces/tal"
  xmlns:metal="http://xml.zope.org/namespaces/metal"
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
  metal:use-macro="view/macro:page/locationless"
  i18n:domain="launchpad"
>
  <body>
    <div class="top-portlet" metal:fill-slot="main">
      <h1>Lost something?</h1>
      <p>
      This page does not exist, or you may not have permission to see it.
      </p>

      <p>
      If you have been to this page before, it is possible it has been removed.
      </p>
      <tal:referred condition="view/referrer">
        <p>
          If you got here from a link elsewhere on Launchpad,
          sorry about that.
          We&#8217;ve recorded the problem,
          and we&#8217;ll fix it as soon as we can.
        </p>
        <p>
          Otherwise, complain to the maintainers of the page that linked here.
        </p>
        <p>
          If this is blocking your work, let us know by asking a question at
          <a tal:condition="not: view/user|nothing"
            href="/feedback">Launchpad Support</a>
          <a tal:condition="view/user|nothing"
            href="/support">Launchpad Support</a>.
          Include the error <abbr>ID</abbr>
          <code class="oopsid" tal:content="request/oopsid">OOPS-A1234</code>
          in your message.
        </p>
      </tal:referred>
      <p tal:condition="not:view/referrer">
      Check that you are logged in with the correct acount, or that you
      entered the address correctly, or search for it:
      </p>
      <form
        tal:attributes="action string:${rooturl}+search"
        method="get"
        accept-charset="UTF-8"
        style="margin: 1em 0 1em 0"
      >
        <img src="/@@/search.png" /> <input id="text" type="text" name="field.text" size="50" />
        <input type="submit" value="Search Launchpad" />
      </form>
      <div style="margin-bottom: 1em;">
      <tal:replace tal:replace="structure view/maybeShowTraceback" />
      </div>
      <ul>
        <li tal:condition="view/layer_help"
            tal:content="structure view/layer_help" />
        <li tal:condition="view/referrer">
          <a tal:attributes="href view/referrer"
          >Return to the page you came from</a>
        </li>
        <li>
          <a tal:attributes="href modules/lp.services.webapp.vhosts/allvhosts/configs/mainsite/rooturl"
          >Return to the Launchpad front page</a>
        </li>
      </ul>
    </div>
  </body>
</html>