2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / BugsSite / page.cgi
blob6e78317fc06f88cf215de5da79df44848aae115b
1 #!/usr/bin/perl -wT
2 # -*- Mode: perl; indent-tabs-mode: nil -*-
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/
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.
14 # The Original Code is the Bugzilla Bug Tracking System.
16 # The Initial Developer of the Original Code is Netscape Communications
17 # Corporation. Portions created by Netscape are
18 # Copyright (C) 1998 Netscape Communications Corporation. All
19 # Rights Reserved.
21 # Contributor(s): Gervase Markham <gerv@gerv.net>
24 ###############################################################################
25 # This CGI is a general template display engine. To display templates using it,
26 # put them in the "pages" subdirectory of en/default, call them
27 # "foo.<ctype>.tmpl" and use the URL page.cgi?id=foo.<ctype> , where <ctype> is
28 # a content-type, e.g. html.
29 ###############################################################################
31 use strict;
33 use lib ".";
35 use Bugzilla;
37 require "CGI.pl";
39 use vars qw($template $vars);
41 Bugzilla->login();
43 my $cgi = Bugzilla->cgi;
45 my $id = $cgi->param('id');
46 if ($id) {
47 # Remove all dodgy chars, and split into name and ctype.
48 $id =~ s/[^\w\-\.]//g;
49 $id =~ /(.*)\.(.*)/;
50 if (!$2) {
51 # if this regexp fails to match completely, something bad came in
52 ThrowCodeError("bad_page_cgi_id", { "page_id" => $id });
55 my $format = GetFormat("pages/$1", undef, $2);
57 $cgi->param('id', $id);
59 print $cgi->header($format->{'ctype'});
61 $template->process("$format->{'template'}", $vars)
62 || ThrowTemplateError($template->error());
64 else {
65 ThrowUserError("no_page_specified");