diff options
author | Byron Jones <glob@mozilla.com> | 2015-04-28 06:44:41 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-04-28 06:44:41 +0200 |
commit | 92059de568ef17628928a6cf19d6fca3ee505f2b (patch) | |
tree | 00fb913f802252a4a6bb98f69d28c353b1f5ca02 /extensions/BMO/template | |
parent | 29e3eb8b03ba072fa4ce092b45fb98c2e2352744 (diff) | |
download | bugzilla-92059de568ef17628928a6cf19d6fca3ee505f2b.tar.gz bugzilla-92059de568ef17628928a6cf19d6fca3ee505f2b.tar.xz |
Bug 1149659: crash signature not linking to signature summary on socorro
Diffstat (limited to 'extensions/BMO/template')
-rw-r--r-- | extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl b/extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl new file mode 100644 index 000000000..cd826ed8b --- /dev/null +++ b/extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl @@ -0,0 +1,38 @@ +[%# 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. + #%] + +[% + rendered_custom_fields.push('cf_crash_signature'); + WRAPPER bug_modal/field.html.tmpl + field = field + field_type = field.type + hide_on_view = bug.${field.name} == "" || bug.${field.name} == "---"; +%] + [% + IF split_cf_crash_signature.size; + FOREACH sig IN split_cf_crash_signature; + "<div>"; + IF sig.match('^\[\@\s*') && sig.match('\s*\]$'); + sig = sig.replace('(^\[\@\s*|\s*\]$)', ''); + %] + <a href="https://crash-stats.mozilla.com/report/list?signature=[% sig FILTER uri %]" target="_blank"> + [@ [% sig FILTER html %] ] + </a> + [% + ELSE; + sig FILTER html; + END; + "</div>"; + END; + ELSIF value; + %] + <span class="multiline-value">[% value FILTER html FILTER html_line_break %]</span> + [% + END + %] +[% END %] |