[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][lintian/lintian][master] Make SVG graphs more understandable by adding the tag name.



Title: GitLab

Nilesh Patra pushed to branch master at lintian / lintian

Commits:

  • ff497f5b
    by Thompson, Brian at 2023-09-22T10:18:12+05:30
    Make SVG graphs more understandable by adding the tag name.
    
    Fix for #858039
    

1 changed file:

Changes:

  • reporting/graphs/tags.gpi
    ... ... @@ -29,7 +29,7 @@ set yrange [ 0 : ]
    29 29
     
    
    30 30
     set output sprintf("%s/tags/%s.svg", graph_dir, tag)
    
    31 31
     plot sprintf("%s/tags/%s.dat", history_dir, tag) \
    
    32
    -    u 1:2 w filledcurve x1 ls 20 t 'Tags', \
    
    33
    - '' u 1:4 w filledcurve x1 ls 21 t 'Packages', \
    
    34
    - '' u 1:3 w filledcurve x1 ls 22 t 'Overridden'
    
    32
    +    u 1:2 w filledcurve x1 ls 20 t sprintf("Tag %s emitted", tag), \
    
    33
    + '' u 1:4 w filledcurve x1 ls 21 t sprintf("Packages which emitted %s", tag), \
    
    34
    + '' u 1:3 w filledcurve x1 ls 22 t sprintf("Tag %s overridden", tag)
    
    35 35
     


  • Reply to: