Merge lp:~allanlesage/helipad/ci-proper-titles into lp:helipad/ci

Proposed by Chris Johnston
Status: Merged
Approved by: Chris Johnston
Approved revision: 20
Merged at revision: 19
Proposed branch: lp:~allanlesage/helipad/ci-proper-titles
Merge into: lp:helipad/ci
Diff against target: 181 lines (+6/-114)
6 files modified
templates/ci/branch_list.html (+0/-72)
templates/ci/daily_release_overview.html (+3/-3)
templates/ci/job.html (+1/-1)
templates/ci/main.html (+0/-36)
templates/ci/project_detail.html (+1/-1)
templates/ci/project_list.html (+1/-1)
To merge this branch: bzr merge lp:~allanlesage/helipad/ci-proper-titles
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Chris Johnston Approve
Review via email: mp+176465@code.launchpad.net

This proposal supersedes a proposal from 2013-07-23.

Commit message

Proper titles for ci pages.

Description of the change

Amend titles for DailyRelease and Upstream Merger templates, also remove some crufty templates we weren't using.

To post a comment you must log in.
Revision history for this message
Chris Johnston (cjohnston) wrote : Posted in a previous version of this proposal

L220 - remove 'Jenkins' please
L401 - stack_detail.html isn't used anymore IIRC
s/DailyRelease/Daily release/ :-)

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

PASSED: Continuous integration, rev:19
http://s-jenkins:8080/job/helipad-ci-ci/34/
Executed test runs:

Click here to trigger a rebuild:
http://s-jenkins:8080/job/helipad-ci-ci/34/rebuild

review: Approve (continuous-integration)
Revision history for this message
Chris Johnston (cjohnston) :
review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== removed file 'templates/ci/branch_list.html'
2--- templates/ci/branch_list.html 2013-07-22 17:41:38 +0000
3+++ templates/ci/branch_list.html 1970-01-01 00:00:00 +0000
4@@ -1,72 +0,0 @@
5-{% extends "layout.html" %}
6-{% load dashboard_extras %}
7-
8-{% block page_name %}PS-QA Dashboard{% endblock %}
9-
10-{% block content %}
11-<script type='text/javascript'>
12- //<![CDATA[
13- $(document).ready(function() {
14- $(".data-table").dataTable({
15- "bPaginate": false,
16- "aaSorting": [[0, 'desc']]
17- });
18- });
19- //]]>
20-</script>
21-<div class='grid_15'>
22- <h2>
23- Branches
24- </h2>
25-</div>
26-<div class='grid_2'>
27- <h3 class='nav-title'>
28- BRANCH FILTER
29- </h3>
30- <ul class='left_nav'>
31- <li>
32- <a href='{% url branches %}'>All</a>
33- </li>
34- </ul>
35-</div>
36-<div class='grid_13'>
37- <table class='data-table basic wide'>
38- <thead>
39- <tr>
40- <th>Branch</th>
41- <th>Revno</th>
42- <th>Date</th>
43- <th>Series</th>
44- <th>Package</th>
45- <th>Upload Date</th>
46- </tr>
47- </thead>
48- <tbody>
49- {% for branch in branch_list %}
50- <tr>
51- <td>
52- <a href='job/{{ job.name }}'>
53- {{ branch.name }}
54- </a>
55- </td>
56- <td class='num'>
57- {{ branch.revno }}
58- </td>
59- <td>
60- {{ branch.rev_date }}
61- </td>
62- <td>
63- {{ branch.series }}
64- </td>
65- <td>
66- {{ branch.package }}
67- </td>
68- <td>
69- {{ branch.package_date }}
70- </td>
71- </tr>
72- {% endfor %}
73- </tbody>
74- </table>
75-</div>
76-{% endblock %}
77
78=== modified file 'templates/ci/daily_release_overview.html'
79--- templates/ci/daily_release_overview.html 2013-07-22 17:41:38 +0000
80+++ templates/ci/daily_release_overview.html 2013-07-23 18:59:39 +0000
81@@ -3,7 +3,7 @@
82 {% load ci_extras %}
83 {% load percentage %}
84
85-{% block page_name %}PS-QA Dashboard{% endblock %}
86+{% block page_name %}Daily release status for {% if show_filter %}{{ show_filter }}{% else %}all stacks{% endif %}{% endblock %}
87
88 {% block content %}
89 <script type='text/javascript'>
90@@ -19,9 +19,9 @@
91 <div class='grid_15'>
92 <h2>
93 {% if show_filter %}
94- DailyRelease status (stack: {{ show_filter }})
95+ Daily release status (stack: {{ show_filter }})
96 {% else %}
97- DailyRelease status (all stacks)
98+ Daily release status (all stacks)
99 {% endif %}
100 </h2>
101 </div>
102
103=== modified file 'templates/ci/job.html'
104--- templates/ci/job.html 2013-07-22 17:41:38 +0000
105+++ templates/ci/job.html 2013-07-23 18:59:39 +0000
106@@ -1,7 +1,7 @@
107 {% extends "layout.html" %}
108 {% load dashboard_extras %}
109
110-{% block page_name %}PS-QA Dashboard{% endblock %}
111+{% block page_name %}Upstream merger builds for {{ job.name }}{% endblock %}
112
113 {% block content %}
114 <script type='text/javascript'>
115
116=== removed file 'templates/ci/main.html'
117--- templates/ci/main.html 2013-07-22 17:41:38 +0000
118+++ templates/ci/main.html 1970-01-01 00:00:00 +0000
119@@ -1,36 +0,0 @@
120-{% extends "layout.html" %}
121-{% load dashboard_extras %}
122-
123-{% block page_name %}PS-QA Dashboard{% endblock %}
124-
125-{% block content %}
126-<script type='text/javascript'>
127- //<![CDATA[
128- $(document).ready(function() {
129- $(".data-table").dataTable({
130- "bPaginate": false,
131- "aaSorting": [[0, 'desc']]
132- });
133- });
134- //]]>
135-</script>
136-<div class='grid_15'>
137- <ul>
138- <li>
139- <h2>
140- <a href='{% url stacks %}?show=head'>Stacks</a>
141- </h2>
142- </li>
143- <li>
144- <h2>
145- <a href='{% url projects %}'>Projects</a>
146- </h2>
147- </li>
148- <li>
149- <h2>
150- <a href='{% url integration %}'>Daily Integration [TBD]</a>
151- </h2>
152- </li>
153- </ul>
154-</div>
155-{% endblock %}
156
157=== modified file 'templates/ci/project_detail.html'
158--- templates/ci/project_detail.html 2013-07-23 15:34:08 +0000
159+++ templates/ci/project_detail.html 2013-07-23 18:59:39 +0000
160@@ -9,7 +9,7 @@
161 <script type="text/javascript" src="//6df403e3d98e2ac67ac2-180150c581869d2c4c18db9c9e3179c4.r40.cf1.rackcdn.com/nv.d3.js"></script>
162 {% endblock extra_headers %}
163
164-{% block page_name %}PS-QA Dashboard{% endblock %}
165+{% block page_name %}Upstream merger results for {{ project.launchpad_project.name }}{% endblock %}
166
167 {% block content %}
168 <style>
169
170=== modified file 'templates/ci/project_list.html'
171--- templates/ci/project_list.html 2013-07-22 20:36:17 +0000
172+++ templates/ci/project_list.html 2013-07-23 18:59:39 +0000
173@@ -1,7 +1,7 @@
174 {% extends "ci/ci_layout.html" %}
175 {% load dashboard_extras percentage staticfiles %}
176
177-{% block page_name %}PS-QA Dashboard{% endblock %}
178+{% block page_name %}Upstream merger results for all projects{% endblock %}
179
180 {% block extra_headers %}
181 <link href='{% static "ci/css/ci_style.css" %}' rel='stylesheet' type='text/css' />

Subscribers

People subscribed via source and target branches

to all changes: