~launchpad-pqm/launchpad/devel

5127.2.1 by Curtis Hovey
Fixed namespaces and bad markup in o.* and p.*
1
<html
2
  xmlns="http://www.w3.org/1999/xhtml"
3
  xmlns:tal="http://xml.zope.org/namespaces/tal"
4
  xmlns:metal="http://xml.zope.org/namespaces/metal"
5
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
6
  xml:lang="en"
7
  lang="en"
8
  dir="ltr"
9375.1.1 by Tom Berger
convert person-packagebugs-overview
9
  metal:use-macro="view/macro:page/main_side"
5127.2.1 by Curtis Hovey
Fixed namespaces and bad markup in o.* and p.*
10
  i18n:domain="launchpad"
3119.1.1 by Matthew Paul Thomas
converted most templates
11
>
12
  <body>
3470.1.1 by Diogo Matsubara
Fix https://launchpad.net/products/malone/+bug/33978 (Advanced search page doesn't do any input validation)
13
14
  <div metal:fill-slot="head_epilogue">
15
    <style type="text/css">
16
        .section-header {
17
          padding-left: 3px;
18
          color: #828282;
19
          border: 1px solid #cfcfcf;
20
          background-color: #E0E0E0;
21
          text-align: left;
22
        }
23
24
        .section {
25
          padding-top: 4px;
26
          border-style: solid;
27
          border-color: #cfcfcf;
28
          border-width: 0px 1px 0px 1px;
29
        }
30
31
        label {
32
          font-weight: normal;
33
        }
34
    </style>
35
  </div>
36
9375.1.1 by Tom Berger
convert person-packagebugs-overview
37
  <metal:side fill-slot="side">
38
    <tal:menu replace="structure context/@@+global-actions" />
39
  </metal:side>
40
3015.1.2 by Brad Bollenbach
add missing template files
41
  <div metal:fill-slot="main">
3470.1.1 by Diogo Matsubara
Fix https://launchpad.net/products/malone/+bug/33978 (Advanced search page doesn't do any input validation)
42
      <tal:do_not_show_advanced_form
43
        condition="not: view/shouldShowAdvancedForm">
3015.1.10 by Brad Bollenbach
checkpoint
44
      <strong>
3015.1.19 by Brad Bollenbach
reply to code review
45
        <small tal:content="view/current_package/displayname">
3015.1.10 by Brad Bollenbach
checkpoint
46
          mozilla-firefox (Ubuntu)
3015.1.4 by Brad Bollenbach
checkpoint
47
        </small>
3015.1.10 by Brad Bollenbach
checkpoint
48
      </strong>
3015.1.37 by Brad Bollenbach
move the new table listing into a view and convert +packagebugs-search and +assignedbugs to use it
49
      <div tal:define="batch_navigator view/search">
6087.7.2 by Tom Berger
convert bug contact to bug supervisor in template and browser code
50
        <div tal:define="advanced_search_url view/getBugSubscriberPackageAdvancedSearchURL">
3480.1.1 by Brad Bollenbach
recreate branch to workaround bzr perf issues
51
          <div metal:use-macro="context/@@+bugtarget-macros-search/simple-search-form">
52
            <div metal:fill-slot="extra-search-widgets">
4584.2.1 by Graham Binns
Refactored BugTaskSearchListingView to inherit from LaunchpadFormView rather than LaunchpadView. Updated ZCML, templates and descendant classes accordingly.
53
              <tal:widget content="structure view/widgets/distribution/hidden" />
54
              <tal:widget content="structure view/widgets/sourcepackagename/hidden" />
3480.1.1 by Brad Bollenbach
recreate branch to workaround bzr perf issues
55
            </div>
3249.2.1 by Brad Bollenbach
add the sort widget into the new bug listing format
56
          </div>
3480.1.1 by Brad Bollenbach
recreate branch to workaround bzr perf issues
57
        </div>
58
        <br />
3015.1.37 by Brad Bollenbach
move the new table listing into a view and convert +packagebugs-search and +assignedbugs to use it
59
        <tal:buglisting content="structure batch_navigator/@@+table-view" />
3470.1.1 by Diogo Matsubara
Fix https://launchpad.net/products/malone/+bug/33978 (Advanced search page doesn't do any input validation)
60
      </div>
61
      </tal:do_not_show_advanced_form>
62
63
      <tal:show_advanced condition="view/shouldShowAdvancedForm">
64
        <metal:advanced_form
65
          use-macro="context/@@+bugtask-macros-tableview/advanced_search_form" />
66
      </tal:show_advanced>
3015.1.2 by Brad Bollenbach
add missing template files
67
  </div>
68
</body>
69
</html>