RSS

(root)/bugzilla/trunk : 6949 : Bugzilla/Template/Parser.pm

To get this branch, use:
bzr branch /bugzilla/trunk

« back to all changes in this revision

Viewing changes to Bugzilla/Template/Parser.pm

Max Kanat-Alexander
2010-02-01 13:39:54
Revision ID: mkanat@bugzilla.org-20100201213954-6owd0g6vhlna09jw
Fix the data in the bzr repo to match the data in the CVS repo.
During the CVS imports into Bzr, there were some inconsistencies introduced
(mostly that files that were deleted in CVS weren't being deleted in Bzr).
So this checkin makes the bzr repo actually consistent with the CVS repo,
including fixing permissions of files.

Show diffs side-by-side

added added

removed removed

1
 
# -*- Mode: perl; indent-tabs-mode: nil -*-
2
 
#
3
 
# The contents of this file are subject to the Mozilla Public
4
 
# License Version 1.1 (the "License"); you may not use this file
5
 
# except in compliance with the License. You may obtain a copy of
6
 
# the License at http://www.mozilla.org/MPL/
7
 
#
8
 
# Software distributed under the License is distributed on an "AS
9
 
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10
 
# implied. See the License for the specific language governing
11
 
# rights and limitations under the License.
12
 
#
13
 
# The Original Code is the Bugzilla Bug Tracking System.
14
 
#
15
 
# The Initial Developer of the Original Code is Marc Schumann.
16
 
# Portions created by Marc Schumann are Copyright (C) 2008 Marc Schumann.
17
 
# All Rights Reserved.
18
 
#
19
 
# Contributor(s): Marc Schumann <wurblzap@gmail.com>
20
 
 
21
 
 
22
 
package Bugzilla::Template::Parser;
23
 
 
24
 
use strict;
25
 
 
26
 
use base qw(Template::Parser);
27
 
 
28
 
sub parse {
29
 
    my ($self, $text, @params) = @_;
30
 
    if (Bugzilla->params->{'utf8'}) {
31
 
        utf8::is_utf8($text) || utf8::decode($text);
32
 
    }
33
 
    return $self->SUPER::parse($text, @params);
34
 
}
35
 
 
36
 
1;
37
 
 
38
 
__END__
39
 
 
40
 
=head1 NAME
41
 
 
42
 
Bugzilla::Template::Parser - Wrapper around the Template Toolkit
43
 
C<Template::Parser> object
44
 
 
45
 
=head1 DESCRIPTION
46
 
 
47
 
This wrapper makes the Template Toolkit aware of UTF-8 templates.
48
 
 
49
 
=head1 SUBROUTINES
50
 
 
51
 
=over
52
 
 
53
 
=item C<parse($options)>
54
 
 
55
 
Description: Parses template text using Template::Parser::parse(),
56
 
converting the text to UTF-8 encoding before, if necessary.
57
 
 
58
 
Params:      C<$text> - Text to pass to Template::Parser::parse().
59
 
 
60
 
Returns:     Parsed text as returned by Template::Parser::parse().
61
 
 
62
 
=back
63
 
 
64
 
=head1 SEE ALSO
65
 
 
66
 
L<Template>

Loggerhead 1.18.1 is a web-based interface for Bazaar branches