~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/javascript/branch.bugspeclinks.js

  • Committer: Benji York
  • Date: 2011-08-02 21:12:40 UTC
  • mto: This revision was merged to the branch mainline in revision 13591.
  • Revision ID: benji.york@canonical.com-20110802211240-0snichi3h5x732yn
incorporate review suggestion of including five digit runs in guesses

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    var chunk, i;
30
30
    for (i=0; i<chunks.length; i++) {
31
31
        chunk = chunks[i];
32
 
        // Bugs with fewer than 6 digits aren't being created any more (by
33
 
        // Canonical's LP at least), so ignore runs of fewer than 6 digits in
34
 
        // the branch name.
35
 
        if (chunk.length < 6) {
 
32
        // Bugs with fewer than six digits aren't being created any more (by
 
33
        // Canonical's LP at least), but there are lots of open five digit
 
34
        // bugs so ignore runs of fewer than five digits in the branch name.
 
35
        if (chunk.length < 5) {
36
36
            break;
37
37
        }
38
38
        // Bug IDs don't start with a zero.