- remove common failure files

This commit is contained in:
ccooper%deadsquid.com 2005-10-19 21:49:24 +00:00
parent 9616f5f32d
commit 8c7846775d
3 changed files with 0 additions and 117 deletions

View File

@ -1,68 +0,0 @@
#!/usr/bin/perl -w
# -*- mode: cperl; c-basic-offset: 8; indent-tabs-mode: nil; -*-
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is Litmus.
#
# The Initial Developer of the Original Code is
# the Mozilla Corporation.
# Portions created by the Initial Developer are Copyright (C) 2005
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Chris Cooper <ccooper@deadsquid.com>
# Zach Lipton <zach@zachlipton.com>
#
# ***** END LICENSE BLOCK *****
use strict;
$|++;
use Litmus;
use Litmus::Auth;
use Litmus::Error;
use Litmus::DB::Testresult;
use Litmus::FormWidget;
use diagnostics;
use CGI;
use Time::Piece::MySQL;
my $results = Litmus::DB::Testresult->getCommonFailures;
my $c = new CGI;
print $c->header();
my $vars = {
title => 'Most Common Failures',
};
# Only include results if we have them.
if ($results and scalar @$results > 0) {
$vars->{results} = $results;
}
$vars->{"defaultemail"} = Litmus::Auth::getCookie();
Litmus->template()->process("reporting/common_failures.tmpl", $vars) ||
internalError(Litmus->template()->error());
exit 0;

View File

@ -1,18 +0,0 @@
[% INCLUDE global/html_header.tmpl includeselects=1 %]
[% INCLUDE global/litmus_header.tmpl %]
<div id="page">
[% INCLUDE sidebar/sidebar.tmpl %]
<div id="content">
<h1 class="firstHeading">[% title %]</h1>
[% INCLUDE reporting/common_failures_table.tmpl %]
</div> <!--END content-->
</div> <!--END page-->
[% INCLUDE global/litmus_footer.tmpl %]
[% INCLUDE global/html_footer.tmpl %]

View File

@ -1,31 +0,0 @@
<table class="test-results">
<tr>
<td class="header"># of Failures</td>
<td class="header">Testcase ID#</td>
<td class="header">Summary</td>
<td class="header">Most Recent Failure</td>
</tr>
<tr>
[% IF results %]
[% FOREACH result=results %]
<tr class="fail">
<td align="center"><a href="search_results.cgi?order_by_created=DESC&amp;result_status=fail&amp;test_id=[% result.test_id %]">[% result.num_failures %]</a></td>
<td align="center"><a href="show_test.cgi?id=[% result.test_id %]">[% result.test_id %]</a></td>
<td align="left">[% result.summary %]</td>
<td align="center"><a href="single_result.cgi?id=[% result.max_id %]">[% result.most_recent %]</a></td>
</tr>
[% END %]
[% ELSE %]
<tr>
<td class="no-results" colspan="4">No test results match the search criteria.</td>
</tr>
[% END %]
</table>
</form>