~launchpad-pqm/launchpad/devel

9186.2.1 by Gavin Panella
First mechanical changes to move towards the 3.0 layout.
1
<malone-index
4939.2.16 by Curtis Hovey
Added namespaces to malone templates and fixed markup.
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"
9186.2.7 by Gavin Panella
Remove the 'Report a bug' link from the bugs homepage.
6
  metal:use-macro="view/macro:page/main_only"
9186.2.1 by Gavin Panella
First mechanical changes to move towards the 3.0 layout.
7
  i18n:domain="malone">
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
8
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
9
  <h1 metal:fill-slot="heading">Bug tracking</h1>
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
10
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
11
  <div metal:fill-slot="main">
9186.2.3 by Gavin Panella
Reindent and tidy.
12
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
13
    <div class="top-portlet">
9186.2.3 by Gavin Panella
Reindent and tidy.
14
      <p class="error message"
15
         tal:condition="view/error_message"
16
         tal:content="view/error_message">
17
        Error message.
18
      </p>
13119.2.6 by Curtis Hovey
Added a test to verify that the search all bugs form is rendered.
19
      <form id="search-all-bugs" class="central" action="/bugs/+bugs" method="get">
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
20
        <table>
21
          <tbody>
22
            <tr>
23
              <td style="text-align: right;">
9186.2.3 by Gavin Panella
Reindent and tidy.
24
                <input tal:replace="structure view/widgets/searchtext" />
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
25
              </td>
26
              <td>
13119.2.6 by Curtis Hovey
Added a test to verify that the search all bugs form is rendered.
27
                <input id="field.actions.search" type="submit"
28
                  name="search" value="Search Bug Reports" />
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
29
              </td>
30
            </tr>
13119.2.2 by Curtis Hovey
Just call view/widgets/scope to render the whole widget.
31
            <tr>
32
              <td colspan="2"
13119.2.1 by Curtis Hovey
Updated templates to use the call the ProjectScopeWidget.target_widget in the
33
                tal:attributes="class view/target_css_class">
13119.2.2 by Curtis Hovey
Just call view/widgets/scope to render the whole widget.
34
                <input tal:replace="structure view/widgets/scope" />
35
                <div class="message"
36
                  tal:condition="view/widgets/scope/error"
37
                  tal:content="view/widgets/scope/error">
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
38
                  Error message
13119.2.2 by Curtis Hovey
Just call view/widgets/scope to render the whole widget.
39
                </div>
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
40
              </td>
41
            </tr>
42
          </tbody>
43
        </table>
44
        <script type="text/javascript"
45
                tal:define="script view/focusedElementScript"
46
                tal:condition="script"
13119.2.2 by Curtis Hovey
Just call view/widgets/scope to render the whole widget.
47
                tal:content="structure script" ></script>
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
48
      </form>
49
      <p id="application-summary">
9186.2.3 by Gavin Panella
Reindent and tidy.
50
        Launchpad&rsquo;s bug tracker helps software teams to
51
        collaborate on bug reports and fixes.
9186.2.7 by Gavin Panella
Remove the 'Report a bug' link from the bugs homepage.
52
        (<a href="https://help.launchpad.net/Bugs">Read our guide</a> or
53
         <a href="/+tour">take a tour</a>)
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
54
      </p>
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
55
    </div>
56
11666.5.7 by Paul Hummer
Reverted yui- to yui3-
57
    <div class="yui-g">
58
      <div class="first yui-u">
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
59
        <div class="portlet">
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
60
          <h2>Recently reported</h2>
12384.1.6 by Curtis Hovey
Updated bug/@@+listing-detailed to UI 3.0.
61
          <ul id="reported-bugs">
62
            <li tal:repeat="bug context/latest_bugs"
63
                tal:replace="structure bug/@@+listing-detailed" />
64
          </ul>
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
65
        </div>
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
66
      </div>
11666.5.7 by Paul Hummer
Reverted yui- to yui3-
67
      <div class="yui-u">
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
68
        <div class="portlet">
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
69
          <h2>Recently fixed</h2>
12384.1.6 by Curtis Hovey
Updated bug/@@+listing-detailed to UI 3.0.
70
          <ul id="fixed-bugs">
71
            <li tal:repeat="fixed_bug view/getMostRecentlyFixedBugs"
72
                tal:replace="structure fixed_bug/@@+listing-detailed" />
73
          </ul>
3691.436.74 by Mark Shuttleworth
Display product stats in the app home page style
74
        </div>
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
75
      </div>
76
    </div>
77
11666.5.7 by Paul Hummer
Reverted yui- to yui3-
78
    <div class="yui-g">
79
      <div class="first yui-u">
9186.2.14 by Gavin Panella
Add a related pages menu to the page, and improve the very basic index page test.
80
        <div tal:replace="structure context/@@+portlet-stats" />
81
      </div>
11666.5.7 by Paul Hummer
Reverted yui- to yui3-
82
      <div class="yui-u">
9186.2.14 by Gavin Panella
Add a related pages menu to the page, and improve the very basic index page test.
83
        <tal:menu replace="structure view/@@+related-pages" />
9186.2.2 by Gavin Panella
Convert to YUI rows and columns.
84
      </div>
85
    </div>
86
9186.2.3 by Gavin Panella
Reindent and tidy.
87
  </div>
9186.2.1 by Gavin Panella
First mechanical changes to move towards the 3.0 layout.
88
89
</malone-index>