diff options
author | Frédéric Buclin <lpsolit@gmail.com> | 2012-03-07 18:45:35 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-03-07 18:45:35 +0100 |
commit | ce7a61ad5c0b5f8b8bddb717eac0b529a3970af9 (patch) | |
tree | 23ba54fc6f49013767bc64fa02924917878b4a9e /extensions/InlineHistory/template | |
parent | 4d7d97b3aac40b54ec9b36259710e6ba182a06ae (diff) | |
download | bugzilla-ce7a61ad5c0b5f8b8bddb717eac0b529a3970af9.tar.gz bugzilla-ce7a61ad5c0b5f8b8bddb717eac0b529a3970af9.tar.xz |
Bug 731850: performance improvments to the inline-history extension
Diffstat (limited to 'extensions/InlineHistory/template')
4 files changed, 43 insertions, 110 deletions
diff --git a/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl b/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl index c8111bf75..5ecf2f0d8 100644 --- a/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl +++ b/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl @@ -1,32 +1,12 @@ -[%# ***** BEGIN LICENSE BLOCK ***** - # Version: MPL 1.1 - # - # The contents of this file are subject to the Mozilla Public License Version - # 1.1 (the "License"); you may not use this file except in compliance with - # the License. You may obtain a copy of the License at - # http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS IS" basis, - # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - # for the specific language governing rights and limitations under the - # License. - # - # The Original Code is the InlineHistory Bugzilla Extension; - # Derived from the Bugzilla Tweaks Addon. - # - # The Initial Developer of the Original Code is the Mozilla Foundation. - # Portions created by the Initial Developer are Copyright (C) 2011 the - # Initial Developer. All Rights Reserved. - # - # Contributor(s): - # Johnathan Nightingale <johnath@mozilla.com> - # Ehsan Akhgari <ehsan@mozilla.com> - # Byron Jones <glob@mozilla.com> +[%# 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/. # - # ***** END LICENSE BLOCK ***** + # This Source Code Form is "Incompatible With Secondary Licenses", as + # defined by the Mozilla Public License, v. 2.0. #%] -[% IF ih_activity %] +[% RETURN UNLESS ih_activity %] [%# this div exists to allow bugzilla-tweaks to detect when we're active %] <div id="inline-history-ext"></div> @@ -38,15 +18,20 @@ var html = ''; [% has_cc = 0 %] [% has_flag = 0 %] + [% changer_identity = "" %] + [% changer_login = operation.who.login %] + [% change_date = operation.when FILTER time %] + [% FOREACH change = operation.changes %] [%# track flag changes %] [% IF change.fieldname == 'flagtypes.name' && change.added != '' %] + [% changer_identity = operation.who.identity UNLESS changer_identity %] var item = new Array(5); - item[0] = '[% operation.who.login FILTER js %]'; - item[1] = '[% operation.when FILTER time FILTER js %]'; + item[0] = '[% changer_login FILTER js %]'; + item[1] = '[% change_date FILTER js %]'; item[2] = '[% change.attachid FILTER js %]'; item[3] = '[% change.added FILTER js %]'; - item[4] = '[% operation.who.identity FILTER js %]'; + item[4] = '[% changer_identity FILTER js %]'; ih_activity_flags.push(item); [% has_flag = 1 %] [% END %] @@ -109,13 +94,21 @@ html += '</span>'; [% END %] [% END %] + + [% changer_id = operation.who.id %] + [% UNLESS user_cache.$changer_id %] + [% user_cache.$changer_id = BLOCK %] + [% INCLUDE global/user.html.tmpl who = comment.author %] + [% END %] + [% END %] + var item = new Array(7); - item[0] = '[% operation.who.login FILTER js %]'; - item[1] = '[% operation.when FILTER time FILTER js %]'; + item[0] = '[% changer_login FILTER js %]'; + item[1] = '[% change_date FILTER js %]'; item[2] = html; item[3] = '<div class="bz_comment_head">' + '<span class="bz_comment_user">' - + '[% INCLUDE global/user.html.tmpl who = operation.who FILTER js %]' + + '[% user_cache.$changer_id FILTER js %]' + '</span>' + '<span class="bz_comment_time"> ' + item[1] + ' </span>' + '</div>'; @@ -126,7 +119,6 @@ [% END %] inline_history.init(); </script> -[% END %] [% BLOCK add_change %] html += '[%~%] @@ -149,9 +141,9 @@ change.fieldname == 'qa_contact' || change.fieldname == 'cc' || change.fieldname == 'flagtypes.name' %] - [% display_value(change.fieldname, value) FILTER email FILTER js %] + [% value FILTER email FILTER js %] [% ELSE %] - [% display_value(change.fieldname, value) FILTER html FILTER js %] + [% value FILTER html FILTER js %] [% END %] [%~ %]'; [% END %] diff --git a/extensions/InlineHistory/template/en/default/hook/bug/comments-comment_banner.html.tmpl b/extensions/InlineHistory/template/en/default/hook/bug/comments-comment_banner.html.tmpl index 73f428508..133005f4f 100644 --- a/extensions/InlineHistory/template/en/default/hook/bug/comments-comment_banner.html.tmpl +++ b/extensions/InlineHistory/template/en/default/hook/bug/comments-comment_banner.html.tmpl @@ -1,27 +1,9 @@ -[%# ***** BEGIN LICENSE BLOCK ***** - # Version: MPL 1.1 - # - # The contents of this file are subject to the Mozilla Public License Version - # 1.1 (the "License"); you may not use this file except in compliance with - # the License. You may obtain a copy of the License at - # http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS IS" basis, - # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - # for the specific language governing rights and limitations under the - # License. - # - # The Original Code is the InlineHistory Bugzilla Extension; - # Derived from the Bugzilla Tweaks Addon. - # - # The Initial Developer of the Original Code is the Mozilla Foundation. - # Portions created by the Initial Developer are Copyright (C) 2011 the - # Initial Developer. All Rights Reserved. - # - # Contributor(s): - # Byron Jones <glob@mozilla.com> +[%# 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/. # - # ***** END LICENSE BLOCK ***** + # This Source Code Form is "Incompatible With Secondary Licenses", as + # defined by the Mozilla Public License, v. 2.0. #%] [% IF ih_activity_max %] diff --git a/extensions/InlineHistory/template/en/default/hook/bug/show-header-end.html.tmpl b/extensions/InlineHistory/template/en/default/hook/bug/show-header-end.html.tmpl index 221175105..7e54b8380 100644 --- a/extensions/InlineHistory/template/en/default/hook/bug/show-header-end.html.tmpl +++ b/extensions/InlineHistory/template/en/default/hook/bug/show-header-end.html.tmpl @@ -1,33 +1,12 @@ -[%# ***** BEGIN LICENSE BLOCK ***** - # Version: MPL 1.1 - # - # The contents of this file are subject to the Mozilla Public License Version - # 1.1 (the "License"); you may not use this file except in compliance with - # the License. You may obtain a copy of the License at - # http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS IS" basis, - # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - # for the specific language governing rights and limitations under the - # License. - # - # The Original Code is the InlineHistory Bugzilla Extension; - # Derived from the Bugzilla Tweaks Addon. - # - # The Initial Developer of the Original Code is the Mozilla Foundation. - # Portions created by the Initial Developer are Copyright (C) 2011 the - # Initial Developer. All Rights Reserved. - # - # Contributor(s): - # Johnathan Nightingale <johnath@mozilla.com> - # Ehsan Akhgari <ehsan@mozilla.com> - # Byron Jones <glob@mozilla.com> +[%# 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/. # - # ***** END LICENSE BLOCK ***** + # This Source Code Form is "Incompatible With Secondary Licenses", as + # defined by the Mozilla Public License, v. 2.0. #%] -[% IF ih_activity %] +[% IF user.id && user.settings.inline_history.value == "on" %] [% style_urls.push('extensions/InlineHistory/web/style.css') %] [% javascript_urls.push('extensions/InlineHistory/web/inline-history.js') %] [% END %] - diff --git a/extensions/InlineHistory/template/en/default/hook/global/setting-descs-settings.none.tmpl b/extensions/InlineHistory/template/en/default/hook/global/setting-descs-settings.none.tmpl index 852dac22f..e1ff4c0f6 100644 --- a/extensions/InlineHistory/template/en/default/hook/global/setting-descs-settings.none.tmpl +++ b/extensions/InlineHistory/template/en/default/hook/global/setting-descs-settings.none.tmpl @@ -1,29 +1,9 @@ -[%# ***** BEGIN LICENSE BLOCK ***** - # Version: MPL 1.1 - # - # The contents of this file are subject to the Mozilla Public License Version - # 1.1 (the "License"); you may not use this file except in compliance with - # the License. You may obtain a copy of the License at - # http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS IS" basis, - # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - # for the specific language governing rights and limitations under the - # License. - # - # The Original Code is the InlineHistory Bugzilla Extension; - # Derived from the Bugzilla Tweaks Addon. - # - # The Initial Developer of the Original Code is the Mozilla Foundation. - # Portions created by the Initial Developer are Copyright (C) 2011 the - # Initial Developer. All Rights Reserved. - # - # Contributor(s): - # Johnathan Nightingale <johnath@mozilla.com> - # Ehsan Akhgari <ehsan@mozilla.com> - # Byron Jones <glob@mozilla.com> +[%# 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/. # - # ***** END LICENSE BLOCK ***** + # This Source Code Form is "Incompatible With Secondary Licenses", as + # defined by the Mozilla Public License, v. 2.0. #%] [% |