bzrmirror%bugzilla.org 81d0ccc2e1 Merge branch 'master' of ssh://git.mozilla.org/bugzilla/bugzilla into docs-relicensing
(except some changes not merged; will do them later)

Conflicts:
docs/en/rst/administration.rst
docs/en/rst/installation.rst
docs/en/rst/using.rst


git-svn-id: svn://10.0.0.236/trunk@265740 18797224-902f-48f8-a5cc-f745e15eee43
2014-12-03 22:39:24 +00:00

48 lines
1.8 KiB
Cheetah

[%# 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.
#%]
[%# INTERFACE:
#
# This template supports the same parameters as global/textarea.html.tmpl
# with the exception of "name" and "id", which will always be "comment".
#%]
[% IF feature_enabled('jsonrpc') %]
<div id="comment_tabs" role="tablist">
<div id="comment_tab" class="comment_tab active_comment_tab"
role="tab" aria-selected="true"
onclick="show_comment_edit()">Comment</div>
<div id="comment_preview_tab" class="comment_tab"
role="tab" aria-selected="false"
onclick="show_comment_preview([% bug.id FILTER none %])">Preview</div>
</div>
[% END %]
[% INCLUDE global/textarea.html.tmpl
name = "comment"
id = "comment"
%]
[% IF feature_enabled('jsonrpc') %]
<div id="comment_preview" class="bz_default_hidden bz_comment">
<div id="comment_preview_loading" class="bz_default_hidden">Generating Preview...</div>
<div id="comment_preview_error" class="bz_default_hidden"></div>
<div id="comment_preview_text" class="bz_comment_text"></div>
</div>
[% END %]
[% IF user.use_markdown %]
<div id="comment_markdown">
<input type="checkbox" name="use_markdown"
id="use_markdown" value="1" checked="checked"
onchange="refresh_markdown_preview([% bug.id FILTER none %])">
<label id="use_markdown_label" for="use_markdown">Use Markdown for this [% terms.comment %]</label>
(<a href="page.cgi?id=markdown.html" target="_blank" title="View Markdown Syntax Guide">help</a>)
</div>
[% END %]