Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
adceb1cd
Commit
adceb1cd
authored
Feb 13, 2014
by
Byron Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 40896: Bugzilla needs a "preview" mode for comments
r=gerv, a=justdave
parent
a7ca8632
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
214 additions
and
6 deletions
+214
-6
Bug.pm
Bugzilla/WebService/Bug.pm
+66
-0
field.js
js/field.js
+76
-0
global.css
skins/standard/global.css
+34
-0
comment.html.tmpl
template/en/default/bug/comment.html.tmpl
+36
-0
create.html.tmpl
template/en/default/bug/create/create.html.tmpl
+1
-3
edit.html.tmpl
template/en/default/bug/edit.html.tmpl
+1
-3
No files found.
Bugzilla/WebService/Bug.pm
View file @
adceb1cd
...
...
@@ -318,6 +318,30 @@ sub comments {
return
{
bugs
=>
\%
bugs
,
comments
=>
\%
comments
};
}
sub
render_comment
{
my
(
$self
,
$params
)
=
@_
;
unless
(
defined
$params
->
{
text
})
{
ThrowCodeError
(
'params_required'
,
{
function
=>
'Bug.render_comment'
,
params
=>
[
'text'
]
});
}
Bugzilla
->
switch_to_shadow_db
();
my
$bug
=
$params
->
{
id
}
?
Bugzilla::
Bug
->
check
(
$params
->
{
id
})
:
undef
;
my
$tmpl
=
'[% text FILTER quoteUrls(bug) %]'
;
my
$html
;
my
$template
=
Bugzilla
->
template
;
$template
->
process
(
\
$tmpl
,
{
bug
=>
$bug
,
text
=>
$params
->
{
text
}},
\
$html
);
return
{
html
=>
$html
};
}
# Helper for Bug.comments
sub
_translate_comment
{
my
(
$self
,
$comment
,
$filters
)
=
@_
;
...
...
@@ -4682,6 +4706,48 @@ The comment tag provided is longer than the maximum length.
=back
=head2 render_comment
B<UNSTABLE>
=over
=item B<Description>
Returns the HTML rendering of the provided comment text.
=item B<Params>
=over
=item C<text>
B<Required> C<strings> Text comment text to render.
=item C<id>
C<int> The ID of the bug to render the comment against.
=back
=item B<Returns>
C<html> containing the HTML rendering.
=item B<Errors>
This method can throw all of the errors that L</get> throws.
=item B<History>
=over
=item Added in Bugzilla B<5.0>.
=back
=back
=head1 B<Methods in need of POD>
=over
...
...
js/field.js
View file @
adceb1cd
...
...
@@ -983,3 +983,79 @@ function initDirtyFieldTracking() {
});
}
}
/**
* Comment preview
*/
var
last_comment_text
=
''
;
function
show_comment_preview
(
bug_id
)
{
var
Dom
=
YAHOO
.
util
.
Dom
;
var
comment
=
document
.
getElementById
(
'comment'
);
var
preview
=
document
.
getElementById
(
'comment_preview'
);
if
(
!
comment
||
!
preview
)
return
;
if
(
Dom
.
hasClass
(
'comment_preview_tab'
,
'active_comment_tab'
))
return
;
preview
.
style
.
width
=
(
comment
.
clientWidth
-
4
)
+
'px'
;
preview
.
style
.
height
=
comment
.
offsetHeight
+
'px'
;
Dom
.
addClass
(
comment
,
'bz_default_hidden'
);
Dom
.
removeClass
(
'comment_tab'
,
'active_comment_tab'
);
Dom
.
removeClass
(
preview
,
'bz_default_hidden'
);
Dom
.
addClass
(
'comment_preview_tab'
,
'active_comment_tab'
);
Dom
.
addClass
(
'comment_preview_error'
,
'bz_default_hidden'
);
if
(
last_comment_text
==
comment
.
value
)
return
;
Dom
.
addClass
(
'comment_preview_text'
,
'bz_default_hidden'
);
Dom
.
removeClass
(
'comment_preview_loading'
,
'bz_default_hidden'
);
YAHOO
.
util
.
Connect
.
setDefaultPostHeader
(
'application/json'
,
true
);
YAHOO
.
util
.
Connect
.
asyncRequest
(
'POST'
,
'jsonrpc.cgi'
,
{
success
:
function
(
res
)
{
data
=
YAHOO
.
lang
.
JSON
.
parse
(
res
.
responseText
);
if
(
data
.
error
)
{
Dom
.
addClass
(
'comment_preview_loading'
,
'bz_default_hidden'
);
Dom
.
removeClass
(
'comment_preview_error'
,
'bz_default_hidden'
);
Dom
.
get
(
'comment_preview_error'
).
innerHTML
=
YAHOO
.
lang
.
escapeHTML
(
data
.
error
.
message
);
}
else
{
document
.
getElementById
(
'comment_preview_text'
).
innerHTML
=
data
.
result
.
html
;
Dom
.
addClass
(
'comment_preview_loading'
,
'bz_default_hidden'
);
Dom
.
removeClass
(
'comment_preview_text'
,
'bz_default_hidden'
);
last_comment_text
=
comment
.
value
;
}
},
failure
:
function
(
res
)
{
Dom
.
addClass
(
'comment_preview_loading'
,
'bz_default_hidden'
);
Dom
.
removeClass
(
'comment_preview_error'
,
'bz_default_hidden'
);
Dom
.
get
(
'comment_preview_error'
).
innerHTML
=
YAHOO
.
lang
.
escapeHTML
(
res
.
responseText
);
}
},
YAHOO
.
lang
.
JSON
.
stringify
({
version
:
"1.1"
,
method
:
'Bug.render_comment'
,
params
:
{
id
:
bug_id
,
text
:
comment
.
value
}
})
);
}
function
show_comment_edit
()
{
var
comment
=
document
.
getElementById
(
'comment'
);
var
preview
=
document
.
getElementById
(
'comment_preview'
);
if
(
!
comment
||
!
preview
)
return
;
if
(
YAHOO
.
util
.
Dom
.
hasClass
(
comment
,
'active_comment_tab'
))
return
;
YAHOO
.
util
.
Dom
.
addClass
(
preview
,
'bz_default_hidden'
);
YAHOO
.
util
.
Dom
.
removeClass
(
'comment_preview_tab'
,
'active_comment_tab'
);
YAHOO
.
util
.
Dom
.
removeClass
(
comment
,
'bz_default_hidden'
);
YAHOO
.
util
.
Dom
.
addClass
(
'comment_tab'
,
'active_comment_tab'
);
}
skins/standard/global.css
View file @
adceb1cd
...
...
@@ -678,6 +678,40 @@ input.required, select.required, span.required_explanation {
margin-left
:
-1px
;
}
.comment_tab
{
float
:
left
;
border
:
1px
solid
silver
;
border-bottom
:
0px
;
padding
:
2px
1em
;
cursor
:
pointer
;
background
:
transparent
;
}
.active_comment_tab
{
background
:
#fff
;
font-weight
:
bold
;
}
#comment_preview
{
border
:
1px
solid
silver
;
padding
:
2px
;
overflow
:
auto
;
margin
:
0px
;
}
#comment_preview_text
{
margin
:
0px
;
width
:
auto
;
}
#comment_preview_loading
{
font-style
:
italic
;
}
#comment
{
margin-top
:
0px
;
}
/*******************/
/* Form Validation */
/*******************/
...
...
template/en/default/bug/comment.html.tmpl
0 → 100644
View file @
adceb1cd
[%# 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">
<div id="comment_tab" class="comment_tab active_comment_tab"
onclick="show_comment_edit()">Comment</div>
<div id="comment_preview_tab" class="comment_tab"
onclick="show_comment_preview([% bug.id FILTER none %])">Preview</div>
</div>
[% END %]
[% INCLUDE global/textarea.html.tmpl
name = "comment"
id = "comment"
%]
<br>
[% 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>
<pre id="comment_preview_text" class="bz_comment_text"></pre>
</div>
[% END %]
template/en/default/bug/create/create.html.tmpl
View file @
adceb1cd
...
...
@@ -542,9 +542,7 @@ TUI_hide_default('attachment_text_field');
# by global/textarea.html.tmpl. So we must not escape the comment here. %]
[% comment FILTER none %]
[%- END %]
[% INCLUDE global/textarea.html.tmpl
name = 'comment'
id = 'comment'
[% INCLUDE bug/comment.html.tmpl
minrows = 10
maxrows = 25
cols = constants.COMMENT_COLS
...
...
template/en/default/bug/edit.html.tmpl
View file @
adceb1cd
...
...
@@ -1110,9 +1110,7 @@
<!-- This table keeps the submit button aligned with the box. -->
<table><tr><td>
[% IF bug.check_can_change_field('longdesc', 0, 1) %]
[% INCLUDE global/textarea.html.tmpl
name = 'comment'
id = 'comment'
[% INCLUDE bug/comment.html.tmpl
minrows = 10
maxrows = 25
cols = constants.COMMENT_COLS
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment