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 *
47 ################################################################################
48 ################################################################################
49 ################################################################################
51 def html_header(name, filestoexamine):
52 if name.endswith('.changes'):
53 name = ' '.join(name.split('_')[:2])
54 print """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
55 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
57 <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8"
59 <title>%(name)s - Debian NEW package overview</title>
60 <link type="text/css" rel="stylesheet" href="/style.css" />
61 <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
62 <script type="text/javascript">
65 function toggle(id, initial, display) {
66 var o = document.getElementById(id);
67 toggleObj(o, initial, display);
69 function show(id, display) {
70 var o = document.getElementById(id);
71 o.style.display = 'table-row-group';
73 function toggleObj(o, initial, display) {
75 o.style.display = initial;
76 if(o.style.display == display) {
77 o.style.display = "none";
79 o.style.display = display;
86 <body id="NEW-details-page">
88 <a href="http://www.debian.org/">
89 <img src="http://www.debian.org/logos/openlogo-nd-50.png"
90 alt="debian logo" /></a>
91 <a href="http://www.debian.org/">
92 <img src="http://www.debian.org/Pics/debian.png"
93 alt="Debian Project" /></a>
96 <img src="http://www.debian.org/Pics/red-upperleft.png"
97 id="red-upperleft" alt="corner image"/>
98 <img src="http://www.debian.org/Pics/red-lowerleft.png"
99 id="red-lowerleft" alt="corner image"/>
100 <img src="http://www.debian.org/Pics/red-upperright.png"
101 id="red-upperright" alt="corner image"/>
102 <img src="http://www.debian.org/Pics/red-lowerright.png"
103 id="red-lowerright" alt="corner image"/>
105 Debian NEW package overview for %(name)s
110 # we assume only one source (.dsc) per changes here
113 <p class="title">Navigation</p>
114 <p><a href="#changes" onclick="show('changes-body')">.changes</a></p>
115 <p><a href="#dsc" onclick="show('dsc-body')">.dsc</a></p>
116 <p><a href="#source-lintian" onclick="show('source-lintian-body')">source lintian</a></p>
118 for fn in filter(lambda x: x.endswith('.deb') or x.endswith('.udeb'),filestoexamine):
119 packagename = fn.split('_')[0]
121 <p class="subtitle">%(pkg)s</p>
122 <p><a href="#binary-%(pkg)s-control" onclick="show('binary-%(pkg)s-control-body')">control file</a></p>
123 <p><a href="#binary-%(pkg)s-lintian" onclick="show('binary-%(pkg)s-lintian-body')">binary lintian</a></p>
124 <p><a href="#binary-%(pkg)s-contents" onclick="show('binary-%(pkg)s-contents-body')">.deb contents</a></p>
125 <p><a href="#binary-%(pkg)s-copyright" onclick="show('binary-%(pkg)s-copyright-body')">copyright</a></p>
126 <p><a href="#binary-%(pkg)s-file-listing" onclick="show('binary-%(pkg)s-file-listing-body')">file listing</a></p>
127 """%{"pkg":packagename}
131 print """ <p class="validate">Timestamp: %s (UTC)</p>"""% (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime()))
132 print """ <p><a href="http://validator.w3.org/check?uri=referer">
133 <img src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"
134 style="border: none; height: 31px; width: 88px" /></a>
135 <a href="http://jigsaw.w3.org/css-validator/check/referer">
136 <img src="http://jigsaw.w3.org/css-validator/images/vcss"
137 alt="Valid CSS!" style="border: none; height: 31px; width: 88px" /></a>
143 ################################################################################
146 def do_pkg(changes_file, session):
148 u.pkg.changes_file = changes_file
149 (u.pkg.changes["fingerprint"], rejects) = utils.check_signature(changes_file)
150 u.load_changes(changes_file)
151 new_queue = get_policy_queue('new', session );
152 u.pkg.directory = new_queue.path
154 origchanges = os.path.abspath(u.pkg.changes_file)
156 changes = u.pkg.changes
158 for deb_filename, f in files.items():
159 if deb_filename.endswith(".udeb") or deb_filename.endswith(".deb"):
160 u.binary_file_checks(deb_filename, session)
161 u.check_binary_against_db(deb_filename, session)
163 u.source_file_checks(deb_filename, session)
164 u.check_source_against_db(deb_filename, session)
165 u.pkg.changes["suite"] = u.pkg.changes["distribution"]
167 new = determine_new(u.pkg.changes, files, 0)
169 stdout_fd = sys.stdout
171 htmlname = changes["source"] + "_" + changes["version"] + ".html"
172 sources.add(htmlname)
173 # do not generate html output if that source/version already has one.
174 if not os.path.exists(os.path.join(cnf["Show-New::HTMLPath"],htmlname)):
175 sys.stdout = open(os.path.join(cnf["Show-New::HTMLPath"],htmlname),"w")
178 for pkg in new.keys():
179 for fn in new[pkg]["files"]:
180 filestoexamine.append(fn)
182 html_header(changes["source"], filestoexamine)
185 distribution = changes["distribution"].keys()[0]
186 examine_package.display_changes(distribution, changes_file)
188 for fn in filter(lambda fn: fn.endswith(".dsc"), filestoexamine):
189 examine_package.check_dsc(distribution, fn)
190 for fn in filter(lambda fn: fn.endswith(".deb") or fn.endswith(".udeb"), filestoexamine):
191 examine_package.check_deb(distribution, fn)
194 if sys.stdout != stdout_fd:
196 sys.stdout = stdout_fd
198 ################################################################################
200 def usage (exit_code=0):
201 print """Usage: dak show-new [OPTION]... [CHANGES]...
202 -h, --help show this help and exit.
203 -p, --html-path [path] override output directory.
207 ################################################################################
214 Arguments = [('h',"help","Show-New::Options::Help"),
215 ("p","html-path","Show-New::HTMLPath","HasArg")]
218 if not cnf.has_key("Show-New::Options::%s" % (i)):
219 cnf["Show-New::Options::%s" % (i)] = ""
221 changes_files = apt_pkg.ParseCommandLine(cnf.Cnf,Arguments,sys.argv)
222 if len(changes_files) == 0:
223 new_queue = get_policy_queue('new', session );
224 changes_files = utils.get_changes_files(new_queue.path)
226 Options = cnf.SubTree("Show-New::Options")
234 ################################################################################
235 ################################################################################
238 session = DBConn().session()
239 changes_files = init(session)
241 examine_package.use_html=1
243 for changes_file in changes_files:
244 changes_file = utils.validate_changes_file_arg(changes_file, 0)
247 print "\n" + changes_file
248 do_pkg (changes_file, session)
250 files = set(os.listdir(cnf["Show-New::HTMLPath"]))
251 to_delete = filter(lambda x: x.endswith(".html"), files.difference(sources))
253 os.remove(os.path.join(cnf["Show-New::HTMLPath"],f))
255 ################################################################################
257 if __name__ == '__main__':