[%# 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 the Bugzilla Bug Tracking System. # # The Initial Developer of the Original Code is Netscape Communications # Corporation. Portions created by Netscape are # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # # Contributor(s): Myk Melez # Frédéric Buclin #%] [%# INTERFACE: # product: object; the new product. # versions: array; versions for the new product. # components: array; components for the new product. # milestones: array; milestones for the new product. # defaults: hash; keys are names of fields, values are defaults for # those fields #%] [%# The global Bugzilla->cgi object is used to obtain form variable values. %] [% USE Bugzilla %] [% cgi = Bugzilla.cgi %] [% PROCESS global/variables.none.tmpl %] [% PROCESS global/header.html.tmpl title = 'Verify New Product Details...' %]
[% PROCESS "global/hidden-fields.html.tmpl" exclude=("^version|component|target_milestone|bit-\\d+$") %] [%# Verify the version, component, and target milestone fields. %]

Verify Version, Component[% ", Target Milestone" IF Param("usetargetmilestone") %]

[% IF Param("usetargetmilestone") %] You are moving the [% terms.bug %](s) to the product [% cgi.param("product") FILTER html %], and the version, component, and/or target milestone fields are no longer correct. Please set the correct version, component, and target milestone now: [% ELSE %] You are moving the [% terms.bug %](s) to the product [% cgi.param("product") FILTER html %], and the version and component fields are no longer correct. Please set the correct version and component now: [% END %]

[% IF Param("usetargetmilestone") %] [% END %]
Version:
[% PROCESS "global/select-menu.html.tmpl" name="version" options=versions default=defaults.version size=10 %]
Component:
[% PROCESS "global/select-menu.html.tmpl" name="component" options=components default=defaults.component size=10 %]
Target Milestone:
[% PROCESS "global/select-menu.html.tmpl" name="target_milestone" options=milestones default=defaults.target_milestone size=10 %]

Verify [% terms.Bug %] Group

[% IF old_groups.size %]

These groups are not legal for the '[% product.name FILTER html %]' product or you are not allowed to restrict [% terms.bugs %] to these groups. [%+ terms.Bugs %] will no longer be restricted to these groups and may become public if no other group applies:
[% FOREACH group = old_groups %]
[% END %]

[% END %] [% mandatory_groups = [] %] [% optional_groups = [] %] [% FOREACH gid = product.group_controls.keys %] [% group = product.group_controls.$gid %] [% NEXT UNLESS group.group.is_active %] [% IF group.membercontrol == constants.CONTROLMAPMANDATORY || (group.othercontrol == constants.CONTROLMAPMANDATORY && !user.in_group(group.group.name)) %] [% mandatory_groups.push(group) %] [% ELSIF (group.membercontrol != constants.CONTROLMAPNA && user.in_group(group.group.name)) || group.othercontrol != constants.CONTROLMAPNA %] [% optional_groups.push(group) %] [% END %] [% END %] [% IF optional_groups.size %]

These groups are optional. You can decide to restrict [% terms.bugs %] to one or more of the following groups:
[% FOREACH group = optional_groups %]
[% END %]

[% END %] [% IF mandatory_groups.size %]

These groups are mandatory and [% terms.bugs %] will be automatically restricted to these groups:
[% FOREACH group = mandatory_groups %]
[% END %]

[% END %]

[%# If 'id' is defined, then we are editing a single bug. # Else we are editing several bugs at once. %] [% IF cgi.param('id') AND cgi.param('id').match('^\d+$') %] [% id = cgi.param('id') %] Cancel and Return to [% "$terms.bug $id" FILTER bug_link(id) FILTER none %] [% ELSE %] Cancel and Return to the last search results [% END %] [% PROCESS global/footer.html.tmpl %]