Patch for bug 190226: templatize editversions.cgi; patch by GavinS <bugzilla@chimpychompy.org>, r=jouni, a=myk.

This commit is contained in:
jocuri%softhome.net 2005-01-16 13:48:25 +00:00
Родитель 704613e524
Коммит 0b7d46f999
3 изменённых файлов: 181 добавлений и 232 удалений

Просмотреть файл

@ -19,7 +19,8 @@
# Rights Reserved. # Rights Reserved.
# #
# Contributor(s): Holger Schurig <holgerschurig@nikocity.de> # Contributor(s): Holger Schurig <holgerschurig@nikocity.de>
# Terry Weissman <terry@mozilla.org> # Terry Weissman <terry@mozilla.org>
# Gavin Shelley <bugzilla@chimpychompy.org>
# #
# #
# Direct any questions on this source code to # Direct any questions on this source code to
@ -35,6 +36,10 @@ require "globals.pl";
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT $datadir); use Bugzilla::Config qw(:DEFAULT $datadir);
use vars qw($template $vars);
my $cgi = Bugzilla->cgi;
# TestProduct: just returns if the specified product does exists # TestProduct: just returns if the specified product does exists
# CheckProduct: same check, optionally emit an error text # CheckProduct: same check, optionally emit an error text
# TestVersion: just returns if the specified product/version combination exists # TestVersion: just returns if the specified product/version combination exists
@ -47,7 +52,7 @@ sub TestProduct ($)
# does the product exist? # does the product exist?
SendSQL("SELECT name SendSQL("SELECT name
FROM products FROM products
WHERE name=" . SqlQuote($prod)); WHERE name = " . SqlQuote($prod));
return FetchOneColumn(); return FetchOneColumn();
} }
@ -57,14 +62,13 @@ sub CheckProduct ($)
# do we have a product? # do we have a product?
unless ($prod) { unless ($prod) {
print "Sorry, you haven't specified a product."; ThrowUserError('product_not_specified');
PutTrailer();
exit; exit;
} }
unless (TestProduct $prod) { unless (TestProduct $prod) {
print "Sorry, product '$prod' does not exist."; ThrowUserError('product_doesnt_exist',
PutTrailer(); {'product' => $prod});
exit; exit;
} }
} }
@ -74,83 +78,35 @@ sub TestVersion ($$)
my ($prod,$ver) = @_; my ($prod,$ver) = @_;
# does the product exist? # does the product exist?
SendSQL("SELECT products.name,value SendSQL("SELECT products.name, value
FROM versions, products FROM versions, products
WHERE versions.product_id=products.id AND products.name=" . SqlQuote($prod) . " and value=" . SqlQuote($ver)); WHERE versions.product_id = products.id
AND products.name = " . SqlQuote($prod) . "
AND value = " . SqlQuote($ver));
return FetchOneColumn(); return FetchOneColumn();
} }
sub CheckVersion ($$) sub CheckVersion ($$)
{ {
my ($prod,$ver) = @_; my ($prod, $ver) = @_;
# do we have the version? # do we have the version?
unless ($ver) { unless ($ver) {
print "Sorry, you haven't specified a version."; ThrowUserError('version_not_specified');
PutTrailer();
exit; exit;
} }
CheckProduct($prod); CheckProduct($prod);
unless (TestVersion $prod,$ver) { unless (TestVersion $prod, $ver) {
print "Sorry, version '$ver' for product '$prod' does not exist."; ThrowUserError('version_not_valid',
PutTrailer(); {'product' => $prod,
'version' => $ver});
exit; exit;
} }
} }
#
# Displays the form to edit a version
#
sub EmitFormElements ($$)
{
my ($product, $version) = @_;
print " <TH ALIGN=\"right\">Version:</TH>\n";
print " <TD><INPUT SIZE=64 MAXLENGTH=64 NAME=\"version\" VALUE=\"" .
value_quote($version) . "\">\n";
print " <INPUT TYPE=HIDDEN NAME=\"product\" VALUE=\"" .
value_quote($product) . "\"></TD>\n";
}
#
# Displays a text like "a.", "a or b.", "a, b or c.", "a, b, c or d."
#
sub PutTrailer (@)
{
my (@links) = ("Back to the <A HREF=\"query.cgi\">query page</A>", @_);
SendSQL("UNLOCK TABLES");
my $count = $#links;
my $num = 0;
print "<P>\n";
foreach (@links) {
print $_;
if ($num == $count) {
print ".\n";
}
elsif ($num == $count-1) {
print " or ";
}
else {
print ", ";
}
$num++;
}
PutFooter();
}
# #
# Preliminary checks: # Preliminary checks:
# #
@ -160,10 +116,7 @@ Bugzilla->login(LOGIN_REQUIRED);
print Bugzilla->cgi->header(); print Bugzilla->cgi->header();
unless (UserInGroup("editcomponents")) { unless (UserInGroup("editcomponents")) {
PutHeader("Not allowed"); ThrowUserError('auth_cant_edit_versions');
print "Sorry, you aren't a member of the 'editcomponents' group.\n";
print "And so, you aren't allowed to add, modify or delete versions.\n";
PutTrailer();
exit; exit;
} }
@ -171,17 +124,9 @@ unless (UserInGroup("editcomponents")) {
# #
# often used variables # often used variables
# #
my $cgi = Bugzilla->cgi;
my $product = trim($cgi->param('product') || ''); my $product = trim($cgi->param('product') || '');
my $version = trim($cgi->param('version') || ''); my $version = trim($cgi->param('version') || '');
my $action = trim($cgi->param('action') || ''); my $action = trim($cgi->param('action') || '');
my $localtrailer;
if ($version) {
$localtrailer = "<A HREF=\"editversions.cgi?product=" . url_quote($product) . "\">edit</A> more versions";
} else {
$localtrailer = "<A HREF=\"editversions.cgi\">edit</A> more versions";
}
# #
@ -189,31 +134,29 @@ if ($version) {
# #
unless ($product) { unless ($product) {
PutHeader("Select product");
SendSQL("SELECT products.name,products.description,'xyzzy' my @products = ();
SendSQL("SELECT products.name, products.description
FROM products FROM products
GROUP BY products.name
ORDER BY products.name"); ORDER BY products.name");
print "<TABLE BORDER=1 CELLPADDING=4 CELLSPACING=0><TR BGCOLOR=\"#6666FF\">\n";
print " <TH ALIGN=\"left\">Edit versions of ...</TH>\n";
print " <TH ALIGN=\"left\">Description</TH>\n";
print " <TH ALIGN=\"left\">Bugs</TH>\n";
#print " <TH ALIGN=\"left\">Edit</TH>\n";
print "</TR>";
while ( MoreSQLData() ) {
my ($product, $description, $bugs) = FetchSQLData();
$description ||= "<FONT COLOR=\"red\">missing</FONT>";
$bugs ||= "none";
print "<TR>\n";
print " <TD VALIGN=\"top\"><A HREF=\"editversions.cgi?product=", url_quote($product), "\"><B>$product</B></A></TD>\n";
print " <TD VALIGN=\"top\">$description</TD>\n";
print " <TD VALIGN=\"top\">$bugs</TD>\n";
#print " <TD VALIGN=\"top\"><A HREF=\"editversions.cgi?action=edit&product=", url_quote($product), "\">Edit</A></TD>\n";
}
print "</TR></TABLE>\n";
PutTrailer(); while ( MoreSQLData() ) {
my ($product, $description) = FetchSQLData();
my $prod = {};
$prod->{'name'} = $product;
$prod->{'description'} = $description;
push(@products, $prod);
}
$vars->{'products'} = \@products;
$template->process("admin/versions/select-product.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
exit; exit;
} }
@ -222,34 +165,33 @@ unless ($product) {
# #
unless ($action) { unless ($action) {
PutHeader("Select version of $product");
CheckProduct($product); CheckProduct($product);
my $product_id = get_product_id($product); my $product_id = get_product_id($product);
my @versions = ();
SendSQL("SELECT value SendSQL("SELECT value
FROM versions FROM versions
WHERE product_id=$product_id WHERE product_id = $product_id
ORDER BY value"); ORDER BY value");
print "<TABLE BORDER=1 CELLPADDING=4 CELLSPACING=0><TR BGCOLOR=\"#6666FF\">\n";
print " <TH ALIGN=\"left\">Edit version ...</TH>\n";
#print " <TH ALIGN=\"left\">Bugs</TH>\n";
print " <TH ALIGN=\"left\">Action</TH>\n";
print "</TR>";
while ( MoreSQLData() ) { while ( MoreSQLData() ) {
my $version = FetchOneColumn(); my $name = FetchOneColumn();
print "<TR>\n";
print " <TD VALIGN=\"top\"><A HREF=\"editversions.cgi?product=", url_quote($product), "&version=", url_quote($version), "&action=edit\"><B>$version</B></A></TD>\n"; my $version = {};
#print " <TD VALIGN=\"top\">$bugs</TD>\n";
print " <TD VALIGN=\"top\"><A HREF=\"editversions.cgi?product=", url_quote($product), "&version=", url_quote($version), "&action=del\"><B>Delete</B></A></TD>\n"; $version->{'name'} = $name;
print "</TR>";
} push(@versions, $version);
print "<TR>\n";
print " <TD VALIGN=\"top\">Add a new version</TD>\n"; }
print " <TD VALIGN=\"top\" ALIGN=\"middle\"><A HREF=\"editversions.cgi?product=", url_quote($product) . "&action=add\">Add</A></TD>\n";
print "</TR></TABLE>\n"; $vars->{'product'} = $product;
$vars->{'versions'} = \@versions;
$template->process("admin/versions/list.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
PutTrailer();
exit; exit;
} }
@ -263,25 +205,15 @@ unless ($action) {
# #
if ($action eq 'add') { if ($action eq 'add') {
PutHeader("Add version of $product");
CheckProduct($product); CheckProduct($product);
my $product_id = get_product_id($product); my $product_id = get_product_id($product);
#print "This page lets you add a new version to a bugzilla-tracked product.\n"; $vars->{'product'} = $product;
$template->process("admin/versions/create.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
print "<FORM METHOD=POST ACTION=editversions.cgi>\n";
print "<TABLE BORDER=0 CELLPADDING=4 CELLSPACING=0><TR>\n";
EmitFormElements($product, $version);
print "</TABLE>\n<HR>\n";
print "<INPUT TYPE=SUBMIT VALUE=\"Add\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"new\">\n";
print "</FORM>";
my $other = $localtrailer;
$other =~ s/more/other/;
PutTrailer($other);
exit; exit;
} }
@ -292,36 +224,40 @@ if ($action eq 'add') {
# #
if ($action eq 'new') { if ($action eq 'new') {
PutHeader("Adding new version");
CheckProduct($product); CheckProduct($product);
my $product_id = get_product_id($product); my $product_id = get_product_id($product);
# Cleanups and valididy checks # Cleanups and valididy checks
unless ($version) { unless ($version) {
print "You must enter a text for the new version. Please press\n"; ThrowUserError('version_blank_name',
print "<b>Back</b> and try again.\n"; {'name' => $version});
PutTrailer($localtrailer);
exit; exit;
} }
if (TestVersion($product,$version)) { if (TestVersion($product,$version)) {
print "The version '$version' already exists. Please press\n"; ThrowUserError('version_already_exists',
print "<b>Back</b> and try again.\n"; {'name' => $version,
PutTrailer($localtrailer); 'product' => $product});
exit; exit;
} }
# Add the new version # Add the new version
SendSQL("INSERT INTO versions ( " . SendSQL("INSERT INTO versions ( " .
"value, product_id" . "value, product_id" .
" ) VALUES ( " . " ) VALUES ( " .
SqlQuote($version) . ", $product_id)"); SqlQuote($version) . ", $product_id)");
# Make versioncache flush # Make versioncache flush
unlink "$datadir/versioncache"; unlink "$datadir/versioncache";
print "OK, done.<p>\n"; $vars->{'name'} = $version;
PutTrailer("<A HREF=\"editversions.cgi?product=$product&amp;action=add\">add</a> another version or $localtrailer"); $vars->{'product'} = $product;
$template->process("admin/versions/created.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
exit; exit;
} }
@ -335,7 +271,7 @@ if ($action eq 'new') {
# #
if ($action eq 'del') { if ($action eq 'del') {
PutHeader("Delete version of $product");
CheckVersion($product, $version); CheckVersion($product, $version);
my $product_id = get_product_id($product); my $product_id = get_product_id($product);
@ -343,52 +279,15 @@ if ($action eq 'del') {
FROM bugs FROM bugs
WHERE product_id = $product_id WHERE product_id = $product_id
AND version = " . SqlQuote($version)); AND version = " . SqlQuote($version));
my $bugs = FetchOneColumn(); my $bugs = FetchOneColumn() || 0;
print "<TABLE BORDER=1 CELLPADDING=4 CELLSPACING=0>\n"; $vars->{'bug_count'} = $bugs;
print "<TR BGCOLOR=\"#6666FF\">\n"; $vars->{'name'} = $version;
print " <TH VALIGN=\"top\" ALIGN=\"left\">Part</TH>\n"; $vars->{'product'} = $product;
print " <TH VALIGN=\"top\" ALIGN=\"left\">Value</TH>\n"; $template->process("admin/versions/confirm-delete.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
print "</TR><TR>\n";
print " <TH ALIGN=\"left\" VALIGN=\"top\">Product:</TH>\n";
print " <TD VALIGN=\"top\">$product</TD>\n";
print "</TR><TR>\n";
print " <TH ALIGN=\"left\" VALIGN=\"top\">Version:</TH>\n";
print " <TD VALIGN=\"top\">$version</TD>\n";
print "</TR><TR>\n";
print " <TH ALIGN=\"left\" VALIGN=\"top\">Bugs:</TH>\n";
print " <TD VALIGN=\"top\">", $bugs || 'none' , "</TD>\n";
print "</TR></TABLE>\n";
print "<H2>Confirmation</H2>\n";
if ($bugs) {
if (!Param("allowbugdeletion")) {
print "Sorry, there are $bugs bugs outstanding for this version.
You must reassign those bugs to another version before you can delete this
one.";
PutTrailer($localtrailer);
exit;
}
print "<TABLE BORDER=0 CELLPADDING=20 WIDTH=\"70%\" BGCOLOR=\"red\"><TR><TD>\n",
"There are bugs entered for this version! When you delete this ",
"version, <B><BLINK>all</BLINK></B> stored bugs will be deleted, too. ",
"You could not even see the bug history for this version anymore!\n",
"</TD></TR></TABLE>\n";
}
print "<P>Do you really want to delete this version?<P>\n";
print "<FORM METHOD=POST ACTION=editversions.cgi>\n";
print "<INPUT TYPE=SUBMIT VALUE=\"Yes, delete\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"delete\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"product\" VALUE=\"" .
value_quote($product) . "\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"version\" VALUE=\"" .
value_quote($version) . "\">\n";
print "</FORM>";
PutTrailer($localtrailer);
exit; exit;
} }
@ -399,7 +298,7 @@ one.";
# #
if ($action eq 'delete') { if ($action eq 'delete') {
PutHeader("Deleting version of $product");
CheckVersion($product,$version); CheckVersion($product,$version);
my $product_id = get_product_id($product); my $product_id = get_product_id($product);
@ -417,37 +316,48 @@ if ($action eq 'delete') {
if (Param("allowbugdeletion")) { if (Param("allowbugdeletion")) {
my $deleted_bug_count = 0;
SendSQL("SELECT bug_id SendSQL("SELECT bug_id
FROM bugs FROM bugs
WHERE product_id=$product_id WHERE product_id = $product_id
AND version=" . SqlQuote($version)); AND version = " . SqlQuote($version));
while (MoreSQLData()) { while (MoreSQLData()) {
my $bugid = FetchOneColumn(); my $bugid = FetchOneColumn();
PushGlobalSQLState(); PushGlobalSQLState();
SendSQL("DELETE FROM attachments WHERE bug_id=$bugid"); SendSQL("DELETE FROM attachments WHERE bug_id = $bugid");
SendSQL("DELETE FROM bugs_activity WHERE bug_id=$bugid"); SendSQL("DELETE FROM bugs_activity WHERE bug_id = $bugid");
SendSQL("DELETE FROM dependencies WHERE blocked=$bugid"); SendSQL("DELETE FROM dependencies WHERE blocked = $bugid");
PopGlobalSQLState(); PopGlobalSQLState();
}
print "Attachments, bug activity and dependencies deleted.<BR>\n";
$deleted_bug_count++;
}
$vars->{'deleted_bug_count'} = $deleted_bug_count;
# Deleting the rest is easier: # Deleting the rest is easier:
SendSQL("DELETE FROM bugs SendSQL("DELETE FROM bugs
WHERE product_id = $product_id WHERE product_id = $product_id
AND version=" . SqlQuote($version)); AND version = " . SqlQuote($version));
print "Bugs deleted.<BR>\n";
} }
SendSQL("DELETE FROM versions SendSQL("DELETE FROM versions
WHERE product_id = $product_id WHERE product_id = $product_id
AND value=" . SqlQuote($version)); AND value = " . SqlQuote($version));
print "Version deleted.<P>\n";
SendSQL("UNLOCK TABLES;");
unlink "$datadir/versioncache"; unlink "$datadir/versioncache";
PutTrailer($localtrailer);
$vars->{'name'} = $version;
$vars->{'product'} = $product;
$template->process("admin/versions/deleted.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
exit; exit;
} }
@ -460,27 +370,17 @@ if ($action eq 'delete') {
# #
if ($action eq 'edit') { if ($action eq 'edit') {
PutHeader("Edit version of $product");
CheckVersion($product,$version); CheckVersion($product,$version);
my $product_id = get_product_id($product); my $product_id = get_product_id($product);
print "<FORM METHOD=POST ACTION=editversions.cgi>\n"; $vars->{'name'} = $version;
print "<TABLE BORDER=0 CELLPADDING=4 CELLSPACING=0><TR>\n"; $vars->{'product'} = $product;
EmitFormElements($product, $version); $template->process("admin/versions/edit.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
print "</TR></TABLE>\n";
print "<INPUT TYPE=HIDDEN NAME=\"versionold\" VALUE=\"" .
value_quote($version) . "\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"update\">\n";
print "<INPUT TYPE=SUBMIT VALUE=\"Update\">\n";
print "</FORM>";
my $other = $localtrailer;
$other =~ s/more/other/;
PutTrailer($other);
exit; exit;
} }
@ -491,7 +391,6 @@ if ($action eq 'edit') {
# #
if ($action eq 'update') { if ($action eq 'update') {
PutHeader("Update version of $product");
my $versionold = trim($cgi->param('versionold') || ''); my $versionold = trim($cgi->param('versionold') || '');
@ -507,13 +406,16 @@ if ($action eq 'update') {
if ($version ne $versionold) { if ($version ne $versionold) {
unless ($version) { unless ($version) {
print "Sorry, I can't delete the version text."; SendSQL('UNLOCK TABLES');
PutTrailer($localtrailer); ThrowUserError('version_blank_name');
exit; exit;
} }
if (TestVersion($product,$version)) { if (TestVersion($product,$version)) {
print "Sorry, version '$version' is already in use."; SendSQL('UNLOCK TABLES');
PutTrailer($localtrailer); ThrowUserError('version_already_exists',
{'name' => $version,
'product' => $product});
exit; exit;
} }
SendSQL("UPDATE bugs SendSQL("UPDATE bugs
@ -522,14 +424,22 @@ if ($action eq 'update') {
WHERE version=" . SqlQuote($versionold) . " WHERE version=" . SqlQuote($versionold) . "
AND product_id = $product_id"); AND product_id = $product_id");
SendSQL("UPDATE versions SendSQL("UPDATE versions
SET value=" . SqlQuote($version) . " SET value = " . SqlQuote($version) . "
WHERE product_id = $product_id WHERE product_id = $product_id
AND value=" . SqlQuote($versionold)); AND value = " . SqlQuote($versionold));
unlink "$datadir/versioncache"; unlink "$datadir/versioncache";
print "Updated version.<BR>\n";
$vars->{'updated_name'} = 1;
} }
PutTrailer($localtrailer); SendSQL('UNLOCK TABLES');
$vars->{'name'} = $version;
$vars->{'product'} = $product;
$template->process("admin/versions/updated.html.tmpl",
$vars)
|| ThrowTemplateError($template->error());
exit; exit;
} }
@ -538,6 +448,4 @@ if ($action eq 'update') {
# #
# No valid action found # No valid action found
# #
ThrowUserError('version_no_action');
PutHeader("Error");
print "I don't have a clue what you want.<BR>\n";

Просмотреть файл

@ -589,6 +589,14 @@
'deleted_bug_count' 'deleted_bug_count'
], ],
'admin/versions/confirm-delete.html.tmpl' => [
'bug_count'
],
'admin/versions/deleted.html.tmpl' => [
'deleted_bug_count'
],
'account/login.html.tmpl' => [ 'account/login.html.tmpl' => [
'target', 'target',
], ],

Просмотреть файл

@ -186,6 +186,11 @@
Sorry, you aren't a member of the 'editcomponents' group, and so Sorry, you aren't a member of the 'editcomponents' group, and so
you aren't allowed to add, modify or delete milestones. you aren't allowed to add, modify or delete milestones.
[% ELSIF error == "auth_cant_edit_versions" %]
[% title = "Access Denied" %]
Sorry, you aren't a member of the 'editcomponents' group, and so
you aren't allowed to add, modify or delete versions.
[% ELSIF error == "component_already_exists" %] [% ELSIF error == "component_already_exists" %]
[% title = "Component Already Exists" %] [% title = "Component Already Exists" %]
A component with the name '[% name FILTER html %]' already exists. A component with the name '[% name FILTER html %]' already exists.
@ -232,7 +237,8 @@
[% ELSIF error == "product_not_specified" %] [% ELSIF error == "product_not_specified" %]
[% title = "No Product Specified" %] [% title = "No Product Specified" %]
No product specified when trying to edit components. No product specified when trying to edit components, milestones or
versions.
[% ELSIF error == "component_not_specified" %] [% ELSIF error == "component_not_specified" %]
[% title = "No Component Specified" %] [% title = "No Component Specified" %]
@ -925,6 +931,33 @@
[% title = "Unknown Tab" %] [% title = "Unknown Tab" %]
<code>[% current_tab_name FILTER html %]</code> is not a legal tab name. <code>[% current_tab_name FILTER html %]</code> is not a legal tab name.
[% ELSIF error == "version_already_exists" %]
[% title = "Version Already Exists" %]
The version '[% name FILTER html %]' already exists for product '
[%- product FILTER html %]'.
[% ELSIF error == "version_blank_name" %]
[% title = "Blank Version Name Not Allowed" %]
You must enter a name for this version.
[% ELSIF error == "version_name_too_long" %]
[% title = "Version Name Is Too Long" %]
The name of a version is limited to 20 characters.
'[% name FILTER html %]' is too long ([% name.length %] characters).
[% ELSIF error == "version_no_action" %]
[% title = "No valid action specified" %]
No valid action was specified when trying to edit versions.
[% ELSIF error == "version_not_specified" %]
[% title = "No Version Specified" %]
No version specified when trying to edit versions.
[% ELSIF error == "version_not_valid" %]
[% title = "Specified Version Does Not Exist" %]
The version '[% version FILTER html %]' for product
'[% product FILTER html %]' does not exist.
[% ELSIF error == "votes_must_be_nonnegative" %] [% ELSIF error == "votes_must_be_nonnegative" %]
[% title = "Votes Must Be Non-negative" %] [% title = "Votes Must Be Non-negative" %]
Only use non-negative numbers for your [% terms.bug %] votes. Only use non-negative numbers for your [% terms.bug %] votes.