[bugzilla-gnome-org-extensions] product interests: Move User hack into separate file
- From: Krzesimir Nowak <krnowak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [bugzilla-gnome-org-extensions] product interests: Move User hack into separate file
- Date: Thu, 20 Nov 2014 22:05:26 +0000 (UTC)
commit fd175c498d3c4199c17d9a14a8b80f48e2197b4b
Author: Krzesimir Nowak <qdlacz gmail com>
Date: Sat Nov 8 19:22:19 2014 +0100
product interests: Move User hack into separate file
ProductInterests/Extension.pm | 31 +---------------------
ProductInterests/lib/User.pm | 57 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 58 insertions(+), 30 deletions(-)
---
diff --git a/ProductInterests/Extension.pm b/ProductInterests/Extension.pm
index 27278ae..b99e9c8 100644
--- a/ProductInterests/Extension.pm
+++ b/ProductInterests/Extension.pm
@@ -23,37 +23,8 @@ package Bugzilla::Extension::ProductInterests;
use strict;
use warnings;
use base qw(Bugzilla::Extension);
-use Bugzilla::Extension::ProductInterests::Util;
+use Bugzilla::Extension::ProductInterests::User;
our $VERSION = '0.01';
-BEGIN {
- *Bugzilla::User::product_interests = \&product_interests;
-}
-
-
-sub product_interests {
- my $self = shift;
-
- return $self->{p_i()} if defined $self->{p_i()};
- return [] unless $self->id;
-
- my $product_ids = Bugzilla->dbh->selectcol_arrayref(
- qq{SELECT products.id
- FROM components
- INNER JOIN products
- ON components.product_id = products.id
- LEFT JOIN watch
- ON components.initialowner = watch.watched
- WHERE products.isactive = '1'
- AND (watch.watcher = ? OR components.initialowner = ?)
- ORDER BY products.name},
- undef, ($self->id, $self->id));
-
- $self->{p_i()} = Bugzilla::Product->new_from_list($product_ids);
-
- return $self->{p_i()};
-}
-
-
__PACKAGE__->NAME;
diff --git a/ProductInterests/lib/User.pm b/ProductInterests/lib/User.pm
new file mode 100644
index 0000000..99c8503
--- /dev/null
+++ b/ProductInterests/lib/User.pm
@@ -0,0 +1,57 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# 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 ProductInterests GNOME Bugzilla Extension.
+#
+# The Initial Developer of the Original Code is Olav Vitters
+# Portions created by the Initial Developer are Copyright (C) 2011 the
+# Initial Developer. All Rights Reserved.
+#
+# Contributor(s):
+# Olav Vitters <olav vitters nl>
+
+package Bugzilla::Extension::ProductInterests;
+use strict;
+use warnings;
+use Bugzilla;
+use Bugzilla::Product;
+use Bugzilla::User;
+use Bugzilla::Extension::ProductInterests::Util;
+
+sub product_interests {
+ my $self = shift;
+
+ return $self->{p_i()} if defined $self->{p_i()};
+ return [] unless $self->id;
+
+ my $product_ids = Bugzilla->dbh->selectcol_arrayref(
+ qq{SELECT products.id
+ FROM components
+ INNER JOIN products
+ ON components.product_id = products.id
+ LEFT JOIN watch
+ ON components.initialowner = watch.watched
+ WHERE products.isactive = '1'
+ AND (watch.watcher = ? OR components.initialowner = ?)
+ ORDER BY products.name},
+ undef, ($self->id, $self->id));
+
+ $self->{p_i()} = Bugzilla::Product->new_from_list($product_ids);
+
+ return $self->{p_i()};
+}
+
+BEGIN {
+ *Bugzilla::User::product_interests = \&product_interests;
+}
+
+1;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]