~launchpad-pqm/launchpad/devel

5127.2.1 by Curtis Hovey
Fixed namespaces and bad markup in o.* and p.*
1
<tal:root
2
  xmlns:tal="http://xml.zope.org/namespaces/tal"
3
  xmlns:metal="http://xml.zope.org/namespaces/metal"
4
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
5
  omit-tag="">
4687.6.3 by Celso Providelo
Sorting publishing-record presentation for ubuntu packages.
6
  <ul>
5217.6.1 by Celso Providelo
Fixing bug #157064 (refactoring source & binary publishing history presentation by developers request). The new layout uses expandable-boxes infrastructure as Queue and PPA UI to present extra details about each publication row.
7
    <li tal:condition="view/isRemoved">
12400.2.4 by Steve Kowalik
Use BeautifulSoup to prettyify the HTML so I can check it. Remove <strong>, as
8
      Removed from disk
5217.6.1 by Celso Providelo
Fixing bug #157064 (refactoring source & binary publishing history presentation by developers request). The new layout uses expandable-boxes infrastructure as Queue and PPA UI to present extra details about each publication row.
9
      <span tal:attributes="title context/dateremoved/fmt:datetime"
10
            tal:content="context/dateremoved/fmt:displaydate" />.
11
    </li>
12
    <li tal:condition="view/isPendingRemoval">
12400.2.4 by Steve Kowalik
Use BeautifulSoup to prettyify the HTML so I can check it. Remove <strong>, as
13
      Removal requested
5226.1.24 by Celso Providelo
Fixing test failure.
14
      <span tal:attributes="title context/scheduleddeletiondate/fmt:datetime"
15
         tal:content="context/scheduleddeletiondate/fmt:displaydate" />.
4687.6.3 by Celso Providelo
Sorting publishing-record presentation for ubuntu packages.
16
    </li>
17
    <li tal:condition="view/wasDeleted">
12400.2.4 by Steve Kowalik
Use BeautifulSoup to prettyify the HTML so I can check it. Remove <strong>, as
18
      Deleted
4687.6.3 by Celso Providelo
Sorting publishing-record presentation for ubuntu packages.
19
      <span tal:attributes="title context/datesuperseded/fmt:datetime"
20
            tal:content="context/datesuperseded/fmt:displaydate" />
7849.13.18 by Brad Crittenden
Changes per review. Change tal:content to tal:replace where appropriate to avoid duplicate <a> wrapping. Formatters 'displayname' and 'unique_displayname' now return strings not HTML.
21
      by <a tal:replace="structure context/removed_by/fmt:link"/>
7055.1.1 by Muharem Hrnjadovic
bug fixed
22
      <div tal:condition="context/removal_comment"
9905.5.3 by Jelmer Vernooij
Provide a link to the bug report for bug numbers mentioned in removal comments on the package publishing history page.
23
           tal:content="structure context/removal_comment/fmt:text-to-html" />
4687.6.3 by Celso Providelo
Sorting publishing-record presentation for ubuntu packages.
24
    </li>
4687.6.10 by Celso Providelo
applying review comments, r=jml
25
    <li tal:condition="view/wasSuperseded">
12400.2.4 by Steve Kowalik
Use BeautifulSoup to prettyify the HTML so I can check it. Remove <strong>, as
26
      Superseded
4687.6.3 by Celso Providelo
Sorting publishing-record presentation for ubuntu packages.
27
      <span tal:attributes="title context/datesuperseded/fmt:datetime"
5217.6.1 by Celso Providelo
Fixing bug #157064 (refactoring source & binary publishing history presentation by developers request). The new layout uses expandable-boxes infrastructure as Queue and PPA UI to present extra details about each publication row.
28
            tal:content="context/datesuperseded/fmt:displaydate"/>
4687.6.3 by Celso Providelo
Sorting publishing-record presentation for ubuntu packages.
29
      by <span tal:replace="context/supersededby/title" />
30
    </li>
12484.1.2 by Steve Kowalik
Shift the view.is_source guard to the TAL.
31
    <li tal:content="structure view/recipe_build_details" tal:condition="view/is_source" />
5217.6.1 by Celso Providelo
Fixing bug #157064 (refactoring source & binary publishing history presentation by developers request). The new layout uses expandable-boxes infrastructure as Queue and PPA UI to present extra details about each publication row.
32
    <li tal:condition="context/datepublished">
12400.2.4 by Steve Kowalik
Use BeautifulSoup to prettyify the HTML so I can check it. Remove <strong>, as
33
      Published
5217.6.1 by Celso Providelo
Fixing bug #157064 (refactoring source & binary publishing history presentation by developers request). The new layout uses expandable-boxes infrastructure as Queue and PPA UI to present extra details about each publication row.
34
      <span tal:attributes="title context/datepublished/fmt:datetime"
35
            tal:content="context/datepublished/fmt:displaydate" />
36
    </li>
6149.2.1 by Celso Providelo
Fixing bug 219829 (Presenting the original location for copied packages).
37
    <li tal:condition="view/wasCopied">
12400.2.4 by Steve Kowalik
Use BeautifulSoup to prettyify the HTML so I can check it. Remove <strong>, as
38
      Copied from
6149.2.1 by Celso Providelo
Fixing bug 219829 (Presenting the original location for copied packages).
39
      <tal:source_original_location condition="view/is_source">
6754.1.1 by Julian Edwards
Don't linkify the source PPA in the publishing details for copied sources if the PPA is not viewable by the user.
40
        <tal:define
41
          define="linkify_archive view/linkify_source_archive;
42
                  source context/sourcepackagerelease">
43
          <tal:message
44
            define="archive source/upload_archive;
45
                    series source/upload_distroseries;
46
                    distro series/distribution;
47
                    message string:${distro/name} ${series/name} in "
48
            replace="message" />
49
          <a tal:condition="linkify_archive"
50
             tal:attributes="href source/upload_archive/fmt:url"
7976.2.1 by Celso Providelo
Renaming IArchive.title to IArchive.displayname in preparation to have user-defined titles, bug #340457.
51
             tal:content="source/upload_archive/displayname" />
6754.1.1 by Julian Edwards
Don't linkify the source PPA in the publishing details for copied sources if the PPA is not viewable by the user.
52
          <tal:message
53
            condition="not:linkify_archive"
54
            define="archive source/upload_archive;
7976.2.1 by Celso Providelo
Renaming IArchive.title to IArchive.displayname in preparation to have user-defined titles, bug #340457.
55
                    message string:${archive/displayname}"
6754.1.1 by Julian Edwards
Don't linkify the source PPA in the publishing details for copied sources if the PPA is not viewable by the user.
56
            replace="message" />
57
        </tal:define>
6149.2.1 by Celso Providelo
Fixing bug 219829 (Presenting the original location for copied packages).
58
      </tal:source_original_location>
59
      <tal:binary_build_location condition="view/is_binary">
60
        <tal:message
61
          define="build context/binarypackagerelease/build;
62
                  archive build/archive;
6149.2.2 by Celso Providelo
Tracing binaries copied from another pocket.
63
                  pocket build/pocket;
7675.687.114 by Michael Nelson
xx-distributionsourcepackagerelease-pages.txt and xx-distroarchseries-binpackages.txt.
64
                  arch build/distro_arch_series;
6149.2.2 by Celso Providelo
Tracing binaries copied from another pocket.
65
                  series arch/distroseries;
66
                  distro series/distribution;
7976.2.1 by Celso Providelo
Renaming IArchive.title to IArchive.displayname in preparation to have user-defined titles, bug #340457.
67
                  message string:${distro/name} ${series/name}-${pocket/name/fmt:lower} ${arch/architecturetag} in ${archive/displayname}"
6149.2.1 by Celso Providelo
Fixing bug 219829 (Presenting the original location for copied packages).
68
          replace="message" />
69
      </tal:binary_build_location>
70
    </li>
71
5127.2.1 by Curtis Hovey
Fixed namespaces and bad markup in o.* and p.*
72
  </ul>
5956.13.5 by Celso Providelo
applying review comments, r=kiko.
73
6732.5.1 by Julian Edwards
Stop the publishing history template from displaying a misleading message for
74
  <tal:ppa condition="context/archive/is_ppa">
75
    <p tal:condition="view/isRemoved">
76
      Removed files can still be downloaded from the Librarian; see below.
77
    </p>
78
  </tal:ppa>
5956.13.5 by Celso Providelo
applying review comments, r=kiko.
79
5127.2.1 by Curtis Hovey
Fixed namespaces and bad markup in o.* and p.*
80
</tal:root>