/[collab-qa]/udd/web/bugs.cgi
ViewVC logotype

Contents of /udd/web/bugs.cgi

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2210 - (show annotations) (download)
Wed Apr 4 19:25:15 2012 UTC (13 months, 2 weeks ago) by lucas
File size: 19128 byte(s)
add kfreebsd support
1 #!/usr/bin/ruby -w
2
3 require 'dbi'
4 require 'pp'
5 require 'cgi'
6 require 'time'
7
8 puts "Content-type: text/html\n\n"
9
10 RELEASE_RESTRICT = [
11 ['wheezy', 'wheezy', 'id in (select id from bugs_rt_affects_testing)'],
12 ['sid', 'sid', 'id in (select id from bugs_rt_affects_unstable)'],
13 ['wheezy_and_sid', 'wheezy and sid', 'id in (select id from bugs_rt_affects_testing) and id in (select id from bugs_rt_affects_unstable)'],
14 ['wheezy_or_sid', 'wheezy or sid', 'id in (select id from bugs_rt_affects_testing union select id from bugs_rt_affects_unstable)'],
15 ['wheezy_not_sid', 'wheezy, not sid', 'id in (select id from bugs_rt_affects_testing) and id not in (select id from bugs_rt_affects_unstable)'],
16 ['sid_not_wheezy', 'sid, not wheezy', 'id in (select id from bugs_rt_affects_unstable) and id not in (select id from bugs_rt_affects_testing)'],
17 ['squeeze', 'squeeze', 'id in (select id from bugs_rt_affects_stable)'],
18 ['lenny', 'lenny', 'id in (select id from bugs_rt_affects_oldstable)'],
19 ['any', 'any', 'id in (select id from bugs where status!=\'done\')'],
20 ]
21
22 FILTERS = [
23 ['patch', 'tagged patch', 'id in (select id from bugs_tags where tag=\'patch\')'],
24 ['pending', 'tagged pending', 'id in (select id from bugs_tags where tag=\'pending\')'],
25 ['security', 'tagged security', 'id in (select id from bugs_tags where tag=\'security\')'],
26 ['wontfix', 'tagged wontfix', 'id in (select id from bugs_tags where tag=\'wontfix\')'],
27 ['upstream', 'tagged upstream', 'id in (select id from bugs_tags where tag=\'upstream\')'],
28 ['unreproducible', 'tagged unreproducible', 'id in (select id from bugs_tags where tag=\'unreproducible\')'],
29 ['forwarded', 'forwarded upstream', 'forwarded != \'\''],
30 ['claimed', 'claimed bugs', "id in (select id from bugs_usertags where email='bugsquash@qa.debian.org')"],
31 ['deferred', 'fixed in deferred/delayed', "id in (select id from deferred_closes)"],
32 ['notmain', 'packages not in main', 'id not in (select id from bugs_packages, sources where bugs_packages.source = sources.source and component=\'main\')'],
33 ['notwheezy', 'packages not in wheezy', 'id not in (select id from bugs_packages, sources where bugs_packages.source = sources.source and release=\'wheezy\')'],
34 ['base', 'packages in base system', 'bugs.source in (select source from sources where priority=\'required\' or priority=\'important\')'],
35 ['standard', 'packages in standard installation', 'bugs.source in (select source from sources where priority=\'standard\')'],
36 ['orphaned', 'orphaned packages', 'bugs.source in (select source from orphaned_packages where type in (\'ITA\', \'O\'))'],
37 ['merged', 'merged bugs', 'id in (select id from bugs_merged_with where id > merged_with)'],
38 ['done', 'marked as done', 'status = \'done\''],
39 ['outdatedwheezy', 'outdated binaries in wheezy', "bugs.source in (select distinct p1.source from packages_summary p1, packages_summary p2 where p1.source = p2.source and p1.release='wheezy' and p2.release='wheezy' and p1.source_version != p2.source_version)"],
40 ['outdatedsid', 'outdated binaries in sid', "bugs.source in (select distinct p1.source from packages_summary p1, packages_summary p2 where p1.source = p2.source and p1.release='sid' and p2.release='sid' and p1.source_version != p2.source_version)"],
41 ['needmig', 'different versions in wheezy and sid', "bugs.source in (select s1.source from sources s1, sources s2 where s1.source = s2.source and s1.release = 'wheezy' and s2.release='sid' and s1.version != s2.version)"],
42 ['newerubuntu', 'newer in Ubuntu than in sid', "bugs.source in (select s1.source from sources_uniq s1, ubuntu_sources s2 where s1.source = s2.source and s1.release = 'sid' and s2.release='precise' and s1.version < s2.version)"],
43 ['rtwheezy-will-remove', 'RT tag for wheezy: will-remove', "id in (select id from bugs_usertags where email='release.debian.org@packages.debian.org' and tag='wheezy-will-remove')"],
44 ['rtwheezy-can-defer', 'RT tag for wheezy: can-defer', "id in (select id from bugs_usertags where email='release.debian.org@packages.debian.org' and tag='wheezy-can-defer')"],
45 ['rtwheezy-is-blocker', 'RT tag for wheezy: is-blocker', "id in (select id from bugs_usertags where email='release.debian.org@packages.debian.org' and tag='wheezy-is-blocker')"],
46 ]
47
48 TYPES = [
49 ['rc', 'release-critical bugs', 'severity >= \'serious\'', true ],
50 ['ipv6', 'release goal: IPv6 support', 'id in (select id from bugs_tags where tag=\'ipv6\')', false ],
51 ['lfs', 'release goal: Large File Support', 'id in (select id from bugs_tags where tag=\'lfs\')', false ],
52 ['boot', 'release goal: boot performance (init.d dependencies)', 'id in (select id from bugs_usertags where email = \'initscripts-ng-devel@lists.alioth.debian.org\')', false],
53 ['oldgnome', 'release goal: remove obsolete GNOME libraries', 'id in (select id from bugs_usertags where email = \'pkg-gnome-maintainers@lists.alioth.debian.org\' and tag=\'oldlibs\')', false],
54 ['ruby', 'Ruby bugs', "bugs.source in (select source from sources where maintainer ~ 'ruby' or uploaders ~ 'ruby')\nOR bugs.package in (select source from packages where (package ~ 'ruby' or depends ~ 'ruby') and source != 'subversion')\nOR title ~ 'ruby'"],
55 ['php', 'PHP bugs', "bugs.source in (select source from packages_summary where package in (select package from debtags where tag = 'implemented-in::php'))"],
56 ['l10n', 'Localisation bugs', 'id in (select id from bugs_tags where tag=\'l10n\')', false],
57 ['xsf', 'X Strike Force bugs', "bugs.source in (select source from sources where maintainer ~ 'debian-x@lists.debian.org')\n"],
58 ['kfreebsd', 'GNU/kFreeBSD bugs', 'id in (select id from bugs_usertags where email = \'debian-bsd@lists.debian.org\' and tag=\'kfreebsd\')', false],
59 ['allbugs', 'All bugs', 'true', false],
60 ]
61
62 SORTS = [
63 ['id', 'bug#'],
64 ['source', 'source package'],
65 ['package', 'binary package'],
66 ['last_modified', 'last modified'],
67 ['severity', 'severity'],
68 ['popcon', 'popularity contest'],
69 ]
70
71 COLUMNS = [
72 ['cpopcon', 'popularity&nbsp;contest'],
73 ['chints', 'release&nbsp;team&nbsp;hints'],
74 ['cseverity', 'severity'],
75 ['ctags', 'tags'],
76 ['cclaimed', 'claimed&nbsp;by'],
77 ['cdeferred', 'deferred/delayed'],
78 ['caffected', 'affected&nbsp;releases'],
79 ['crttags', 'release&nbsp;team&nbsp;tags&nbsp;for&nbsp;wheezy'],
80 ]
81
82 cgi = CGI::new
83 # releases
84 if RELEASE_RESTRICT.map { |r| r[0] }.include?(cgi.params['release'][0])
85 release = cgi.params['release'][0]
86 else
87 release = 'wheezy'
88 end
89 # columns
90 cols = {}
91 COLUMNS.map { |r| r[0] }.each do |r|
92 if cgi.params[r][0]
93 cols[r] = true
94 else
95 cols[r] = false
96 end
97 end
98 # sorts
99 if SORTS.map { |r| r[0] }.include?(cgi.params['sortby'][0])
100 sortby = cgi.params['sortby'][0]
101 else
102 sortby = 'id'
103 end
104 if ['asc', 'desc'].include?(cgi.params['sorto'][0])
105 sorto = cgi.params['sorto'][0]
106 else
107 sorto = 'asc'
108 end
109 # hack to enable popcon column if sortby = popcon
110 cols['cpopcon'] = true if sortby == 'popcon'
111 cols['cseverity'] = true if sortby == 'severity'
112 # filters
113 filters = {}
114 FILTERS.map { |r| r[0] }.each do |e|
115 if ['', 'only', 'ign'].include?(cgi.params[e][0])
116 filters[e] = cgi.params[e][0]
117 else
118 filters[e] = (e == 'merged' ? 'ign' : '')
119 end
120 end
121 # filter: newer than X days
122 if ['', 'only', 'ign'].include?(cgi.params['fnewer'][0])
123 fnewer = cgi.params['fnewer'][0]
124 else
125 fnewer = ''
126 end
127 if cgi.params['fnewerval'][0] =~ /^[0-9]+$/
128 fnewerval = cgi.params['fnewerval'][0].to_i
129 else
130 fnewerval = 7
131 end
132 # types
133 types = {}
134 TYPES.each do |t|
135 if cgi.params == {}
136 types[t[0]] = t[3]
137 else
138 if cgi.params[t[0]][0] == '1'
139 types[t[0]] = true
140 else
141 types[t[0]] = false
142 end
143 end
144 end
145
146 puts <<-EOF
147 <html>
148 <head>
149 <style type="text/css">
150
151 body {
152 font-family : "DejaVu Sans", "Bitstream Vera Sans", sans-serif;"
153 }
154
155 table.buglist td, table.buglist th {
156 border: 1px solid gray;
157 padding-left: 3px;
158 padding-right: 3px;
159 }
160 table.buglist tr:hover {
161 background-color: #ccc;
162 color: #000;
163 }
164 table.buglist tr:hover :link {
165 color: #00f;
166 }
167 table.buglist tr:hover :visited {
168 color: #707;
169 }
170 table {
171 border-collapse: collapse;
172 }
173
174 div#body {
175 border-top: 2px solid #d70751;
176 }
177
178 div.footer {
179 padding: 0.3em 0;
180 background-color: #fff;
181 color: #000;
182 text-align: center;
183 border-top: 2px solid #d70751;
184 margin: 0 0 0 0;
185 border-bottom: 0;
186 font-size: 85%;
187 }
188 div.footer :link {
189 color: #00f;
190 }
191 div.footer :visited {
192 color: #707;
193 }
194 </style>
195 <title>Debian Bugs Search @ UDD</title>
196 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
197 <script type="text/javascript">
198 function removeBlankFields(form) {
199 var inputs = form.getElementsByTagName("input");
200 var removeList = new Array();
201 for (var i=0; i<inputs.length; i++) {
202 if (inputs[i].value == "") {
203 removeList.push(inputs[i]);
204 }
205 }
206 for (x in removeList) {
207 removeList[x].parentNode.removeChild(removeList[x]);
208 }
209 }
210 </script>
211 </head>
212 <body>
213 <h1 style="margin-bottom : 5px"><img src="http://qa.debian.org/debian.png" alt="Debian logo" width="188" height="52" style="vertical-align : -13px; ">Bugs Search <span style="color :#c70036">@</span> UDD</h1>
214 <div id="body">
215
216 <form action="bugs.cgi" method="get" onsubmit="removeBlankFields(this);">
217 <p><b>Bugs affecting:</b>
218 EOF
219
220 RELEASE_RESTRICT.each do |r|
221 checked = (release == r[0] ? 'CHECKED=\'1\'':'')
222 puts "<label><input type='radio' name='release' value='#{r[0]}' #{checked}/>#{r[1]}</label>&nbsp;&nbsp;"
223 end
224 puts <<-EOF
225 <br/>(This already uses release tags ('sid', 'wheezy') and xxx-ignore ('wheezy-ignore') to include/exclude bugs)</p>
226 <table class="invisible"><tr><td>
227 <table class="buglist">
228 <tr><th colspan='4'>FILTERS</th></tr>
229 <tr><th>not considered</th><th>only</th><th>ignore</th><th>type</th></tr>
230 EOF
231 FILTERS.each do |r|
232 puts <<-EOF
233 <tr>
234 <td style='text-align: center;'><input type='radio' name='#{r[0]}' value='' #{filters[r[0]]==''?'CHECKED=\'1\'':''}/></td>
235 <td style='text-align: center;'><input type='radio' name='#{r[0]}' value='only' #{filters[r[0]]=='only'?'CHECKED=\'1\'':''}/></td>
236 <td style='text-align: center;'><input type='radio' name='#{r[0]}' value='ign' #{filters[r[0]]=='ign'?'CHECKED=\'1\'':''}/></td>
237 <td>#{r[1]}</td>
238 </tr>
239 EOF
240 end
241 # newer than
242 puts <<-EOF
243 <tr>
244 <td style='text-align: center;'><input type='radio' name='fnewer' value='' #{fnewer==''?'CHECKED=\'1\'':''}/></td>
245 <td style='text-align: center;'><input type='radio' name='fnewer' value='only' #{fnewer=='only'?'CHECKED=\'1\'':''}/></td>
246 <td style='text-align: center;'><input type='radio' name='fnewer' value='ign' #{fnewer=='ign'?'CHECKED=\'1\'':''}/></td>
247 <td>newer than <input type='text' size='3' name='fnewerval' value='#{fnewerval}'/> days</td>
248 </tr>
249 EOF
250 puts "</table></td><td style='padding-left: 20px'><table class='buglist'>"
251 puts "<tr><th colspan='2'>Bug types</th></tr>"
252 TYPES.each do |t|
253 checked = types[t[0]]?" checked='1'":""
254 puts "<tr><td><input type='checkbox' id='#{t[0]}' name='#{t[0]}' value='1'#{checked}/></td><td><label for='#{t[0]}'>#{t[1]}</label></td></tr>"
255 end
256 puts "</table></td></tr></table>"
257 puts "<p><b>Sort by:</b> "
258 SORTS.each do |r|
259 checked = (sortby == r[0] ? 'CHECKED=\'1\'':'')
260 puts "<label><input type='radio' name='sortby' value='#{r[0]}' #{checked}/>#{r[1]}</label>&nbsp;&nbsp;"
261 end
262 puts "<b> -- </b>"
263 [['asc', 'increasing'],[ 'desc', 'decreasing']].each do |r|
264 checked = (sorto == r[0] ? 'CHECKED=\'1\'':'')
265 puts "<label><input type='radio' name='sorto' value='#{r[0]}' #{checked}/>#{r[1]}</label>&nbsp;&nbsp;"
266 end
267 puts "<br/>\n<b>Additional information:</b> "
268 COLUMNS.each do |r|
269 checked = cols[r[0]] ? 'checked':''
270 puts "<label><input type='checkbox' name='#{r[0]}' value='1' #{checked}/>#{r[1]}</label>&nbsp;&nbsp;"
271 end
272 puts <<-EOF
273 <br/>\n<input type='submit' value='Search'/></p>
274 </form>
275 EOF
276 if cgi.params != {}
277
278 # Generate and execute query
279 tstart = Time::now
280 dbh = DBI::connect('DBI:Pg:dbname=udd;port=5441;host=localhost', 'guest')
281 dbh.execute("SET statement_timeout TO 90000")
282 if cols['cpopcon']
283 q = "select id, bugs.package, bugs.source, severity, title, last_modified, affects_stable, affects_testing, affects_unstable, affects_experimental, coalesce(popcon_src.insts, 0) as popcon\nfrom bugs left join popcon_src on (bugs.source = popcon_src.source) \n"
284 else
285 q = "select id, bugs.package, bugs.source, severity, title, last_modified, affects_stable, affects_testing, affects_unstable, affects_experimental from bugs \n"
286 end
287 q += "where #{RELEASE_RESTRICT.select { |r| r[0] == release }[0][2]} \n"
288 FILTERS.each do |f|
289 if filters[f[0]] == 'only'
290 q += "and #{f[2]} \n"
291 elsif filters[f[0]] == 'ign'
292 q += "and not (#{f[2]}) \n"
293 end
294 end
295 if fnewer == 'only'
296 q += "and (current_timestamp - interval '#{fnewerval} days' <= arrival) \n"
297 elsif fnewer == 'ign'
298 q += "and (current_timestamp - interval '#{fnewerval} days' > arrival) \n"
299 end
300 q2 = TYPES.select { |t| types[t[0]] }.map { |t| t[2] }.join("\n OR ")
301 if q2 != ""
302 q += "AND (#{q2})\n"
303 else
304 puts "<p><b>Must select at least one bug type!</b></p>"
305 q += "AND FALSE\n"
306 end
307 q += "order by #{sortby} #{sorto}"
308
309 load = IO::read('/proc/loadavg').split[1].to_f
310 if load > 20
311 puts "<p><b>Current system load (#{load}) is too high. Please retry later!</b></p>"
312 puts "<pre>#{q}</pre>"
313 exit(0)
314 end
315
316 begin
317 sth = dbh.prepare(q)
318 sth.execute
319 rows = sth.fetch_all
320 rescue DBI::ProgrammingError => e
321 puts "<p>The query generated an error, please report it to lucas@debian.org: #{e.message}</p>"
322 puts "<pre>#{q}</pre>"
323 exit(0)
324 end
325
326 if cols['chints']
327 sthh = dbh.prepare("select distinct source, type, argument, version, file, comment from relevant_hints order by type")
328 sthh.execute
329 rowsh = sthh.fetch_all
330 hints = {}
331 rowsh.each do |r|
332 hints[r['source']] ||= []
333 hints[r['source']] << r
334 end
335 end
336
337 if cols['ctags']
338 ids = rows.map { |r| r['id'] }.join(',')
339 stht = dbh.prepare("select id, tag from bugs_tags where id in (#{ids})")
340 stht.execute
341 rowst = stht.fetch_all
342 tags = {}
343 rowst.each do |r|
344 tags[r['id']] ||= []
345 tags[r['id']] << r['tag']
346 end
347 end
348
349 if cols['cclaimed']
350 ids = rows.map { |r| r['id'] }.join(',')
351 stht = dbh.prepare("select distinct id, tag from bugs_usertags where email='bugsquash@qa.debian.org' and id in (#{ids})")
352 stht.execute
353 rowst = stht.fetch_all
354 claimedbugs = {}
355 rowst.each do |r|
356 claimedbugs[r['id']] ||= []
357 claimedbugs[r['id']] << r['tag']
358 end
359 end
360
361 if cols['crttags']
362 ids = rows.map { |r| r['id'] }.join(',')
363 stht = dbh.prepare("select distinct id, tag from bugs_usertags where email='release.debian.org@packages.debian.org' and id in (#{ids})")
364 stht.execute
365 rowst = stht.fetch_all
366 rttags = {}
367 rowst.each do |r|
368 rttags[r['id']] ||= []
369 rttags[r['id']] << r['tag']
370 end
371 end
372
373
374 if cols['cdeferred']
375 ids = rows.map { |r| r['id'] }.join(',')
376 sthd = dbh.prepare("select id, deferred.source, deferred.version, extract (day from delay_remaining) as du from deferred, deferred_closes where deferred.source = deferred_closes.source and deferred.version = deferred_closes.version and deferred_closes.id in (#{ids})")
377 sthd.execute
378 rowsd = sthd.fetch_all
379 deferredbugs = {}
380 rowsd.each do |r|
381 d = r['du'].to_i
382 deferredbugs[r['id']] = "#{r['version']} (#{d}&nbsp;day#{d==1?'':'s'})"
383 end
384 end
385
386 puts "<p><b>#{rows.length} bugs found.</b></p>"
387 puts '<table class="buglist">'
388 puts '<tr><th>bug#</th><th>package</th><th>title</th>'
389 puts '<th>popcon</th>' if cols['cpopcon']
390 puts '<th>severity</th>' if cols['cseverity']
391 puts '<th>hints</th>' if cols['chints']
392 puts '<th>claimed by</th>' if cols['cclaimed']
393 puts '<th>deferred</th>' if cols['cdeferred']
394 puts '<th>RT tag</th>' if cols['crttags']
395 puts '<th>last&nbsp;modified</th></tr>'
396
397 def genhints(source, hints)
398 return '' if hints.nil?
399 s = ''
400 hints.each do |h|
401 v = h['version'] ? h['version'] + ' ' : ''
402 t = h['type'] == 'age-days' ? "age/#{h['argument']}" : h['type']
403 s += "<a href=\"http://release.debian.org/britney/hints/#{h['file']}\" title=\"#{v}#{h['file']} #{h['comment']}\">#{t}</a> "
404 end
405 s
406 end
407
408 # copied from /org/bugs.debian.org/etc/config
409 $TagsSingleLetter = {
410 'patch' => '+',
411 'wontfix' => '☹',
412 'moreinfo' => 'M',
413 'unreproducible' => 'R',
414 'security' => 'S',
415 'pending' => 'P',
416 'fixed' => 'F',
417 'help' => 'H',
418 'fixed-upstream' => 'U',
419 'upstream' => 'u',
420 # Added tags
421 'confirmed' => 'C',
422 'etch-ignore' => 'etc-i',
423 'lenny-ignore' => 'len-i',
424 'sarge-ignore' => 'sar-i',
425 'squeeze-ignore' => 'squ-i',
426 'wheezy-ignore' => 'whe-i',
427 'woody' => 'wod',
428 'sarge' => 'sar',
429 'etch' => 'etc',
430 'lenny' => 'len',
431 'squeeze' => 'squ',
432 'wheezy' => 'whe',
433 'sid' => 'sid',
434 'experimental' => 'exp',
435 'l10n' => 'l10n',
436 'd-i' => 'd-i',
437 'ipv6' => 'ipv6',
438 'lfs' => 'lfs',
439 'fixed-in-experimental' => 'fie',
440 }
441
442 def gentags(tags)
443 return '' if tags.nil?
444 tags.sort!
445 texttags = tags.map do |tag|
446 puts "unknowntag: #{tag}" if $TagsSingleLetter[tag].nil?
447 "<abbr title='#{tag}'>#{$TagsSingleLetter[tag]}</abbr>"
448 end
449 return '&nbsp;[' + texttags.join('|') + ']'
450 end
451
452 def genaffected(r)
453 s = ""
454 s += "<abbr title='affects stable'>S</abbr>" if r['affects_stable']
455 s += "<abbr title='affects testing'>T</abbr>" if r['affects_testing']
456 s += "<abbr title='affects unstable'>U</abbr>" if r['affects_unstable']
457 s += "<abbr title='affects unstable'>E</abbr>" if r['affects_experimental']
458 return "" if s == ""
459 return "&nbsp;("+s+")"
460 end
461
462 rows.each do |r|
463 print "<tr><td style='text-align: left;'><a href=\"http://bugs.debian.org/#{r['id']}\">##{r['id']}</a>"
464 puts "#{gentags(tags[r['id']])}" if cols['ctags']
465 puts "#{genaffected(r)}" if cols['caffected']
466 puts "</td>"
467 puts "<td style='text-align: center;'>"
468 srcs = r['source'].split(/,\s*/)
469 bins = r['package'].split(/,\s*/)
470 puts (0...bins.length).map { |i| "<a href=\"http://packages.qa.debian.org/#{srcs[i]}\">#{bins[i]}</a>" }.join(', ')
471 puts "</td>"
472 puts "<td>#{CGI::escapeHTML(r['title'])}</td>"
473 puts "<td>#{r['popcon']}</td>" if cols['cpopcon']
474 puts "<td>#{r['severity']}</td>" if cols['cseverity']
475 puts "<td>#{genhints(r['source'], hints[r['source']])}</td>" if cols['chints']
476 puts "<td>#{claimedbugs[r['id']]}</td>" if cols['cclaimed']
477 puts "<td>#{deferredbugs[r['id']]}</td>" if cols['cdeferred']
478 puts "<td>#{rttags[r['id']]}</td>" if cols['crttags']
479 d = r['last_modified']
480 d = Date::new(d.year, d.month, d.day)
481 puts "<td style='text-align: center;'>#{d}</td></tr>"
482 end
483
484 puts "</table>"
485 sth2 = dbh.prepare("select max(start_time) from timestamps where source = 'bugs' and command = 'run'")
486 sth2.execute ; r2 = sth2.fetch_all
487 puts "<p><b>Generated in #{Time::now - tstart} seconds. Last data update: #{r2[0][0]}"
488 puts " (%.1f hours ago)</b></p>" % ((Time::now - Time::parse(r2[0][0].to_s)) / 3600)
489 puts "<pre>#{q}</pre>"
490 end # if cgi.params != {}
491 puts <<-EOF
492 </div>
493 <div class="footer">
494 <small>Suggestions / comments / patches to lucas@debian.org. <a href="http://svn.debian.org/wsvn/collab-qa/udd/web/bugs.cgi">source code</a>.</small>
495 </div>
496 </body>
497 </html>
498 EOF

Properties

Name Value
svn:executable *
svn:mergeinfo

  ViewVC Help
Powered by ViewVC 1.1.5