VERSION

version 0.070001

SYNOPSIS

        # in your templates:

        # encode a URL
        [== encode_url('http://www.google.com/search?q=tenjin&ie=utf-8&oe=utf-8&aq=t') =]
        # returns http%3A//www.google.com/search%3Fq%3Dtenjin%26ie%3Dutf-8%26oe%3Dutf-8%26aq%3Dt

        # escape a string of lines of HTML code
        <?pl    my $string = '<h1>You & Me</h1>\n<h2>Me & You</h2>'; ?>
        [== text2html($string) =]
        # returns <h1>You & Me</h1><br />\n<h2>Me & You</h2>

DESCRIPTION

This module provides a few utility functions which can be used in your templates for your convenience. These include functions to (un)escape and (en/de)code URLs.

METHODS

Receives a string that might contain tabs in it, and replaces those tabs with spaces, each tab with the number of spaces defined by $tabwidth, or, if $tabwidth was not passed, with 8 spaces. Receives a string of \s-1XML\s0 (or (x)HTML) code and converts the characters <>&\' to \s-1HTML\s0 entities. This is the method that is invoked when you use [= $expression =] in your templates. Receives a string of escaped \s-1XML\s0 (or (x)HTML) code (for example, a string that was escaped with the escape_xml() function, and 'unescapes' all \s-1HTML\s0 entities back to their actual characters. Receives a \s-1URL\s0 and encodes it by escaping 'non-standard' characters. Does the opposite of encode_url(). Receives a value of some sort, and if it is a true value, returns the string ' checked=\*(L"checked\*(R"' which can be appended to \s-1HTML\s0 checkboxes. Receives a value of some sort, and if it is a true value, returns the string ' selected=\*(L"selected\*(R"' which can be used in an option in an \s-1HTML\s0 select box. Receives a value of some sort, and if it is a true value, returns the string ' disabled=\*(L"disabled\*(R"' which can be used in an \s-1HTML\s0 input. Receives a string of text containing lines delimited by newline characters (\n, or possibly \r\n) and appends an \s-1HTML\s0 line break (<br />) to every line (the newline character is left untouched). Receives a string of text containing lines delimited by newline characters, and possibly some \s-1XML\s0 (or (x)HTML) code, escapes that code with escape_xml() and then appends an \s-1HTML\s0 line break to every line with nl2br(). Creates a subroutine reference that can be used for cycling through the items of the @items array. So, for example, you can:

my $cycle = new_cycle(qw/red green blue/); print $cycle->(); # prints 'red' print $cycle->(); # prints 'green' print $cycle->(); # prints 'blue' print $cycle->(); # prints 'red' again

INTERNAL(?) METHODS

Wraps a Perl expression in a customized wrapper which will be processed by the Tenjin preprocessor and replaced with the standard [== $expression =]. Wrap a Perl expression in a customized wrapper which will be processed by the Tenjin preprocessor and replaced with the standard [= $expression =], which means the expression will be escaped.

RELATED TO Tenjin::Util…

Tenjin, Tenjin::Template, Tenjin::Context.

AUTHOR

The \s-1CPAN\s0 version of Tenjin was forked by Ido Perlmuter <ido at ido50.net> from version 0.0.2 of the original plTenjin, which is developed by Makoto Kuwata at http://www.kuwata-lab.com/tenjin/ <http://www.kuwata-lab.com/tenjin/>.

Development of Tenjin is done with github at <http://github.com/ido50/Tenjin>.

LICENSE AND COPYRIGHT

Tenjin is licensed under the \s-1MIT\s0 license.

Copyright (c) 2007-2010 the aforementioned authors.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.