3 """ Output html for packages in NEW """
4 # Copyright (C) 2007, 2009 Joerg Jaspert <joerg@debian.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 ################################################################################
22 # <elmo> I'm James Troup, long term source of all evil in Debian. you may
23 # know me from such debian-devel-announce gems as "Serious
26 ################################################################################
31 import examine_package
33 from daklib.dbconn import *
34 from daklib.queue import determine_new, check_valid, Upload, get_policy_queue
35 from daklib import utils
36 from daklib.regexes import re_source_ext
37 from daklib.config import Config
38 from daklib import daklog
39 from daklib.changesutils import *
40 from daklib.threadpool import ThreadPool
48 ################################################################################
49 ################################################################################
50 ################################################################################
52 def html_header(name, filestoexamine):
53 if name.endswith('.changes'):
54 name = ' '.join(name.split('_')[:2])
55 result = """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
56 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
58 <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8"
60 <title>%(name)s - Debian NEW package overview</title>
61 <link type="text/css" rel="stylesheet" href="/style.css" />
62 <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
63 <script type="text/javascript">
66 function toggle(id, initial, display) {
67 var o = document.getElementById(id);
68 toggleObj(o, initial, display);
70 function show(id, display) {
71 var o = document.getElementById(id);
72 o.style.display = 'table-row-group';
74 function toggleObj(o, initial, display) {
76 o.style.display = initial;
77 if(o.style.display == display) {
78 o.style.display = "none";
80 o.style.display = display;
87 <body id="NEW-details-page">
89 <a href="http://www.debian.org/">
90 <img src="http://www.debian.org/logos/openlogo-nd-50.png"
91 alt="debian logo" /></a>
92 <a href="http://www.debian.org/">
93 <img src="http://www.debian.org/Pics/debian.png"
94 alt="Debian Project" /></a>
97 <img src="http://www.debian.org/Pics/red-upperleft.png"
98 id="red-upperleft" alt="corner image"/>
99 <img src="http://www.debian.org/Pics/red-lowerleft.png"
100 id="red-lowerleft" alt="corner image"/>
101 <img src="http://www.debian.org/Pics/red-upperright.png"
102 id="red-upperright" alt="corner image"/>
103 <img src="http://www.debian.org/Pics/red-lowerright.png"
104 id="red-lowerright" alt="corner image"/>
106 Debian NEW package overview for %(name)s
112 # we assume only one source (.dsc) per changes here
115 <p class="title">Navigation</p>
116 <p><a href="#changes" onclick="show('changes-body')">.changes</a></p>
117 <p><a href="#dsc" onclick="show('dsc-body')">.dsc</a></p>
118 <p><a href="#source-lintian" onclick="show('source-lintian-body')">source lintian</a></p>
121 for fn in filter(lambda x: x.endswith('.deb') or x.endswith('.udeb'),filestoexamine):
122 packagename = fn.split('_')[0]
124 <p class="subtitle">%(pkg)s</p>
125 <p><a href="#binary-%(pkg)s-control" onclick="show('binary-%(pkg)s-control-body')">control file</a></p>
126 <p><a href="#binary-%(pkg)s-lintian" onclick="show('binary-%(pkg)s-lintian-body')">binary lintian</a></p>
127 <p><a href="#binary-%(pkg)s-contents" onclick="show('binary-%(pkg)s-contents-body')">.deb contents</a></p>
128 <p><a href="#binary-%(pkg)s-copyright" onclick="show('binary-%(pkg)s-copyright-body')">copyright</a></p>
129 <p><a href="#binary-%(pkg)s-file-listing" onclick="show('binary-%(pkg)s-file-listing-body')">file listing</a></p>
131 """%{"pkg":packagename}
136 result = """ <p class="validate">Timestamp: %s (UTC)</p>
137 """% (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime()))
138 result += """ <p><a href="http://validator.w3.org/check?uri=referer">
139 <img src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"
140 style="border: none; height: 31px; width: 88px" /></a>
141 <a href="http://jigsaw.w3.org/css-validator/check/referer">
142 <img src="http://jigsaw.w3.org/css-validator/images/vcss"
143 alt="Valid CSS!" style="border: none; height: 31px; width: 88px" /></a>
150 ################################################################################
153 def do_pkg(changes_file):
154 session = DBConn().session()
156 u.pkg.changes_file = changes_file
157 (u.pkg.changes["fingerprint"], rejects) = utils.check_signature(changes_file)
158 u.load_changes(changes_file)
159 new_queue = get_policy_queue('new', session );
160 u.pkg.directory = new_queue.path
162 origchanges = os.path.abspath(u.pkg.changes_file)
164 changes = u.pkg.changes
166 for deb_filename, f in files.items():
167 if deb_filename.endswith(".udeb") or deb_filename.endswith(".deb"):
168 u.binary_file_checks(deb_filename, session)
169 u.check_binary_against_db(deb_filename, session)
171 u.source_file_checks(deb_filename, session)
172 u.check_source_against_db(deb_filename, session)
173 u.pkg.changes["suite"] = u.pkg.changes["distribution"]
175 new = determine_new(u.pkg.changes, files, 0, session)
177 htmlname = changes["source"] + "_" + changes["version"] + ".html"
178 sources.add(htmlname)
179 # do not generate html output if that source/version already has one.
180 if not os.path.exists(os.path.join(cnf["Show-New::HTMLPath"],htmlname)):
181 outfile = open(os.path.join(cnf["Show-New::HTMLPath"],htmlname),"w")
184 for pkg in new.keys():
185 for fn in new[pkg]["files"]:
186 filestoexamine.append(fn)
188 print >> outfile, html_header(changes["source"], filestoexamine)
190 check_valid(new, session)
191 distribution = changes["distribution"].keys()[0]
192 print >> outfile, examine_package.display_changes(distribution, changes_file)
194 for fn in filter(lambda fn: fn.endswith(".dsc"), filestoexamine):
195 print >> outfile, examine_package.check_dsc(distribution, fn, session)
196 for fn in filter(lambda fn: fn.endswith(".deb") or fn.endswith(".udeb"), filestoexamine):
197 print >> outfile, examine_package.check_deb(distribution, fn, session)
199 print >> outfile, html_footer()
204 ################################################################################
206 def usage (exit_code=0):
207 print """Usage: dak show-new [OPTION]... [CHANGES]...
208 -h, --help show this help and exit.
209 -p, --html-path [path] override output directory.
213 ################################################################################
220 Arguments = [('h',"help","Show-New::Options::Help"),
221 ("p","html-path","Show-New::HTMLPath","HasArg")]
224 if not cnf.has_key("Show-New::Options::%s" % (i)):
225 cnf["Show-New::Options::%s" % (i)] = ""
227 changes_files = apt_pkg.ParseCommandLine(cnf.Cnf,Arguments,sys.argv)
228 if len(changes_files) == 0:
229 new_queue = get_policy_queue('new', session );
230 changes_files = utils.get_changes_files(new_queue.path)
232 Options = cnf.SubTree("Show-New::Options")
240 ################################################################################
241 ################################################################################
244 session = DBConn().session()
245 changes_files = init(session)
247 examine_package.use_html=1
249 threadpool = ThreadPool()
250 for changes_file in changes_files:
251 changes_file = utils.validate_changes_file_arg(changes_file, 0)
254 print "\n" + changes_file
255 threadpool.queueTask(do_pkg, changes_file)
258 files = set(os.listdir(cnf["Show-New::HTMLPath"]))
259 to_delete = filter(lambda x: x.endswith(".html"), files.difference(sources))
261 os.remove(os.path.join(cnf["Show-New::HTMLPath"],f))
263 ################################################################################
265 if __name__ == '__main__':