Merge lp:~mbp/launchpad/676825-not-recently-changed into lp:launchpad

Proposed by Martin Pool
Status: Merged
Approved by: Curtis Hovey
Approved revision: no longer in the source branch.
Merged at revision: 13444
Proposed branch: lp:~mbp/launchpad/676825-not-recently-changed
Merge into: lp:launchpad
Diff against target: 39 lines (+6/-6)
2 files modified
lib/lp/bugs/stories/bugtask-searches/xx-sort-orders.txt (+2/-2)
lib/lp/bugs/templates/bugtarget-macros-search.pt (+4/-4)
To merge this branch: bzr merge lp:~mbp/launchpad/676825-not-recently-changed
Reviewer Review Type Date Requested Status
Curtis Hovey (community) code Approve
Review via email: mp+66463@code.launchpad.net

Commit message

[r=sinzui][bug=676825] Sort order is called 'not recently modified' not 'most neglected'

Description of the change

This has another go at bug 676825, so that sorting bugs with the least recently changed bugs first will be shown as "not recently changed."

I know this is a bit bikesheddy but calling them "neglected" really irks me, partly because it plays into a misconception that developers are being mean or lazy by not fixing every bug immediately.

You could pedantically argue that on a newly created project it will show bugs possibly still changed recently in absolute terms, but it's the best wording we could think of so far.

It also puts it below "recently changed" which I think is generally what you want.

screenshot https://bugs.launchpad.net/launchpad/+bug/676825/+attachment/2185308/+files/notrecently

To post a comment you must log in.
Revision history for this message
Curtis Hovey (sinzui) wrote :

Thank you very much

review: Approve (code)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/bugs/stories/bugtask-searches/xx-sort-orders.txt'
2--- lib/lp/bugs/stories/bugtask-searches/xx-sort-orders.txt 2011-06-27 15:14:46 +0000
3+++ lib/lp/bugs/stories/bugtask-searches/xx-sort-orders.txt 2011-07-01 21:09:57 +0000
4@@ -59,10 +59,10 @@
5 1 Firefox does not support SVG
6 mozilla-firefox Low Confirmed
7
8-By most neglected:
9+By not recently changed:
10
11 >>> anon_browser.getControl(name="orderby").displayValue = [
12- ... "most neglected"]
13+ ... "not recently changed"]
14 >>> anon_browser.getControl('Search', index=0).click()
15 >>> print_bugtasks(anon_browser.contents)
16 1 Firefox does not support SVG
17
18=== modified file 'lib/lp/bugs/templates/bugtarget-macros-search.pt'
19--- lib/lp/bugs/templates/bugtarget-macros-search.pt 2011-06-27 14:41:18 +0000
20+++ lib/lp/bugs/templates/bugtarget-macros-search.pt 2011-07-01 21:09:57 +0000
21@@ -51,14 +51,14 @@
22 tal:attributes="selected python:orderby == '-datecreated'"
23 >newest first</option>
24 <option
25- value="date_last_updated"
26- tal:attributes="selected python:orderby == 'date_last_updated'"
27- >most neglected</option>
28- <option
29 value="-date_last_updated"
30 tal:attributes="selected python:orderby == '-date_last_updated'"
31 >most recently changed</option>
32 <option
33+ value="date_last_updated"
34+ tal:attributes="selected python:orderby == 'date_last_updated'"
35+ >not recently changed</option>
36+ <option
37 value="-number_of_duplicates"
38 tal:attributes="selected python:orderby == '-number_of_duplicates'"
39 >by number of duplicates</option>