search_plugin.cgi 996 B

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/env perl -wT
  2. # -*- Mode: perl; indent-tabs-mode: nil -*-
  3. #
  4. # The contents of this file are subject to the Mozilla Public
  5. # License Version 1.1 (the "License"); you may not use this file
  6. # except in compliance with the License. You may obtain a copy of
  7. # the License at http://www.mozilla.org/MPL/
  8. #
  9. # Software distributed under the License is distributed on an "AS
  10. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11. # implied. See the License for the specific language governing
  12. # rights and limitations under the License.
  13. #
  14. # The Original Code is the Bugzilla Bug Tracking System.
  15. #
  16. # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
  17. use strict;
  18. use lib qw(. lib);
  19. use Bugzilla;
  20. use Bugzilla::Error;
  21. Bugzilla->login();
  22. my $cgi = Bugzilla->cgi;
  23. my $template = Bugzilla->template;
  24. # Return the appropriate HTTP response headers.
  25. print $cgi->header('application/xml');
  26. $template->process("search/search-plugin.xml.tmpl")
  27. || ThrowTemplateError($template->error());