Closed
Bug 767491
Opened 13 years ago
Closed 13 years ago
[shipping] sign-off view should show warning count
Categories
(Webtools Graveyard :: Elmo, defect, P1)
Tracking
(Not tracked)
RESOLVED
FIXED
2.3
People
(Reporter: Pike, Assigned: Pike)
Details
Attachments
(1 file)
5.59 KB,
patch
|
peterbe
:
review+
|
Details | Diff | Splinter Review |
The sign-off view should show the warning count in builds, as they can be fatal.
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → l10n
Assignee | ||
Comment 1•13 years ago
|
||
run tests, too. html5lib is part of vendor/lib, so I used that to write meaningful tests, in particular that's nice for the data- stuff.
Attachment #641001 -
Flags: review?(peterbe)
Comment 2•13 years ago
|
||
Comment on attachment 641001 [details] [diff] [review]
show the warning, and add tests for showrun to begin with
Review of attachment 641001 [details] [diff] [review]:
-----------------------------------------------------------------
::: apps/l10nstats/templatetags/run_filters.py
@@ +36,4 @@
> cmp_segs.append('%d error(s)' % run.errors)
> if missing:
> cmp_segs.append('%d missing' % missing)
> + if run.warnings:
Couldn't all of these be:
if run.warnings == 1:
cmp_segs.append('1 warning')
elif run.warnings:
cmp_segs.append('%d warnings' % run.warnings)
Attachment #641001 -
Flags: review?(peterbe) → review+
Comment 3•13 years ago
|
||
Commit pushed to develop at https://github.com/mozilla/elmo
https://github.com/mozilla/elmo/commit/34cd1436bf48681c9c20a852f39aa0c28f5a727c
bug 767491, show warnings in signoff view, r=peterbe
Assignee | ||
Comment 4•13 years ago
|
||
Landed with a hacked-in plurals form, and deployed on -dev-.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → 2.3
Version: Trunk → 2.3
Updated•5 years ago
|
Product: Webtools → Webtools Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•