diff options
author | Byron Jones <glob@mozilla.com> | 2014-11-18 05:42:18 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-11-18 05:42:18 +0100 |
commit | 891689f1fdf09bf06c5e5dd944f6a6ae43f2cfd8 (patch) | |
tree | 54baeedd2645af5436493285b8d70ad690e942ee /extensions/TryAutoLand/template/en | |
parent | ecc04a6622cb9447eaca29be8a1c25947c1e1016 (diff) | |
download | bugzilla-891689f1fdf09bf06c5e5dd944f6a6ae43f2cfd8.tar.gz bugzilla-891689f1fdf09bf06c5e5dd944f6a6ae43f2cfd8.tar.xz |
Bug 1098956: remove autoland support
Diffstat (limited to 'extensions/TryAutoLand/template/en')
5 files changed, 0 insertions, 171 deletions
diff --git a/extensions/TryAutoLand/template/en/default/hook/bug/edit-after_custom_fields.html.tmpl b/extensions/TryAutoLand/template/en/default/hook/bug/edit-after_custom_fields.html.tmpl deleted file mode 100644 index ed6224afe..000000000 --- a/extensions/TryAutoLand/template/en/default/hook/bug/edit-after_custom_fields.html.tmpl +++ /dev/null @@ -1,101 +0,0 @@ -[%# This Source Code Form is subject to the terms of the Mozilla Public - # License, v. 2.0. If a copy of the MPL was not distributed with this - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - # - # This Source Code Form is "Incompatible With Secondary Licenses", as - # defined by the Mozilla Public License, v. 2.0. - #%] - -[% IF user.in_group('autoland') %] - [% autoland_attachments = [] %] - [% autoland_waiting = 0 %] - [% autoland_running = 0 %] - [% autoland_finished = 0 %] - [% FOREACH attachment = bug.attachments %] - [% NEXT IF attachment.isprivate && !user.is_insider && attachment.attacher.id != user.id %] - [% NEXT IF attachment.isobsolete %] - [% NEXT IF !attachment.ispatch %] - [% autoland_attachments.push(attachment) %] - [% IF attachment.autoland_checked %] - [% IF attachment.autoland_status == 'waiting' %] - [% autoland_waiting = autoland_waiting + 1 %] - [% END %] - [% IF attachment.autoland_status == 'running' %] - [% autoland_running = autoland_running + 1 %] - [% END %] - [% IF attachment.autoland_status == 'success' || attachment.autoland_status == 'failed' %] - [% autoland_finished = autoland_finished + 1 %] - [% END %] - [% END %] - [% END %] - [% IF autoland_attachments.size %] - <tr> - <th class="field_label field_land_autoland"> - <a title="[% help_html.autoland FILTER txt FILTER collapse FILTER html %]" - class="field_help_link" href="https://wiki.mozilla.org/Build:Autoland"> - AutoLand:</a> - </th> - <td> - <span id="autoland_edit_container"> - (<a href="#" id="autoland_edit_action">edit</a>) - Total: [% autoland_attachments.size FILTER html %] - - <span class="autoland_waiting">Waiting:</span> [% autoland_waiting FILTER html %] - - <span class="autoland_running">Running:</span> [% autoland_running FILTER html %] - - <span class="autoland_success">Finished:</span> [% autoland_finished FILTER html %] - </span> - <div id="autoland_edit_input"> - Branches (required):<br> - <input type="text" id="autoland_branches" name="autoland_branches" - value="[% bug.autoland_branches FILTER html %]" size="40" - class="text_input"><br> - Try Syntax (required): (Default: [% autoland_default_try_syntax FILTER html %])<br> - <input type="text" id="autoland_try_syntax" name="autoland_try_syntax" - value="[% bug.autoland_try_syntax || autoland_default_try_syntax FILTER html %]" size="40" - class="text_input"><br> - Patches: - <br> - <table id="autoland_edit_table"> - [% FOREACH attachment = autoland_attachments %] - <tr> - <td> - [% IF attachment.autoland_checked %] - <input type="hidden" name="defined_autoland_attachments" - value="[% attachment.id FILTER html %]"> - [% END %] - <input type="checkbox" name="autoland_attachments" value="[% attachment.id FILTER html %]" - [% ' checked="checked"' IF attachment.autoland_checked %] - [% IF attachment.autoland_status == 'running' || attachment.autoland_status == 'waiting' %] - disabled="disabled" - [% END %]> - </td> - <td> - <span title="[% attachment.description FILTER html %]"> - [% attachment.filename FILTER html %] - </span> - <td> - [% IF attachment.autoland_checked %] - <span class="autoland_[% attachment.autoland_status FILTER html %]"> - [% attachment.autoland_status FILTER html %] - </span> - [% END %] - </td> - <td> - [% IF attachment.autoland_checked %] - [% attachment.autoland_status_when FILTER time('%Y-%m-%d %H:%M') %] - [% END %] - </td> - </tr> - [% END %] - </table> - </div> - <script type="text/javascript"> - hideEditableField('autoland_edit_container', - 'autoland_edit_input', - 'autoland_edit_action', - '', - ''); - </script> - </td> - </tr> - [% END %] -[% END %] diff --git a/extensions/TryAutoLand/template/en/default/hook/bug/field-help-end.none.tmpl b/extensions/TryAutoLand/template/en/default/hook/bug/field-help-end.none.tmpl deleted file mode 100644 index 899db60c4..000000000 --- a/extensions/TryAutoLand/template/en/default/hook/bug/field-help-end.none.tmpl +++ /dev/null @@ -1,15 +0,0 @@ -[%# This Source Code Form is subject to the terms of the Mozilla Public - # License, v. 2.0. If a copy of the MPL was not distributed with this - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - # - # This Source Code Form is "Incompatible With Secondary Licenses", as - # defined by the Mozilla Public License, v. 2.0. - #%] - -[% - vars.help_html.autoland = - "TryAutoLand is a BMO extension that allows integration with the $terms.Bugzilla - AutoLanding system. Select patches on a $terms.bug will be picked up - automatically and landed on the try build server for specified branches. - Results of the try build will be sent back to the bug report as comments." -%] diff --git a/extensions/TryAutoLand/template/en/default/hook/bug/show-header-end.html.tmpl b/extensions/TryAutoLand/template/en/default/hook/bug/show-header-end.html.tmpl deleted file mode 100644 index c61f478ea..000000000 --- a/extensions/TryAutoLand/template/en/default/hook/bug/show-header-end.html.tmpl +++ /dev/null @@ -1,11 +0,0 @@ -[%# This Source Code Form is subject to the terms of the Mozilla Public - # License, v. 2.0. If a copy of the MPL was not distributed with this - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - # - # This Source Code Form is "Incompatible With Secondary Licenses", as - # defined by the Mozilla Public License, v. 2.0. - #%] - -[% IF autoland %] - [% style_urls.push('extensions/TryAutoLand/web/style.css') %] -[% END %] diff --git a/extensions/TryAutoLand/template/en/default/hook/global/user-error-auth_failure_object.html.tmpl b/extensions/TryAutoLand/template/en/default/hook/global/user-error-auth_failure_object.html.tmpl deleted file mode 100644 index 50a1e48d5..000000000 --- a/extensions/TryAutoLand/template/en/default/hook/global/user-error-auth_failure_object.html.tmpl +++ /dev/null @@ -1,11 +0,0 @@ -[%# This Source Code Form is subject to the terms of the Mozilla Public - # License, v. 2.0. If a copy of the MPL was not distributed with this - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - # - # This Source Code Form is "Incompatible With Secondary Licenses", as - # defined by the Mozilla Public License, v. 2.0. - #%] - -[% IF object == 'autoland_attachments' %] - AutoLand attachments -[% END %] diff --git a/extensions/TryAutoLand/template/en/default/hook/global/user-error-errors.html.tmpl b/extensions/TryAutoLand/template/en/default/hook/global/user-error-errors.html.tmpl deleted file mode 100644 index c12950dcf..000000000 --- a/extensions/TryAutoLand/template/en/default/hook/global/user-error-errors.html.tmpl +++ /dev/null @@ -1,33 +0,0 @@ -[%# This Source Code Form is subject to the terms of the Mozilla Public - # License, v. 2.0. If a copy of the MPL was not distributed with this - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - # - # This Source Code Form is "Incompatible With Secondary Licenses", as - # defined by the Mozilla Public License, v. 2.0. - #%] - -[% IF error == "autoland_invalid_status" %] - [% title = "AutoLand Invalid Status" %] - The status '[% status FILTER html %]' is not a valid - status for the AutoLand extension. Valid statuses - are [% valid.join(', ') FILTER html %]. - -[% ELSIF error == "autoland_invalid_attach_id" %] - [% title = "AutoLand Invalid Attachment ID" %] - The attachment id '[% attach_id FILTER html %]' is not - a valid id for the AutoLand extension. - -[% ELSIF error == "autoland_empty_try_syntax" %] - [% title = "AutoLand Empty Try Syntax" %] - You cannot have a value for Branches and have an empty Try Syntax value. - -[% ELSIF error == "autoland_empty_branches" %] - [% title = "AutoLand Empty Branches" %] - You cannot check one or more patches for AutoLanding and have an empty - Branches value. - -[% ELSIF error == "autoland_update_invalid_action" %] - [% title = "AutoLand Update Invalid Action" %] - The action '[% action FILTER html %]' is not a valid action. - Valid actions are [% valid.join(', ') FILTER html %]. -[% END %] |