-
-
30 May 2009 06:35:04 UTC
- Distribution: HTML-Template-Compiled-Plugin-VBEscape
- Module version: 0.03
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (520 / 1 / 0)
- Kwalitee
Bus factor: 1- 100.00% Coverage
- License: perl_5
- Perl: v5.6.1
- Activity
24 month- Tools
- Download (5.03KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- Steffen Winkler <steffenw at cpan.org>
- Dependencies
- HTML::Template::Compiled
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
- NAME
- VERSION
- SYNOPSIS
- DESCRIPTION
- EXAMPLE
- SUBROUTINES/METHODS
- DIAGNOSTICS
- CONFIGURATION AND ENVIRONMENT
- DEPENDENCIES
- INCOMPATIBILITIES
- BUGS AND LIMITATIONS
- SEE ALSO
- AUTHOR
- LICENSE AND COPYRIGHT
NAME
HTML::Template::Compiled::Plugin::VBEscape - VB-Script-Escaping for HTC
VERSION
0.03
SYNOPSIS
use HTML::Template::Compiled::Plugin::VBEscape; my $htc = HTML::Template::Compiled->new( plugin => [qw(HTML::Template::Compiled::Plugin::VBEscape)], tagstyle => [qw(-classic -comment +asp)], scalarref => \<<'EOVB'); ); <script language="VBScript"><!-- string1 = "<%= attribute ESCAPE=VB%>" string2 = "<%= cdata ESCAPE=VB%>" '--></script> EOVB $htc->param( attribute => 'foo "bar"', cdata => 'text "with" double quotes', ); print $htc->output();
Output:
<script language="VBScript"><!-- string1 = "foo ""bar""" string2 = "text ""with"" double quotes" '--></script>
DESCRIPTION
VB-Script-Escaping for HTML::Template::Compiled
EXAMPLE
Inside of this Distribution is a directory named example. Run this *.pl files.
SUBROUTINES/METHODS
- register
-
gets called by HTC
- escape_vb
-
Escapes data for VB CDATA or for VB attributes.
DIAGNOSTICS
none
CONFIGURATION AND ENVIRONMENT
none
DEPENDENCIES
INCOMPATIBILITIES
not known
BUGS AND LIMITATIONS
not known
SEE ALSO
AUTHOR
Steffen Winkler
LICENSE AND COPYRIGHT
Copyright (c) 2007 - 2009, Steffen Winkler
<steffenw at cpan.org>
. All rights reserved.This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install HTML::Template::Compiled::Plugin::VBEscape, copy and paste the appropriate command in to your terminal.
cpanm HTML::Template::Compiled::Plugin::VBEscape
perl -MCPAN -e shell install HTML::Template::Compiled::Plugin::VBEscape
For more information on module installation, please visit the detailed CPAN module installation guide.