gecko-dev/webtools/litmus/Litmus/Cache.pm
ccooper%deadsquid.com e7aa393b43 b=314928
- add proper unique keys to users table
- check for empty username and/or passwords
- compare the entered password against the db version instead of itself <- !!!
- check form submissions in JS prior to submission
- require a unique IRC nickname if it is provided, but allow users not to enter one if they so choose
- display mailto: links for admins only
- display account created page when updating accounts
- make login look-and-feel consistent with the rest of the site

b=321265
- add getDisplayName function to User.pm -> returns IRC nickname, real name, or email depending on what is available. Used wherever user information is displayed.

b=324022
- add scrollbars to testcase display (css -> overflow: auto)

b=324648
- use quotemeta in Testresults.pm to avoid SQL injection when searching results

Misc:
- update copyrights to 2006
- fix log_text db schema regression
- remove validity_lookup and vetting_status_lookup tables and assoicated perl classes. Replaced by per-test-result fields.
- remove out-of-date formats/ directory and contents
- add functions to DBTools.pm to manipulate keys and drop tables
- display error/success/info messages in a transient popup div
- update version to 0.6. Make version string part of sidebar title.
- allow re-testing of completed subgroups by same tester, i.e. don't disable subgroups with 100% testing coverage
- remove 'next' regression on run_tests testcase display
- comment out user table on stats page
- whitespace fixes
2006-01-25 17:03:40 +00:00

124 lines
4.3 KiB
Perl
Executable File

# -*- mode: cperl; c-basic-offset: 8; indent-tabs-mode: nil; -*-
=head1 COPYRIGHT
# ***** 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) 2006
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Chris Cooper <ccooper@deadsquid.com>
# Zach Lipton <zach@zachlipton.com>
#
# ***** END LICENSE BLOCK *****
=cut
package Litmus::Cache;
use strict;
use Litmus;
use Data::JavaScript;
use Litmus::DB::Product;
our @ISA = qw(Exporter);
@Litmus::Cache::EXPORT = qw(
rebuildCache
);
# generate a new litmusconfig.js file because something has updated:
sub rebuildCache {
unless (-e "data") { system("mkdir", "data") }
open(CACHE, ">data/litmusconfig.js.new");
print CACHE "// Litmus configuration information\n";
print CACHE "// Do not edit this file directly. It is autogenerated from the database\n";
print CACHE "\n";
# we build up @litmusconfig, a big perl data structure, and spit the
# whole thing out as javascript with Data::JavaScript
# shield your eyes, we're in for a long trip
my @litmusconfig;
my @products = Litmus::DB::Product->search(enabled => 1);
my $prodcount = 0;
foreach my $curproduct (@products) {
my $prodrow = \%{$litmusconfig[$prodcount]};
$prodrow->{"name"} = $curproduct->name();
$prodrow->{"id"} = $curproduct->productid();
my $brancharray = \@{$prodrow->{"branches"}};
my $branchcount = 0;
foreach my $curbranch ($curproduct->branches()) {
my $branchrow = \%{$brancharray->[$branchcount]};
$branchrow->{"name"} = $curbranch->name();
$branchrow->{"id"} = $curbranch->branchid();
$branchcount++;
}
my $platformarray = \@{$prodrow->{"platforms"}};
my $platformcount = 0;
foreach my $curplat ($curproduct->platforms()) {
my $platrow = \%{$platformarray->[$platformcount]};
$platrow->{"name"} = $curplat->name();
$platrow->{"id"} = $curplat->platformid();
my $opsysarray = \@{$platrow->{"opsyses"}};
my $opsyscount = 0;
foreach my $curopsys ($curplat->opsyses()) {
my $opsysrow = \%{$opsysarray->[$opsyscount]};
$opsysrow->{"name"} = $curopsys->name();
$opsysrow->{"id"} = $curopsys->opsysid();
$opsyscount++;
}
$platformcount++;
}
my $grouparray = \@{$prodrow->{"testgroups"}};
my $groupcount = 0;
foreach my $curgroup ($curproduct->testgroups()) {
my $grouprow = \%{$grouparray->[$groupcount]};
$grouprow->{"name"} = $curgroup->name();
$grouprow->{"id"} = $curgroup->testgroupid();
$groupcount++;
my $subgrouparray = \@{$grouprow->{"subgroups"}};
my $subgroupcount = 0;
foreach my $cursubgroup ($curgroup->subgroups()) {
my $subgrouprow = \%{$subgrouparray->[$subgroupcount]};
$subgrouprow->{"name"} = $cursubgroup->name();
$subgrouprow->{"id"} = $cursubgroup->subgroupid();
$subgroupcount++;
}
}
$prodcount++;
}
my $data = jsdump('litmusconfig', \@litmusconfig);
$data =~ s/new Object;/new Array\(\);/g;
print CACHE $data;
close(CACHE);
system("mv", "data/litmusconfig.js.new", "data/litmusconfig.js");
#system("chmod", "-R", "755", "data/");
}
1;