Unix and Linux Discussions Tagged with excel |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
10,556 |
UNIX for Beginners Questions & Answers |
|
|
|
16 |
27,303 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,829 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,894 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
2,697 |
Shell Programming and Scripting |
|
|
|
3 |
3,522 |
Shell Programming and Scripting |
|
|
|
2 |
16,356 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
7,476 |
Shell Programming and Scripting |
|
|
|
43 |
27,151 |
Programming |
|
|
|
2 |
6,588 |
Shell Programming and Scripting |
|
|
|
2 |
2,243 |
Programming |
|
|
|
2 |
5,340 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
7,159 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
7,633 |
Shell Programming and Scripting |
|
|
|
7 |
5,740 |
Shell Programming and Scripting |
|
|
|
2 |
9,606 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
2,849 |
Shell Programming and Scripting |
|
|
|
8 |
17,980 |
Shell Programming and Scripting |
|
|
|
7 |
5,298 |
Shell Programming and Scripting |
|
|
|
5 |
4,043 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,962 |
Shell Programming and Scripting |
|
|
|
1 |
11,244 |
Shell Programming and Scripting |
|
|
|
2 |
33,329 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
7,013 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
20,837 |
Shell Programming and Scripting |
|
|
|
8 |
5,032 |
Shell Programming and Scripting |
|
|
|
0 |
6,224 |
Shell Programming and Scripting |
|
|
|
9 |
12,371 |
Shell Programming and Scripting |
|
|
|
7 |
40,795 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
7,738 |
Shell Programming and Scripting |
|
|
|
2 |
3,528 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,203 |
Shell Programming and Scripting |
|
|
|
12 |
6,487 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,166 |
Security Advisories (RSS) |
|
|
|
0 |
1,117 |
Security Advisories (RSS) |
|
|
|
0 |
7,664 |
Shell Programming and Scripting |
|
|
|
1 |
4,824 |
Shell Programming and Scripting |
|
|
|
3 |
31,381 |
Shell Programming and Scripting |
|
|
|
0 |
1,200 |
Security Advisories (RSS) |
|
|
|
1 |
7,610 |
Shell Programming and Scripting |
Excel::Template::Plus::TT(3pm) User Contributed Perl Documentation Excel::Template::Plus::TT(3pm)
NAME
Excel::Template::Plus::TT - Extension of Excel::Template to use TT
SYNOPSIS
use Excel::Template::Plus::TT;
# this is most commonly used through
# the Excel::Template::Plus factory
my $template = Excel::Template::Plus::TT->new(
template => 'greeting.tmpl',
config => { INCLUDE => [ '/templates' ] },
params => { greeting => 'Hello' }
);
$template->param(location => 'World');
$template->write_file('greeting.xls');
DESCRIPTION
This is an engine for Excel::Template::Plus which replaces the standard Excel::Template template features with TT. See the
Excel::Template::Plus docs for more information.
METHODS
Accessors
config
template
template_class
params
Excel::Template compat methods
params ($name | $name = $value)>
This provides access to getting and setting the parameters, it behaves exactly like the standard CGI.pm-style param method.
output
Returns the generated excel file.
write_file ($filename)
Writes the generated excel file to $filename.
Housekeeping
DEMOLISH
This will cleanup any temp files generated in the process.
meta
Returns the metaclass.
BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to
cpan-RT.
ACKNOWLEDGEMENTS
This module was inspired by Excel::Template::TT.
AUTHOR
Stevan Little <stevan@iinteractive.com>
COPYRIGHT AND LICENSE
Copyright 2007-2010 by Infinity Interactive, Inc.
<http://www.iinteractive.com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
perl v5.14.2 2012-05-06 Excel::Template::Plus::TT(3pm)