X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fshow_deferred.py;h=2bb643d151508bac7b20577d1f0310c51eaeba36;hb=a286482465b9952a951ba8d4954a4ccfed4b3fef;hp=6942efbd33a54e179b5c45835007e11dedd40b04;hpb=2c639c40c65966711c82d46a6f4ee8739e819aad;p=dak.git diff --git a/dak/show_deferred.py b/dak/show_deferred.py index 6942efbd..2bb643d1 100755 --- a/dak/show_deferred.py +++ b/dak/show_deferred.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# based on queue-report +""" Overview of the DEFERRED queue, based on queue-report """ # Copyright (C) 2001, 2002, 2003, 2005, 2006 James Troup # Copyright (C) 2008 Thomas Viehmann @@ -22,12 +22,10 @@ import sys, os, re, time import apt_pkg -import tempfile from debian_bundle import deb822 -from daklib import database -from daklib import queue +from daklib.dbconn import * from daklib import utils -from daklib.regexes import re_htmlescaping, html_escaping +from daklib.regexes import re_html_escaping, html_escaping ################################################################################ ### work around bug #487902 in debian-python 0.1.10 @@ -103,7 +101,6 @@ def table_header(): Closes """ - return res def table_footer(): return '

non-NEW uploads are available, see the UploadQueue-README for more information.


\n' @@ -135,13 +132,15 @@ def get_upload_data(changesfn): uploader = re.sub(r'^\s*(\S.*)\s+<.*>',r'\1',uploader) if Cnf.has_key("Show-Deferred::LinkPath"): isnew = 0 - suites = database.get_suites(achanges['source'],src=1) + suites = get_suites_source_in(achanges['source']) if 'unstable' not in suites and 'experimental' not in suites: isnew = 1 + for b in achanges['binary'].split(): - suites = database.get_suites(b) + suites = get_suites_binary_in(b) if 'unstable' not in suites and 'experimental' not in suites: isnew = 1 + if not isnew: # we don't link .changes because we don't want other people to # upload it with the existing signature. @@ -201,7 +200,7 @@ def usage (exit_code=0): sys.exit(exit_code) def init(): - global Cnf, Options, Upload, projectB + global Cnf, Options Cnf = utils.get_conf() Arguments = [('h',"help","Show-Deferred::Options::Help"), ("p","link-path","Show-Deferred::LinkPath","HasArg"), @@ -218,8 +217,10 @@ def init(): Options = Cnf.SubTree("Show-Deferred::Options") if Options["help"]: usage() - Upload = queue.Upload(Cnf) - projectB = Upload.projectB + + # Initialise database connection + DBConn() + return args def main():