X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=dohtml;h=95d786fabc3c9b95b7ee814da5a0319a51e3d2ea;hp=7b910df77c97c13f4f5f7d1e0d44ece0fe12a7fe;hb=62fac5ff5f87cd4844d2236dfa7c2a6d7f924e29;hpb=d58d0b081c8bc059a905f7eb9c7dd6c38cd8e2ca diff --git a/dohtml b/dohtml index 7b910df..95d786f 100755 --- a/dohtml +++ b/dohtml @@ -1,11 +1,46 @@ #! /bin/sh -htmldir=/home/sesse/bugscan/www +htmldir=/org/bugs.debian.org/www/bugscan + +html_header() { + local title="$1" # Title of page + local date="$2" # Date + + cat < + + + + $title, $date + + +

$title

+ +

$date

+ +EOF +} + +html_page_creation_notice() { + cat < +This page is automatically generated.
+Please contact +owner@bugs.debian.org for comments. +EOF +} + +html_closing_tags() { + cat < + +EOF +} realmakepage() { local filter="$1" # Distributions to list local title="$2" # Title of page - local date="$3" # Date + local date_time="$3" # Date local worry="$4" # Worry about testing only? local descr # Description of filter @@ -18,20 +53,13 @@ realmakepage() { filter="$filter $worry" - cat < - - - - $title, $date - - -

$title

+ html_header "$title" "$date_time" -

$date

+ cat <for distribution(s): $descr

+

You might also want to check out UDD instead of this page.


@@ -51,42 +79,31 @@ tags:

  • R: unreproducible
  • S: security
  • U: upstream
  • -
  • I: etch-ignore
  • +
  • I: wheezy-ignore or jessie-ignore
  • The second set of tags indicate what releases a bug applies to: -O for oldstable (woody), S for stable (sarge), -T for testing (etch), U for unstable (sid) or E for experimental. X -indicates that the package is not in testing. +O for oldstable (squeeze), S for stable (wheezy), T for testing (jessie), +U for unstable (sid) or E for experimental.

    EOF ./bugreport -H -l $filter - cat < -This page is automatically generated.
    -Please contact -owner@bugs.debian.org for comments. - - -EOF + html_page_creation_notice + + html_closing_tags } makemainpage() { - cat < - - - - $title, $time - - -

    $title

    + local title="$1" # Title of page + local date_time="$2" # Date -

    $time

    + header "$title" "$date_time" + + cat < EOF @@ -96,4 +113,81 @@ EOF cat < -
    Graph of RC bugs
    +
    Graph of RC bugs
    + +

    Other graphs: +

    +

    + +

    The red line graphs all bugs with release-critical severities; the green +line graphs the number of bugs that are actually a concern for the next +release (excluding ignored bugs, bugs on packages not in testing, and bugs +whose tags and/or versioning information indicate that they don't apply to +testing), and the blue line graphs the number of bugs that are a concern +for the current stable release.

    + +

    Recent changes

    +EOF + + ./bugdiff -Hncs status-old status + + cat <Detailed lists of RC bug reports: + + +

    +EOF + + html_page_creation_notice + + cat <debian-bugs-rc +mailing list. + +EOF + + html_closing_tags +} + +makepage() { + if [ ! -d "`dirname $3`" ]; then mkdir -p "`dirname $3`"; fi + realmakepage "$1" "$2" "$4" "$5" > $3.new + mv -f $3.new $3 +} + +date_time=$(date -u -d '@'$(($(stat -c '%Y' status) / 3600 * 3600))) +olddate_time=$(date -u -d '@'$(($(stat -c '%Y' status-old) / 3600 * 3600))) +title="Release-critical bugs status" + +makepage "debian" "$title" "$htmldir/debian/all.html" "$date_time" +makepage "debian/main" "$title" $htmldir/debian/main.html "$date_time" +makepage "debian/contrib" "$title" $htmldir/debian/contrib.html "$date_time" +makepage "debian/non-free" "$title" $htmldir/debian/non-free.html "$date_time" +makepage "debian/source" "$title" $htmldir/debian/source.html "$date_time" + +makepage "" "$title" $htmldir/other/all.html "$date_time" +makepage "" "$title" "$htmldir/other/stable.html" "$date_time" "-b" +makepage "" "$title" "$htmldir/other/testing.html" "$date_time" "-t" +makepage "" "$title" "$htmldir/other/pseudo.html" "$date_time" "pseudo" + +makemainpage "$title" "$date_time" > $htmldir/index.html.new +mv -f $htmldir/index.html.new $htmldir/index.html +