describekeywords.cgi 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # The Initial Developer of the Original Code is Terry Weissman.
  17. # Portions created by Terry Weissman are
  18. # Copyright (C) 2000 Terry Weissman. All
  19. # Rights Reserved.
  20. #
  21. # Contributor(s): Terry Weissman <terry@mozilla.org>
  22. # Contributor(s): Gervase Markham <gerv@gerv.net>
  23. use strict;
  24. use lib qw(. lib);
  25. use Bugzilla;
  26. use Bugzilla::Error;
  27. use Bugzilla::User;
  28. use Bugzilla::Keyword;
  29. Bugzilla->login();
  30. my $cgi = Bugzilla->cgi;
  31. my $template = Bugzilla->template;
  32. my $vars = {};
  33. $vars->{'keywords'} = Bugzilla::Keyword->get_all_with_bug_count();
  34. $vars->{'caneditkeywords'} = Bugzilla->user->in_group("editkeywords");
  35. print Bugzilla->cgi->header();
  36. $template->process("reports/keywords.html.tmpl", $vars)
  37. || ThrowTemplateError($template->error());