~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
71
72
73
74
75
76
77
78
79
80
<tal:root
  xmlns:tal="http://xml.zope.org/namespaces/tal"
  xmlns:metal="http://xml.zope.org/namespaces/metal"
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
  omit-tag="">
  <ul>
    <li tal:condition="view/isRemoved">
      Removed from disk
      <span tal:attributes="title context/dateremoved/fmt:datetime"
            tal:content="context/dateremoved/fmt:displaydate" />.
    </li>
    <li tal:condition="view/isPendingRemoval">
      Removal requested
      <span tal:attributes="title context/scheduleddeletiondate/fmt:datetime"
         tal:content="context/scheduleddeletiondate/fmt:displaydate" />.
    </li>
    <li tal:condition="view/wasDeleted">
      Deleted
      <span tal:attributes="title context/datesuperseded/fmt:datetime"
            tal:content="context/datesuperseded/fmt:displaydate" />
      by <a tal:replace="structure context/removed_by/fmt:link"/>
      <div tal:condition="context/removal_comment"
           tal:content="structure context/removal_comment/fmt:text-to-html" />
    </li>
    <li tal:condition="view/wasSuperseded">
      Superseded
      <span tal:attributes="title context/datesuperseded/fmt:datetime"
            tal:content="context/datesuperseded/fmt:displaydate"/>
      by <span tal:replace="context/supersededby/title" />
    </li>
    <li tal:content="structure view/recipe_build_details" tal:condition="view/is_source" />
    <li tal:condition="context/datepublished">
      Published
      <span tal:attributes="title context/datepublished/fmt:datetime"
            tal:content="context/datepublished/fmt:displaydate" />
    </li>
    <li tal:condition="view/wasCopied">
      Copied from
      <tal:source_original_location condition="view/is_source">
        <tal:define
          define="linkify_archive view/linkify_source_archive;
                  source context/sourcepackagerelease">
          <tal:message
            define="archive source/upload_archive;
                    series source/upload_distroseries;
                    distro series/distribution;
                    message string:${distro/name} ${series/name} in "
            replace="message" />
          <a tal:condition="linkify_archive"
             tal:attributes="href source/upload_archive/fmt:url"
             tal:content="source/upload_archive/displayname" />
          <tal:message
            condition="not:linkify_archive"
            define="archive source/upload_archive;
                    message string:${archive/displayname}"
            replace="message" />
        </tal:define>
      </tal:source_original_location>
      <tal:binary_build_location condition="view/is_binary">
        <tal:message
          define="build context/binarypackagerelease/build;
                  archive build/archive;
                  pocket build/pocket;
                  arch build/distro_arch_series;
                  series arch/distroseries;
                  distro series/distribution;
                  message string:${distro/name} ${series/name}-${pocket/name/fmt:lower} ${arch/architecturetag} in ${archive/displayname}"
          replace="message" />
      </tal:binary_build_location>
    </li>

  </ul>

  <tal:ppa condition="context/archive/is_ppa">
    <p tal:condition="view/isRemoved">
      Removed files can still be downloaded from the Librarian; see below.
    </p>
  </tal:ppa>

</tal:root>