[%# 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. #%] [%# Define strings that will serve as the title and header of this page %] [% title = BLOCK %] Attachment [% attachment.id %] Details for [% terms.Bug %] [%+ attachment.bug_id %] [% END %] [% header = BLOCK %] Attachment [% attachment.id %] Details for [%+ "$terms.Bug ${attachment.bug_id}" FILTER bug_link(attachment.bug_id) FILTER none %] [% END %] [% subheader = BLOCK %][% attachment.bug.short_desc FILTER html %][% END %] [% PROCESS global/header.html.tmpl title = title header = header subheader = subheader doc_section = "attachments.html" javascript_urls = ['js/attachment.js', 'js/field.js'] style_urls = ['skins/standard/attachment.css'] yui = [ 'autocomplete' ] bodyclasses = "no_javascript" %] [%# No need to display the Diff button and iframe if the attachment is not a patch. %] [% use_patchviewer = (feature_enabled('patch_viewer') && attachment.ispatch) %] [% can_edit = attachment.validate_can_edit %] [% editable_or_hide = can_edit ? "" : " bz_hidden_option" %]
[% IF user.id %] [% END %]
[% "[patch]" IF attachment.ispatch%] [% attachment.description FILTER html %] [% IF can_edit %] (edit details) [% END %]
[% attachment.filename FILTER html %] ([% attachment.contenttype FILTER html %]), [% IF attachment.datasize %] [%+ attachment.datasize FILTER unitconvert %] [% ELSE %] deleted [% END %], created by [%+ INCLUDE global/user.html.tmpl who = attachment.attacher %] [% IF attachment.isprivate %]; only visible to [% Param('insidergroup') FILTER html %] members [% END %]
(hide)
  [% INCLUDE global/textarea.html.tmpl id = 'description' name = 'description' minrows = 3 cols = 25 wrap = 'soft' classes = 'block' _ editable_or_hide defaultcontent = attachment.description %]
Creator: [%+ INCLUDE global/user.html.tmpl who = attachment.attacher %]
Size: [% IF attachment.datasize %] [%+ attachment.datasize FILTER unitconvert %] [% ELSE %] deleted [% END %]
[% IF user.is_insider %]
[% IF can_edit %] [% ELSE %] Is Private: [%+ attachment.isprivate ? "yes" : "no" %] [% END %]
[% END %]
[% IF !attachment.datasize %]
The content of this attachment has been deleted.
[% ELSIF !Param("allow_attachment_display") %]

The attachment is not viewable in your browser due to security restrictions enabled by your [% terms.Bugzilla %] administrator.

In order to view the attachment, you first have to download it.

[% ELSIF attachment.is_viewable %]
[% INCLUDE global/textarea.html.tmpl id = 'editFrame' name = 'comment' classes = 'bz_default_hidden' minrows = 10 cols = 80 wrap = 'soft' disabled = 'disabled' defaultcontent = (attachment.contenttype.match('^text\/')) ? attachment.data.replace('(.*\n|.+)', '>$1') : undef %] [% IF attachment.contenttype == 'text/plain' AND is_safe_url(attachment.data) %]

[% IF attachment.datasize < 120 %] [% attachment.data FILTER html %] [% ELSE %] [% attachment.data FILTER truncate(80) FILTER html %] ... [% attachment.data.match('.*(.{20})$').0 FILTER html %] [% END %]

[% ELSIF attachment.contenttype == "text/html" %] [%# For security reasons (clickjacking, embedded scripts), we never # render HTML pages from here. The source code is displayed instead. %] [% INCLUDE global/textarea.html.tmpl id = 'viewFrame' minrows = 10 cols = 80 defaultcontent = attachment.data readonly = 'readonly' %] [% ELSE %] [% END %]
[% ELSE %]

Attachment is not viewable in your browser because its MIME type ([% attachment.contenttype FILTER html %]) is not one that your browser is able to display.

Download the attachment.

[% END %]
[% IF user.id %]
[% classNames = 'block' %] [% classNames = "$classes bz_private" IF attachment.isprivate %] [% INCLUDE global/textarea.html.tmpl id = 'comment' name = 'comment' minrows = 10 cols = 80 wrap = 'soft' classes = classNames %]
[% END %]
[% IF attachment.flag_types.size > 0 %] [% PROCESS "flag/list.html.tmpl" flag_types = attachment.flag_types read_only_flags = !can_edit %] [% END %]
[% Hook.process('form_before_submit') %] [% IF user.id %]
[% END %]
Actions: View [% IF use_patchviewer %] | Diff [% END %] [% IF Param("allow_attachment_deletion") && user.in_group('admin') && attachment.datasize > 0 %] | Delete [% END %] [% Hook.process('action') %]
Attachments on [% "$terms.bug ${attachment.bug_id}" FILTER bug_link(attachment.bug_id) FILTER none %]: [% FOREACH a = attachments %] [% IF a == attachment.id %] [%+ a %] [% ELSE %] [% a %] [% END %] [% " |" UNLESS loop.last() %] [% END %]
[% IF can_edit %] [% END %] [% Hook.process('end') %] [% PROCESS global/footer.html.tmpl %]