summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'extensions')
-rw-r--r--extensions/Example/lib/AuthLogin.pm32
-rw-r--r--extensions/Example/lib/AuthVerify.pm31
-rw-r--r--extensions/Example/lib/ConfigExample.pm41
-rw-r--r--extensions/Example/lib/WSExample.pm32
-rw-r--r--extensions/Example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl35
-rw-r--r--extensions/Example/template/en/hook/global/user-error-errors.html.tmpl12
-rw-r--r--extensions/bmp_convert/code/attachment-process_data.pl48
-rw-r--r--extensions/bmp_convert/disabled0
-rw-r--r--extensions/bmp_convert/info.pl27
-rwxr-xr-x[-rw-r--r--]extensions/create.pl0
-rw-r--r--extensions/example/code/attachment-process_data.pl42
-rw-r--r--extensions/example/code/auth-login_methods.pl27
-rw-r--r--extensions/example/code/auth-verify_methods.pl27
-rw-r--r--extensions/example/code/bug-columns.pl27
-rw-r--r--extensions/example/code/bug-end_of_create.pl35
-rw-r--r--extensions/example/code/bug-end_of_create_validators.pl37
-rw-r--r--extensions/example/code/bug-end_of_update.pl56
-rw-r--r--extensions/example/code/bug-fields.pl27
-rw-r--r--extensions/example/code/bug-format_comment.pl45
-rw-r--r--extensions/example/code/buglist-columns.pl26
-rw-r--r--extensions/example/code/colchange-columns.pl27
-rw-r--r--extensions/example/code/config-add_panels.pl25
-rw-r--r--extensions/example/code/config-modify_panels.pl32
-rw-r--r--extensions/example/code/config.pl26
-rw-r--r--extensions/example/code/flag-end_of_update.pl42
-rw-r--r--extensions/example/code/install-before_final_checks.pl28
-rw-r--r--extensions/example/code/mailer-before_send.pl28
-rw-r--r--extensions/example/code/object-before_create.pl33
-rw-r--r--extensions/example/code/object-before_set.pl34
-rw-r--r--extensions/example/code/object-end_of_create_validators.pl34
-rw-r--r--extensions/example/code/object-end_of_set_all.pl34
-rw-r--r--extensions/example/code/object-end_of_update.pl34
-rw-r--r--extensions/example/code/page-before_template.pl33
-rw-r--r--extensions/example/code/product-confirm_delete.pl26
-rw-r--r--extensions/example/code/sanitycheck-check.pl44
-rw-r--r--extensions/example/code/sanitycheck-repair.pl38
-rw-r--r--extensions/example/code/template-before_create.pl30
-rw-r--r--extensions/example/code/template-before_process.pl33
-rw-r--r--extensions/example/code/webservice-error_codes.pl25
-rw-r--r--extensions/example/code/webservice.pl25
-rw-r--r--extensions/example/disabled0
-rw-r--r--extensions/example/info.pl41
-rw-r--r--extensions/example/lib/AuthLogin.pm32
-rw-r--r--extensions/example/lib/AuthVerify.pm31
-rw-r--r--extensions/example/lib/Bugzilla/ExampleHook.pm43
-rw-r--r--extensions/example/lib/ConfigExample.pm41
-rw-r--r--extensions/example/lib/WSExample.pm32
-rw-r--r--extensions/example/template/en/admin/sanitycheck/messages-statuses.html.tmpl35
-rw-r--r--extensions/example/template/en/default/admin/params/example.html.tmpl28
-rw-r--r--extensions/example/template/en/default/pages/example.html.tmpl32
-rw-r--r--extensions/example/template/en/global/user-error-errors.html.tmpl12
-rw-r--r--extensions/example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl35
-rw-r--r--extensions/example/template/en/hook/global/user-error-errors.html.tmpl12
-rw-r--r--extensions/example/version.pl31
54 files changed, 0 insertions, 1643 deletions
diff --git a/extensions/Example/lib/AuthLogin.pm b/extensions/Example/lib/AuthLogin.pm
deleted file mode 100644
index 46147de9c..000000000
--- a/extensions/Example/lib/AuthLogin.pm
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical are Copyright (C) 2008 Canonical Ltd.
-# All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-package extensions::Example::lib::AuthLogin;
-use strict;
-use base qw(Bugzilla::Auth::Login);
-use constant user_can_create_account => 0;
-use Bugzilla::Constants;
-
-# Always returns no data.
-sub get_login_info {
- return { failure => AUTH_NODATA };
-}
-
-1;
diff --git a/extensions/Example/lib/AuthVerify.pm b/extensions/Example/lib/AuthVerify.pm
deleted file mode 100644
index 2ecf83a31..000000000
--- a/extensions/Example/lib/AuthVerify.pm
+++ /dev/null
@@ -1,31 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical are Copyright (C) 2008 Canonical Ltd.
-# All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-package extensions::Example::lib::AuthVerify;
-use strict;
-use base qw(Bugzilla::Auth::Verify);
-use Bugzilla::Constants;
-
-# A verifier that always fails.
-sub check_credentials {
- return { failure => AUTH_NO_SUCH_USER };
-}
-
-1;
diff --git a/extensions/Example/lib/ConfigExample.pm b/extensions/Example/lib/ConfigExample.pm
deleted file mode 100644
index 49ffefed9..000000000
--- a/extensions/Example/lib/ConfigExample.pm
+++ /dev/null
@@ -1,41 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-# Bradley Baetz <bbaetz@acm.org>
-
-package extensions::Example::lib::ConfigExample;
-use strict;
-use warnings;
-
-use Bugzilla::Config::Common;
-
-sub get_param_list {
- my ($class) = @_;
-
- my @param_list = (
- {
- name => 'example_string',
- type => 't',
- default => 'EXAMPLE',
- },
- );
- return @param_list;
-}
-
-1;
diff --git a/extensions/Example/lib/WSExample.pm b/extensions/Example/lib/WSExample.pm
deleted file mode 100644
index 4330633ce..000000000
--- a/extensions/Example/lib/WSExample.pm
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- 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 Bugzilla Bug Tracking System.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved, Inc. are Copyright (C) 2007
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-package extensions::Example::lib::WSExample;
-use strict;
-use warnings;
-use base qw(Bugzilla::WebService);
-use Bugzilla::Error;
-
-# This can be called as Example.hello() from the WebService.
-sub hello { return 'Hello!'; }
-
-sub throw_an_error { ThrowUserError('example_my_error') }
-
-1;
diff --git a/extensions/Example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl b/extensions/Example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl
deleted file mode 100644
index 8a825e57c..000000000
--- a/extensions/Example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl
+++ /dev/null
@@ -1,35 +0,0 @@
-[%# -*- 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 Bugzilla Example Plugin.
- #
- # The Initial Developer of the Original Code is ITA Software
- # Portions created by the Initial Developer are Copyright (C) 2009
- # the Initial Developer. All Rights Reserved.
- #
- # Contributor(s): Bradley Baetz <bbaetz@everythingsolved.com>
- #%]
-
-[% IF san_tag == "example_check_au_user" %]
- <em>EXAMPLE PLUGIN</em> - Checking for non-Australian users.
-[% ELSIF san_tag == "example_check_au_user_alert" %]
- User &lt;[% login FILTER html %]&gt; isn't Australian.
- [% IF user.in_group('editusers') %]
- <a href="editusers.cgi?id=[% userid FILTER none %]">Edit this user</a>.
- [% END %]
-[% ELSIF san_tag == "example_check_au_user_prompt" %]
- <a href="sanitycheck.cgi?example_repair_au_user=1">Fix these users</a>.
-[% ELSIF san_tag == "example_repair_au_user_start" %]
- <em>EXAMPLE PLUGIN</em> - OK, would now make users Australian.
-[% ELSIF san_tag == "example_repair_au_user_end" %]
- <em>EXAMPLE PLUGIN</em> - Users would now be Australian.
-[% END %]
diff --git a/extensions/Example/template/en/hook/global/user-error-errors.html.tmpl b/extensions/Example/template/en/hook/global/user-error-errors.html.tmpl
deleted file mode 100644
index df5a203dd..000000000
--- a/extensions/Example/template/en/hook/global/user-error-errors.html.tmpl
+++ /dev/null
@@ -1,12 +0,0 @@
-[%# Note that error messages should generally be indented four spaces, like
- # below, because when Bugzilla translates an error message into plain
- # text, it takes four spaces off the beginning of the lines.
- #
- # Note also that I prefixed my error name with "example", the name of my
- # extension, so that I wouldn't conflict with other error names in
- # Bugzilla or other extensions.
- #%]
-[% IF error == "example_my_error" %]
- [% title = "Example Error Title" %]
- This is the error message! It contains <em>some html</em>.
-[% END %]
diff --git a/extensions/bmp_convert/code/attachment-process_data.pl b/extensions/bmp_convert/code/attachment-process_data.pl
deleted file mode 100644
index 15593cc64..000000000
--- a/extensions/bmp_convert/code/attachment-process_data.pl
+++ /dev/null
@@ -1,48 +0,0 @@
-# -*- 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 Bugzilla Bug Tracking System.
-#
-# The Initial Developer of the Original Code is Frédéric Buclin.
-# Portions created by Frédéric Buclin are Copyright (C) 2009
-# Frédéric Buclin. All Rights Reserved.
-#
-# Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
-
-use strict;
-
-use Image::Magick;
-use Bugzilla;
-
-my $args = Bugzilla->hook_args;
-return unless $args->{attributes}->{mimetype} eq 'image/bmp';
-
-my $data = ${$args->{data}};
-my $img = Image::Magick->new(magick=>'bmp');
-
-# $data is a filehandle.
-if (ref $data) {
- $img->Read(file => \*$data);
- $img->set(magick=>'png');
- $img->Write(file => \*$data);
-}
-# $data is a blob.
-else {
- $img->BlobToImage($data);
- $img->set(magick=>'png');
- $data = $img->ImageToBlob();
-}
-
-${$args->{data}} = $data;
-$args->{attributes}->{mimetype} = 'image/png';
-$args->{attributes}->{filename} =~ s/^(.+)\.bmp$/$1.png/i;
-undef $img;
diff --git a/extensions/bmp_convert/disabled b/extensions/bmp_convert/disabled
deleted file mode 100644
index e69de29bb..000000000
--- a/extensions/bmp_convert/disabled
+++ /dev/null
diff --git a/extensions/bmp_convert/info.pl b/extensions/bmp_convert/info.pl
deleted file mode 100644
index 0d2ad5eb2..000000000
--- a/extensions/bmp_convert/info.pl
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- 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 Bugzilla Bug Tracking System.
-#
-# The Initial Developer of the Original Code is Frédéric Buclin.
-# Portions created by Frédéric Buclin are Copyright (C) 2009
-# Frédéric Buclin. All Rights Reserved.
-#
-# Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
-
-use strict;
-
-{ x_name => 'BMP to PNG converter',
- version => '1.0',
- x_description => 'Automatically converts BMP images to the PNG format',
- x_author => 'Greg Hendricks, Frédéric Buclin',
-};
diff --git a/extensions/create.pl b/extensions/create.pl
index c4d911c2a..c4d911c2a 100644..100755
--- a/extensions/create.pl
+++ b/extensions/create.pl
diff --git a/extensions/example/code/attachment-process_data.pl b/extensions/example/code/attachment-process_data.pl
deleted file mode 100644
index 67cbf3880..000000000
--- a/extensions/example/code/attachment-process_data.pl
+++ /dev/null
@@ -1,42 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Frédéric Buclin.
-# Portions created by Frédéric Buclin are Copyright (C) 2009
-# Frédéric Buclin. All Rights Reserved.
-#
-# Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
-
-use strict;
-use warnings;
-
-use Bugzilla;
-my $args = Bugzilla->hook_args;
-
-my $type = $args->{attributes}->{mimetype};
-my $filename = $args->{attributes}->{filename};
-
-# Make sure images have the correct extension.
-# Uncomment the two lines below to make this check effective.
-if ($type =~ /^image\/(\w+)$/) {
- my $format = $1;
- if ($filename =~ /^(.+)(:?\.[^\.]+)$/) {
- my $name = $1;
-# $args->{attributes}->{filename} = "${name}.$format";
- }
- else {
- # The file has no extension. We append it.
-# $args->{attributes}->{filename} .= ".$format";
- }
-}
diff --git a/extensions/example/code/auth-login_methods.pl b/extensions/example/code/auth-login_methods.pl
deleted file mode 100644
index 0ae12aa6b..000000000
--- a/extensions/example/code/auth-login_methods.pl
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $modules = Bugzilla->hook_args->{modules};
-if (exists $modules->{Example}) {
- $modules->{Example} = 'extensions/example/lib/AuthLogin.pm';
-}
diff --git a/extensions/example/code/auth-verify_methods.pl b/extensions/example/code/auth-verify_methods.pl
deleted file mode 100644
index 7ae52f012..000000000
--- a/extensions/example/code/auth-verify_methods.pl
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $modules = Bugzilla->hook_args->{modules};
-if (exists $modules->{Example}) {
- $modules->{Example} = 'extensions/example/lib/AuthVerify.pm';
-}
diff --git a/extensions/example/code/bug-columns.pl b/extensions/example/code/bug-columns.pl
deleted file mode 100644
index 92ccf6d23..000000000
--- a/extensions/example/code/bug-columns.pl
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Elliotte Martin <elliotte_martin@yahoo.com>
-
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $columns = Bugzilla->hook_args->{'columns'};
-push (@$columns, "delta_ts AS example")
diff --git a/extensions/example/code/bug-end_of_create.pl b/extensions/example/code/bug-end_of_create.pl
deleted file mode 100644
index 0325ddd59..000000000
--- a/extensions/example/code/bug-end_of_create.pl
+++ /dev/null
@@ -1,35 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-# Bradley Baetz <bbaetz@acm.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-
-# This code doesn't actually *do* anything, it's just here to show you
-# how to use this hook.
-my $args = Bugzilla->hook_args;
-my $bug = $args->{'bug'};
-my $timestamp = $args->{'timestamp'};
-
-my $bug_id = $bug->id;
-# Uncomment this line to see a line in your webserver's error log whenever
-# you file a bug.
-# warn "Bug $bug_id has been filed!";
diff --git a/extensions/example/code/bug-end_of_create_validators.pl b/extensions/example/code/bug-end_of_create_validators.pl
deleted file mode 100644
index 95d64ae85..000000000
--- a/extensions/example/code/bug-end_of_create_validators.pl
+++ /dev/null
@@ -1,37 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-use Data::Dumper;
-
-# This code doesn't actually *do* anything, it's just here to show you
-# how to use this hook.
-my $params = Bugzilla->hook_args->{'params'};
-
-# Uncomment this line below to see a line in your webserver's error log
-# containing all validated bug field values every time you file a bug.
-# warn Dumper($params);
-
-# This would remove all ccs from the bug, preventing ANY ccs from being
-# added on bug creation.
-# $params->{cc} = [];
diff --git a/extensions/example/code/bug-end_of_update.pl b/extensions/example/code/bug-end_of_update.pl
deleted file mode 100644
index 036563517..000000000
--- a/extensions/example/code/bug-end_of_update.pl
+++ /dev/null
@@ -1,56 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved are Copyright (C) 2008
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-use Bugzilla::Status;
-
-# This code doesn't actually *do* anything, it's just here to show you
-# how to use this hook.
-my $args = Bugzilla->hook_args;
-my $bug = $args->{'bug'};
-my $timestamp = $args->{'timestamp'};
-my $changes = $args->{'changes'};
-
-foreach my $field (keys %$changes) {
- my $used_to_be = $changes->{$field}->[0];
- my $now_it_is = $changes->{$field}->[1];
-}
-
-my $status_message;
-if (my $status_change = $changes->{'bug_status'}) {
- my $old_status = new Bugzilla::Status({ name => $status_change->[0] });
- my $new_status = new Bugzilla::Status({ name => $status_change->[1] });
- if ($new_status->is_open && !$old_status->is_open) {
- $status_message = "Bug re-opened!";
- }
- if (!$new_status->is_open && $old_status->is_open) {
- $status_message = "Bug closed!";
- }
-}
-
-my $bug_id = $bug->id;
-my $num_changes = scalar keys %$changes;
-my $result = "There were $num_changes changes to fields on bug $bug_id"
- . " at $timestamp.";
-# Uncomment this line to see $result in your webserver's error log whenever
-# you update a bug.
-# warn $result;
diff --git a/extensions/example/code/bug-fields.pl b/extensions/example/code/bug-fields.pl
deleted file mode 100644
index f8475426d..000000000
--- a/extensions/example/code/bug-fields.pl
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Elliotte Martin <elliotte_martin@yahoo.com>
-
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $fields = Bugzilla->hook_args->{'fields'};
-push (@$fields, "example")
diff --git a/extensions/example/code/bug-format_comment.pl b/extensions/example/code/bug-format_comment.pl
deleted file mode 100644
index c11e8cac2..000000000
--- a/extensions/example/code/bug-format_comment.pl
+++ /dev/null
@@ -1,45 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2009
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s):
-# Max Kanat-Alexander <mkanat@bugzilla.org>
-
-
-use strict;
-use warnings;
-use Bugzilla;
-use Bugzilla::ExampleHook qw(replace_bar);
-
-# This replaces every occurrence of the word "foo" with the word
-# "bar"
-
-my $regexes = Bugzilla->hook_args->{'regexes'};
-push(@$regexes, { match => qr/\bfoo\b/, replace => 'bar' });
-
-# And this links every occurrence of the word "bar" to example.com,
-# but it won't affect "foo"s that have already been turned into "bar"
-# above (because each regex is run in order, and later regexes don't modify
-# earlier matches, due to some cleverness in Bugzilla's internals).
-#
-# For example, the phrase "foo bar" would become:
-# bar <a href="http://example.com/bar">bar</a>
-#
-# See lib/Bugzilla/ExampleHook.pm in this extension for the code of
-# "replace_bar".
-my $bar_match = qr/\b(bar)\b/;
-push(@$regexes, { match => $bar_match, replace => \&replace_bar });
diff --git a/extensions/example/code/buglist-columns.pl b/extensions/example/code/buglist-columns.pl
deleted file mode 100644
index 4487b2dc8..000000000
--- a/extensions/example/code/buglist-columns.pl
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Elliotte Martin <elliotte_martin@yahoo.com>
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $columns = Bugzilla->hook_args->{'columns'};
-$columns->{'example'} = { 'name' => 'bugs.delta_ts' , 'title' => 'Example' };
diff --git a/extensions/example/code/colchange-columns.pl b/extensions/example/code/colchange-columns.pl
deleted file mode 100644
index 6174d3940..000000000
--- a/extensions/example/code/colchange-columns.pl
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Elliotte Martin <elliotte_martin@yahoo.com>
-
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $columns = Bugzilla->hook_args->{'columns'};
-push (@$columns, "example")
diff --git a/extensions/example/code/config-add_panels.pl b/extensions/example/code/config-add_panels.pl
deleted file mode 100644
index 5f4f5bdd4..000000000
--- a/extensions/example/code/config-add_panels.pl
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Bradley Baetz <bbaetz@acm.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $modules = Bugzilla->hook_args->{panel_modules};
-$modules->{Example} = "extensions::example::lib::ConfigExample";
diff --git a/extensions/example/code/config-modify_panels.pl b/extensions/example/code/config-modify_panels.pl
deleted file mode 100644
index bd93962bf..000000000
--- a/extensions/example/code/config-modify_panels.pl
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $panels = Bugzilla->hook_args->{panels};
-
-# Add the "Example" auth methods.
-my $auth_params = $panels->{'auth'}->{params};
-my ($info_class) = grep($_->{name} eq 'user_info_class', @$auth_params);
-my ($verify_class) = grep($_->{name} eq 'user_verify_class', @$auth_params);
-
-push(@{ $info_class->{choices} }, 'CGI,Example');
-push(@{ $verify_class->{choices} }, 'Example');
diff --git a/extensions/example/code/config.pl b/extensions/example/code/config.pl
deleted file mode 100644
index 1da490cc2..000000000
--- a/extensions/example/code/config.pl
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-# Bradley Baetz <bbaetz@acm.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $config = Bugzilla->hook_args->{config};
-$config->{Example} = "extensions::example::lib::ConfigExample";
diff --git a/extensions/example/code/flag-end_of_update.pl b/extensions/example/code/flag-end_of_update.pl
deleted file mode 100644
index e1705cc57..000000000
--- a/extensions/example/code/flag-end_of_update.pl
+++ /dev/null
@@ -1,42 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved are Copyright (C) 2008
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-use Bugzilla::Util qw(diff_arrays);
-
-# This code doesn't actually *do* anything, it's just here to show you
-# how to use this hook.
-my $args = Bugzilla->hook_args;
-my ($object, $timestamp, $old_flags, $new_flags) =
- @$args{qw(object timestamp old_flags new_flags)};
-my ($removed, $added) = diff_arrays($old_flags, $new_flags);
-my ($granted, $denied) = (0, 0);
-foreach my $new_flag (@$added) {
- $granted++ if $new_flag =~ /\+$/;
- $denied++ if $new_flag =~ /-$/;
-}
-my $bug_id = (ref $object eq 'Bugzilla::Bug') ? $object->id : $object->bug_id;
-my $result = "$granted flags were granted and $denied flags were denied"
- . " on bug $bug_id at $timestamp.";
-# Uncomment this line to see $result in your webserver's error log whenever
-# you update flags.
-# warn $result;
diff --git a/extensions/example/code/install-before_final_checks.pl b/extensions/example/code/install-before_final_checks.pl
deleted file mode 100644
index ef1bee22c..000000000
--- a/extensions/example/code/install-before_final_checks.pl
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Elliotte Martin <elliotte_martin@yahoo.com>
-
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $silent = Bugzilla->hook_args->{'silent'};
-
-print "Install-before_final_checks hook\n" unless $silent;
diff --git a/extensions/example/code/mailer-before_send.pl b/extensions/example/code/mailer-before_send.pl
deleted file mode 100644
index 322c78088..000000000
--- a/extensions/example/code/mailer-before_send.pl
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by the Initial Developer are Copyright (C) 2008
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $email = Bugzilla->hook_args->{email};
-# If you add a header to an email, it's best to start it with
-# 'X-Bugzilla-<Extension>' so that you don't conflict with
-# other extensions.
-$email->header_set('X-Bugzilla-Example-Header', 'Example');
diff --git a/extensions/example/code/object-before_create.pl b/extensions/example/code/object-before_create.pl
deleted file mode 100644
index 5961b6186..000000000
--- a/extensions/example/code/object-before_create.pl
+++ /dev/null
@@ -1,33 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $args = Bugzilla->hook_args;
-my $class = $args->{'class'};
-my $params = $args->{'params'};
-
-# Note that this is a made-up class, for this example.
-if ($class->isa('Bugzilla::ExampleObject')) {
- warn "About to create an ExampleObject!";
- warn "Got the following parameters: " . join(', ', keys(%$params));
-}
diff --git a/extensions/example/code/object-before_set.pl b/extensions/example/code/object-before_set.pl
deleted file mode 100644
index 43007efdb..000000000
--- a/extensions/example/code/object-before_set.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-
-my $args = Bugzilla->hook_args;
-my ($object, $field, $value) = @$args{qw(object field value)};
-
-# Note that this is a made-up class, for this example.
-if ($object->isa('Bugzilla::ExampleObject')) {
- warn "The field $field is changing from " . $object->{$field}
- . " to $value!";
-}
-
-
diff --git a/extensions/example/code/object-end_of_create_validators.pl b/extensions/example/code/object-end_of_create_validators.pl
deleted file mode 100644
index 42ed6f776..000000000
--- a/extensions/example/code/object-end_of_create_validators.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $args = Bugzilla->hook_args;
-my $class = $args->{'class'};
-my $params = $args->{'params'};
-
-# Note that this is a made-up class, for this example.
-if ($class->isa('Bugzilla::ExampleObject')) {
- # Always set example_field to 1, even if the validators said otherwise.
- $params->{example_field} = 1;
-}
-
diff --git a/extensions/example/code/object-end_of_set_all.pl b/extensions/example/code/object-end_of_set_all.pl
deleted file mode 100644
index d4b643522..000000000
--- a/extensions/example/code/object-end_of_set_all.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-
-my $args = Bugzilla->hook_args;
-my $object = $args->{'class'};
-my $params = $args->{'params'};
-
-# Note that this is a made-up class, for this example.
-if ($object->isa('Bugzilla::ExampleObject')) {
- if ($params->{example_field} == 1) {
- $object->{example_field} = 1;
- }
-}
-
diff --git a/extensions/example/code/object-end_of_update.pl b/extensions/example/code/object-end_of_update.pl
deleted file mode 100644
index 72773cf60..000000000
--- a/extensions/example/code/object-end_of_update.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-
-my $args = Bugzilla->hook_args;
-my ($object, $old_object, $changes) = @$args{qw(object old_object changes)};
-
-# Note that this is a made-up class, for this example.
-if ($object->isa('Bugzilla::ExampleObject')) {
- if (defined $changes->{'name'}) {
- my ($old, $new) = @{ $changes->{'name'} };
- print "The name field changed from $old to $new!";
- }
-}
diff --git a/extensions/example/code/page-before_template.pl b/extensions/example/code/page-before_template.pl
deleted file mode 100644
index dcf059367..000000000
--- a/extensions/example/code/page-before_template.pl
+++ /dev/null
@@ -1,33 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2009
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s):
-# Max Kanat-Alexander <mkanat@bugzilla.org>
-
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my %args = %{ Bugzilla->hook_args };
-my ($vars, $page) = @args{qw(vars page_id)};
-
-# You can see this hook in action by loading page.cgi?id=example.html
-if ($page eq 'example.html') {
- $vars->{cgi_variables} = { Bugzilla->cgi->Vars };
-}
diff --git a/extensions/example/code/product-confirm_delete.pl b/extensions/example/code/product-confirm_delete.pl
deleted file mode 100644
index d961dfaa7..000000000
--- a/extensions/example/code/product-confirm_delete.pl
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/perl -w
-# -*- 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 Bugzilla Testopia System.
-#
-# The Initial Developer of the Original Code is Greg Hendricks.
-# Portions created by Greg Hendricks are Copyright (C) 2008
-# Novell. All Rights Reserved.
-#
-# Contributor(s): Greg Hendricks <ghendricks@novell.com>
-
-use strict;
-
-my $vars = Bugzilla->hook_args->{vars};
-
-$vars->{'example'} = 1 \ No newline at end of file
diff --git a/extensions/example/code/sanitycheck-check.pl b/extensions/example/code/sanitycheck-check.pl
deleted file mode 100644
index 10083389b..000000000
--- a/extensions/example/code/sanitycheck-check.pl
+++ /dev/null
@@ -1,44 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Softwware.
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s): Bradley Baetz <bbaetz@everythingsolved.com>
-
-use strict;
-
-my $dbh = Bugzilla->dbh;
-my $sth;
-
-my $status = Bugzilla->hook_args->{'status'};
-
-# Check that all users are Australian
-$status->('example_check_au_user');
-
-my $sth = $dbh->prepare("SELECT userid, login_name
- FROM profiles
- WHERE login_name NOT LIKE '%.au'");
-$sth->execute;
-
-my $seen_nonau = 0;
-while (my ($userid, $login, $numgroups) = $sth->fetchrow_array) {
- $status->('example_check_au_user_alert',
- { userid => $userid, login => $login },
- 'alert');
- $seen_nonau = 1;
-}
-
-$status->('example_check_au_user_prompt') if $seen_nonau;
diff --git a/extensions/example/code/sanitycheck-repair.pl b/extensions/example/code/sanitycheck-repair.pl
deleted file mode 100644
index f9ad0b3b1..000000000
--- a/extensions/example/code/sanitycheck-repair.pl
+++ /dev/null
@@ -1,38 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software.
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s): Bradley Baetz <bbaetz@everythingsolved.com>
-
-use strict;
-
-use Bugzilla;
-
-my $cgi = Bugzilla->cgi;
-my $dbh = Bugzilla->dbh;
-
-my $status = Bugzilla->hook_args->{'status'};
-
-if ($cgi->param('example_repair_au_user')) {
- $status->('example_repair_au_user_start');
-
- #$dbh->do("UPDATE profiles
- # SET login_name = CONCAT(login_name, '.au')
- # WHERE login_name NOT LIKE '%.au'");
-
- $status->('example_repair_au_user_end');
-}
diff --git a/extensions/example/code/template-before_create.pl b/extensions/example/code/template-before_create.pl
deleted file mode 100644
index fa21f08cc..000000000
--- a/extensions/example/code/template-before_create.pl
+++ /dev/null
@@ -1,30 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is ITA Software.
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my $config = Bugzilla->hook_args->{'config'};
-# This will be accessible as "example_global_variable" in every
-# template in Bugzilla. See Bugzilla/Template.pm's create() function
-# for more things that you can set.
-$config->{VARIABLES}->{example_global_variable} = sub { return 'value' };
diff --git a/extensions/example/code/template-before_process.pl b/extensions/example/code/template-before_process.pl
deleted file mode 100644
index 66f9a56f6..000000000
--- a/extensions/example/code/template-before_process.pl
+++ /dev/null
@@ -1,33 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Matt Rogers.
-# Portions created by the Initial Developer are Copyright (C) 2009
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Matt Rogers <mattr@kde.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-
-my %args = %{ Bugzilla->hook_args };
-my ($vars, $file, $template) = $args{qw(vars file template)};
-
-$vars->{'example'} = 1;
-
-if ($file =~ m{^bug/show}) {
- $vars->{'showing_a_bug'} = 1;
-}
diff --git a/extensions/example/code/webservice-error_codes.pl b/extensions/example/code/webservice-error_codes.pl
deleted file mode 100644
index 94c4c52fc..000000000
--- a/extensions/example/code/webservice-error_codes.pl
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- 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 Bugzilla Bug Tracking System.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved, Inc. are Copyright (C) 2008
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $error_map = Bugzilla->hook_args->{error_map};
-$error_map->{'example_my_error'} = 10001;
diff --git a/extensions/example/code/webservice.pl b/extensions/example/code/webservice.pl
deleted file mode 100644
index ff503be39..000000000
--- a/extensions/example/code/webservice.pl
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- 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 Bugzilla Bug Tracking System.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved, Inc. are Copyright (C) 2007
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-use strict;
-use warnings;
-use Bugzilla;
-my $dispatch = Bugzilla->hook_args->{dispatch};
-$dispatch->{Example} = "extensions::example::lib::WSExample";
diff --git a/extensions/example/disabled b/extensions/example/disabled
deleted file mode 100644
index e69de29bb..000000000
--- a/extensions/example/disabled
+++ /dev/null
diff --git a/extensions/example/info.pl b/extensions/example/info.pl
deleted file mode 100644
index b4620eed6..000000000
--- a/extensions/example/info.pl
+++ /dev/null
@@ -1,41 +0,0 @@
-# -*- 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 Bugzilla Example WebService Plugin
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved, Inc. are Copyright (C) 2007
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-# Colin Ogilvie <colin.ogilvie@gmail.com>
-
-# This script does some code to return a hash about the Extension.
-# You are required to return a hash containing the Extension version
-# You can optionaally add any other values to the hash too, as long as
-# they begin with an x_
-#
-# Eg:
-# {
-# 'version' => '0.1', # required
-# 'x_name' => 'Example Extension'
-# }
-
-use strict;
-no warnings qw(void); # Avoid "useless use of a constant in void context"
-use Bugzilla::Constants;
-
-{
- 'version' => BUGZILLA_VERSION,
- 'x_blah' => 'Hello....',
-
-};
diff --git a/extensions/example/lib/AuthLogin.pm b/extensions/example/lib/AuthLogin.pm
deleted file mode 100644
index def3fa228..000000000
--- a/extensions/example/lib/AuthLogin.pm
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical are Copyright (C) 2008 Canonical Ltd.
-# All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-package extensions::example::lib::AuthLogin;
-use strict;
-use base qw(Bugzilla::Auth::Login);
-use constant user_can_create_account => 0;
-use Bugzilla::Constants;
-
-# Always returns no data.
-sub get_login_info {
- return { failure => AUTH_NODATA };
-}
-
-1;
diff --git a/extensions/example/lib/AuthVerify.pm b/extensions/example/lib/AuthVerify.pm
deleted file mode 100644
index b89bbb213..000000000
--- a/extensions/example/lib/AuthVerify.pm
+++ /dev/null
@@ -1,31 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical are Copyright (C) 2008 Canonical Ltd.
-# All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-package extensions::example::lib::AuthVerify;
-use strict;
-use base qw(Bugzilla::Auth::Verify);
-use Bugzilla::Constants;
-
-# A verifier that always fails.
-sub check_credentials {
- return { failure => AUTH_NO_SUCH_USER };
-}
-
-1;
diff --git a/extensions/example/lib/Bugzilla/ExampleHook.pm b/extensions/example/lib/Bugzilla/ExampleHook.pm
deleted file mode 100644
index 6452e8fef..000000000
--- a/extensions/example/lib/Bugzilla/ExampleHook.pm
+++ /dev/null
@@ -1,43 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by the Initial Developer are Copyright (C) 2009 the
-# Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Max Kanat-Alexander <mkanat@bugzilla.org>
-
-package Bugzilla::ExampleHook;
-use strict;
-use base qw(Exporter);
-our @EXPORT_OK = qw(
- replace_bar
-);
-
-use Bugzilla::Util qw(html_quote);
-
-# Used by bug-format_comment--see its code for an explanation.
-sub replace_bar {
- my $params = shift;
- # $match is the first parentheses match in the $bar_match regex
- # in bug-format_comment.pl. We get up to 10 regex matches as
- # arguments to this function.
- my $match = $params->{matches}->[0];
- # Remember, you have to HTML-escape any data that you are returning!
- $match = html_quote($match);
- return qq{<a href="http://example.com/">$match</a>};
-};
-
-1;
diff --git a/extensions/example/lib/ConfigExample.pm b/extensions/example/lib/ConfigExample.pm
deleted file mode 100644
index 5ee612de2..000000000
--- a/extensions/example/lib/ConfigExample.pm
+++ /dev/null
@@ -1,41 +0,0 @@
-# -*- 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 Bugzilla Example Plugin.
-#
-# The Initial Developer of the Original Code is Canonical Ltd.
-# Portions created by Canonical Ltd. are Copyright (C) 2008
-# Canonical Ltd. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-# Bradley Baetz <bbaetz@acm.org>
-
-package extensions::example::lib::ConfigExample;
-use strict;
-use warnings;
-
-use Bugzilla::Config::Common;
-
-sub get_param_list {
- my ($class) = @_;
-
- my @param_list = (
- {
- name => 'example_string',
- type => 't',
- default => 'EXAMPLE',
- },
- );
- return @param_list;
-}
-
-1;
diff --git a/extensions/example/lib/WSExample.pm b/extensions/example/lib/WSExample.pm
deleted file mode 100644
index 754d49f70..000000000
--- a/extensions/example/lib/WSExample.pm
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- 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 Bugzilla Bug Tracking System.
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved, Inc. are Copyright (C) 2007
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-package extensions::example::lib::WSExample;
-use strict;
-use warnings;
-use base qw(Bugzilla::WebService);
-use Bugzilla::Error;
-
-# This can be called as Example.hello() from the WebService.
-sub hello { return 'Hello!'; }
-
-sub throw_an_error { ThrowUserError('example_my_error') }
-
-1;
diff --git a/extensions/example/template/en/admin/sanitycheck/messages-statuses.html.tmpl b/extensions/example/template/en/admin/sanitycheck/messages-statuses.html.tmpl
deleted file mode 100644
index 8a825e57c..000000000
--- a/extensions/example/template/en/admin/sanitycheck/messages-statuses.html.tmpl
+++ /dev/null
@@ -1,35 +0,0 @@
-[%# -*- 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 Bugzilla Example Plugin.
- #
- # The Initial Developer of the Original Code is ITA Software
- # Portions created by the Initial Developer are Copyright (C) 2009
- # the Initial Developer. All Rights Reserved.
- #
- # Contributor(s): Bradley Baetz <bbaetz@everythingsolved.com>
- #%]
-
-[% IF san_tag == "example_check_au_user" %]
- <em>EXAMPLE PLUGIN</em> - Checking for non-Australian users.
-[% ELSIF san_tag == "example_check_au_user_alert" %]
- User &lt;[% login FILTER html %]&gt; isn't Australian.
- [% IF user.in_group('editusers') %]
- <a href="editusers.cgi?id=[% userid FILTER none %]">Edit this user</a>.
- [% END %]
-[% ELSIF san_tag == "example_check_au_user_prompt" %]
- <a href="sanitycheck.cgi?example_repair_au_user=1">Fix these users</a>.
-[% ELSIF san_tag == "example_repair_au_user_start" %]
- <em>EXAMPLE PLUGIN</em> - OK, would now make users Australian.
-[% ELSIF san_tag == "example_repair_au_user_end" %]
- <em>EXAMPLE PLUGIN</em> - Users would now be Australian.
-[% END %]
diff --git a/extensions/example/template/en/default/admin/params/example.html.tmpl b/extensions/example/template/en/default/admin/params/example.html.tmpl
deleted file mode 100644
index e2bb5f35c..000000000
--- a/extensions/example/template/en/default/admin/params/example.html.tmpl
+++ /dev/null
@@ -1,28 +0,0 @@
-[%#
- # 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 Bugzilla Example Plugin.
- #
- # The Initial Developer of the Original Code is Canonical Ltd.
- # Portions created by Canonical Ltd. are Copyright (C) 2008
- # Canonical Ltd. All Rights Reserved.
- #
- # Contributor(s): Bradley Baetz <bbaetz@acm.org>
- #%]
-[%
- title = "Example Extension"
- desc = "Configure example extension"
-%]
-
-[% param_descs = {
- example_string => "Example string",
-}
-%]
diff --git a/extensions/example/template/en/default/pages/example.html.tmpl b/extensions/example/template/en/default/pages/example.html.tmpl
deleted file mode 100644
index d53f78fde..000000000
--- a/extensions/example/template/en/default/pages/example.html.tmpl
+++ /dev/null
@@ -1,32 +0,0 @@
-[%#
- # 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 Bugzilla Example Plugin.
- #
- # The Initial Developer of the Original Code is Canonical Ltd.
- # Portions created by Canonical Ltd. are Copyright (C) 2009
- # Canonical Ltd. All Rights Reserved.
- #
- # Contributor(s):
- # Max Kanat-Alexander <mkanat@bugzilla.org>
- #%]
-
-[% PROCESS global/header.html.tmpl
- title = "Example Page"
-%]
-
-<p>Here's what you passed me:</p>
-[% USE Dumper %]
-<pre>
- [% Dumper.dump_html(cgi_variables) %]
-</pre>
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/extensions/example/template/en/global/user-error-errors.html.tmpl b/extensions/example/template/en/global/user-error-errors.html.tmpl
deleted file mode 100644
index df5a203dd..000000000
--- a/extensions/example/template/en/global/user-error-errors.html.tmpl
+++ /dev/null
@@ -1,12 +0,0 @@
-[%# Note that error messages should generally be indented four spaces, like
- # below, because when Bugzilla translates an error message into plain
- # text, it takes four spaces off the beginning of the lines.
- #
- # Note also that I prefixed my error name with "example", the name of my
- # extension, so that I wouldn't conflict with other error names in
- # Bugzilla or other extensions.
- #%]
-[% IF error == "example_my_error" %]
- [% title = "Example Error Title" %]
- This is the error message! It contains <em>some html</em>.
-[% END %]
diff --git a/extensions/example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl b/extensions/example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl
deleted file mode 100644
index 8a825e57c..000000000
--- a/extensions/example/template/en/hook/admin/sanitycheck/messages-statuses.html.tmpl
+++ /dev/null
@@ -1,35 +0,0 @@
-[%# -*- 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 Bugzilla Example Plugin.
- #
- # The Initial Developer of the Original Code is ITA Software
- # Portions created by the Initial Developer are Copyright (C) 2009
- # the Initial Developer. All Rights Reserved.
- #
- # Contributor(s): Bradley Baetz <bbaetz@everythingsolved.com>
- #%]
-
-[% IF san_tag == "example_check_au_user" %]
- <em>EXAMPLE PLUGIN</em> - Checking for non-Australian users.
-[% ELSIF san_tag == "example_check_au_user_alert" %]
- User &lt;[% login FILTER html %]&gt; isn't Australian.
- [% IF user.in_group('editusers') %]
- <a href="editusers.cgi?id=[% userid FILTER none %]">Edit this user</a>.
- [% END %]
-[% ELSIF san_tag == "example_check_au_user_prompt" %]
- <a href="sanitycheck.cgi?example_repair_au_user=1">Fix these users</a>.
-[% ELSIF san_tag == "example_repair_au_user_start" %]
- <em>EXAMPLE PLUGIN</em> - OK, would now make users Australian.
-[% ELSIF san_tag == "example_repair_au_user_end" %]
- <em>EXAMPLE PLUGIN</em> - Users would now be Australian.
-[% END %]
diff --git a/extensions/example/template/en/hook/global/user-error-errors.html.tmpl b/extensions/example/template/en/hook/global/user-error-errors.html.tmpl
deleted file mode 100644
index df5a203dd..000000000
--- a/extensions/example/template/en/hook/global/user-error-errors.html.tmpl
+++ /dev/null
@@ -1,12 +0,0 @@
-[%# Note that error messages should generally be indented four spaces, like
- # below, because when Bugzilla translates an error message into plain
- # text, it takes four spaces off the beginning of the lines.
- #
- # Note also that I prefixed my error name with "example", the name of my
- # extension, so that I wouldn't conflict with other error names in
- # Bugzilla or other extensions.
- #%]
-[% IF error == "example_my_error" %]
- [% title = "Example Error Title" %]
- This is the error message! It contains <em>some html</em>.
-[% END %]
diff --git a/extensions/example/version.pl b/extensions/example/version.pl
deleted file mode 100644
index c1305f92f..000000000
--- a/extensions/example/version.pl
+++ /dev/null
@@ -1,31 +0,0 @@
-# -*- 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 Bugzilla Example WebService Plugin
-#
-# The Initial Developer of the Original Code is Everything Solved, Inc.
-# Portions created by Everything Solved, Inc. are Copyright (C) 2007
-# Everything Solved, Inc. All Rights Reserved.
-#
-# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-
-# This script does some code to return a version number. However,
-# most plugins will probably just want to return a raw string.
-# To do that, the only contents of the file should be the string
-# on a single line, like:
-#
-# '1.2.3';
-
-use strict;
-no warnings qw(void); # Avoid "useless use of a constant in void context"
-use Bugzilla::Constants;
-BUGZILLA_VERSION;