Main > Free Download Search >

Free template plugin mp3 1.02 software for linux

template plugin mp3 1.02

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2871
Template::Plugin::MP3 1.02

Template::Plugin::MP3 1.02


Template::Plugin::MP3 is a Perl interface to the MP3::Info Module. more>>
Template::Plugin::MP3 is a Perl interface to the MP3::Info Module.

SYNOPSIS

[% USE mp3 = MP3("Montana.mp3") %]

[% mp3.title %]
[% mp3.album %]

# perldoc MP3::Info for more ideas

Template::Plugin::MP3 provides a simple wrapper for using MP3::Info in object oriented mode; see MP3::Info for more details.

<<less
Download (0.018MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1087 downloads
Template::Plugin::MP3::Tag 0.01

Template::Plugin::MP3::Tag 0.01


Template::Plugin::MP3::Tag is a Perl interface to the MP3::Tag Module. more>>
Template::Plugin::MP3::Tag is a Perl interface to the MP3::Tag Module.

SYNOPSIS

[% USE tag = MP3("path_to_mp3_file") %]

[% tag.title %]
[% tag.album %]

# perldoc MP3::Tag for more ideas

Template::Plugin::MP3::Tag provides a simple wrapper for using MP3::Tag in object oriented mode; see MP3::Tag for more details.

Although Template::Plugin::MP3 can fetch MP3 files, but it Supports only ID3v1. When you have to fetch MP3 files ID3v2, I recommend you to use this module.

<<less
Download (0.004MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1082 downloads
Template::Plugin::Datum 0.02

Template::Plugin::Datum 0.02


Template::Plugin::Datum is a Perl module with TT2 plugin that converts international date format to German date format. more>>
Template::Plugin::Datum is a Perl module with TT2 plugin that converts international date format to German date format.

SYNOPSIS

[% USE Datum %]

von: [% 20030101 | datum %] -> 01.01.2003
bis: [% 2003-12-31 | datum %] -> 31.12.2003

Zeitstempel: [% 20031212143000 | datum %] -> 12.12.2003 14:30:00

This plugin converts international date format (year-month-day) to German date format (day.month.year).

Recognized formats are:

yyyy-mm-dd (2003-12-31)
yyyymmdd (20031231)
yyyymmddHHMMSS (20031231143000) date and time

<<less
Download (0.002MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1129 downloads
Template::Plugin::JSON 0.02

Template::Plugin::JSON 0.02


Template::Plugin::JSON is a Perl module that adds a .json vmethod for all TT values. more>>
Template::Plugin::JSON is a Perl module that adds a .json vmethod for all TT values.

SYNOPSIS

[% USE JSON %];

< script type="text/javascript" >

var foo = [% foo.json %];

< /script >

This plugin provides a .json vmethod to all value types when loaded.

With no argument it will try to load JSON::Syck and then JSON::Converter. If used as [% USE JSON("Syck") %] or [% USE JSON("Converter") %] it will load that specific plugin.
If no plugin could be loaded an exception is thrown. Check for errors from "process" in Template.

<<less
Download (0.004MB)
Added: 2007-02-19 License: Perl Artistic License Price:
977 downloads
Template::Plugins 2.19

Template::Plugins 2.19


Template::Plugins is a Perl module with plugin provider module. more>>
Template::Plugins is a Perl module with plugin provider.

SYNOPSIS

use Template::Plugins;

$plugin_provider = Template::Plugins->new(%options);

($plugin, $error) = $plugin_provider->fetch($name, @args);

The Template::Plugins module defines a provider class which can be used to load and instantiate Template Toolkit plugin modules.

<<less
Download (0.76MB)
Added: 2007-08-08 License: Perl Artistic License Price:
807 downloads
Template::Plugin::SumOf 0.01

Template::Plugin::SumOf 0.01


Template::Plugin::SumOf is a Perl module to calculate the sum with VMETHODS. more>>
Template::Plugin::SumOf is a Perl module to calculate the sum with VMETHODS.

SYNOPSIS

# in your script
use Template;
use Template::Plugin::SumOf;
my $tt = Template->new;
$tt->process(
template.html,
{
ary => [
{ date => 2006-09-13, price => 300 },
{ date => 2006-09-14, price => 500 }
]
}
)
or die $tt->error;

# in your template.
[% USE SumOf -%]
[%- FOR elem IN objects -%]
[% elem.date %],[% elem.price %]
[% END -%]
,[% objects.sum_of(price) %]

# result.
2006-09-13,300
2006-09-14,500
,800

You can easy to calcurate sum of array, with VMETHODS.

<<less
Download (0.004MB)
Added: 2007-01-25 License: Perl Artistic License Price:
1002 downloads
Template::Plugin::XML 2.16

Template::Plugin::XML 2.16


Template::Plugin::XML is a XML plugin for the Template Toolkit. more>>
Template::Plugin::XML is a XML plugin for the Template Toolkit.

SYNOPSIS

[% USE XML;
dom = XML.dom(foo.xml);
xpath = XML.xpath(bar.xml);
simple = XML.simple(baz.xml);
rss = XML.simple(news.rdf);
%]

[% USE XML(file=foo.xml);
dom = XML.dom
xpath = XML.xpath
# ...etc...
%]

[% USE XML(dir=/path/to/xml);
file = XML.file(foo.xml );
dom = file.dom
xpath = file.xpath
# ...etc...
%]

The Template-XML distribution provides a number of Template Toolkit plugin modules for working with XML.

The Template::Plugin::XML module is a front-end to the various other XML plugin modules. Through this you can access XML files and directories of XML files via the Template::Plugin::XML::File and Template::Plugin::XML::Directory modules (which subclass from the Template::Plugin::File and Template::Plugin::Directory modules respectively). You can then create a Document Object Model (DOM) from an XML file (Template::Plugin::XML::DOM), examine it using XPath queries (Template::Plugin::XML::XPath), turn it into a Perl data structure (Template::Plugin::XML::Simple) or parse it as an RSS (RDF Site Summary) file.

The basic XML plugins were distributed as part of the Template Toolkit until version 2.15 released in May 2006. At this time they were extracted into this separate Template-XML distribution and an alpha version of this Template::Plugin::XML front-end module was added.
The Template::Plugin::XML module is still in development and not guaranteed to work correctly yet. However, all the other XML plugins are more-or-less exactly as they were in TT version 2.14 and should work as normal.

For general information on the Template Toolkit see the documentation for the Template module or http://template-toolkit.org. For information on using plugins, see Template::Plugins and "USE" in Template::Manual::Directives. For further information on XML, see http://xml.com/.

<<less
Download (0.026MB)
Added: 2006-09-09 License: Perl Artistic License Price:
1141 downloads
Template::Plugin::HtmlToText 0.02

Template::Plugin::HtmlToText 0.02


Template::Plugin::HtmlToText is a plugin interface to HTML::FormatText. more>>
Template::Plugin::HtmlToText is a plugin interface to HTML::FormatText.

SYNOPSIS

Quick summary of what the module does.

Perhaps a little code snippet.

[% USE HtmlToText %]

# use html2text FILTER to var myhtml or myhtmltext
[% myhtml FILTER html2text(leftmargin => 0, rightmargin => 50) %]
[% myhtmltext | html2text %]

# not to a var, but to html code
[% FILTER html2text %]
heavy
[% END %]
[%# output is "heavy", no %]

This plugin provides an interface to the HTML::FormatText module which format HTML as plaintext.

<<less
Download (0.003MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
Template::Plugin::KwikiFormat 1.04

Template::Plugin::KwikiFormat 1.04


Template::Plugin::KwikiFormat is a filter to convert kwiki formatted text to html. more>>
Template::Plugin::KwikiFormat is a filter to convert kwiki formatted text to html.
SYNOPSIS
[% USE KwikiFormat %]
[% FILTER kwiki %]
== title
*bold* /italic/
[% END %]
A wrapper around Kwiki::Formatter.
Template::Plugin::KwikiFormat allows you to use KwikiFormats in data displayed by Template::Toolkit.
Enhancements:
- Perl
<<less
Download (0.004MB)
Added: 2006-08-17 License: Perl Artistic License Price:
1163 downloads
Template::Plugin::Page 0.10

Template::Plugin::Page 0.10


Template::Plugin::Page is a plugin to help when paging through sets of results. more>> <<less
Download (0.003MB)
Added: 2006-11-01 License: Perl Artistic License Price:
1088 downloads
Template::Plugin::XML::LibXML 1.07

Template::Plugin::XML::LibXML 1.07


Template::Plugin::XML::LibXML is a XML::LibXML Template Toolkit Plugin. more>>
Template::Plugin::XML::LibXML is a XML::LibXML Template Toolkit Plugin.

SYNOPSIS

[% USE docroot = XML.LibXML("helloworld.xml") %]

The message is: [% docroot.find("/greeting/text") %]

This module provides a plugin for the XML::LibXML module. It can be utilised the same as any other Template Toolkit plugin, by using a USE statement from within a Template. The use statment will return a reference to root node of the parsed document

Specifying a Data Source

The plugin is capable of using either a string, a filename or a filehandle as a source for either XML data, or HTML data which will be converted to XHTML internally.

The USE statement can take one or more arguments to specify what XML should be processed. If only one argument is passed then the plugin will attempt to guess how what it has been passed should be interpreted.

When it is forced to guess what type of data it is used the routine will first look for an open filehandle, which if it finds it will assume its a filehandle to a file containing XML. Failing this (in decreasing order) it will look for the chars "" tag (and assume its HTML string,) look for a "<<less
Download (0.013MB)
Added: 2006-09-13 License: Perl Artistic License Price:
1139 downloads
Template::Plugin::NoFollow 1.000

Template::Plugin::NoFollow 1.000


Template::Plugin::NoFollow is a TT filter to add rel=nofollow to all HTML links. more>>
Template::Plugin::NoFollow is a TT filter to add rel="nofollow" to all HTML links.

SYNOPSIS

[% use NoFollow %]
...
[% FILTER nofollow %]
Google
[% END %]
...
[% text | nofollow %]

Template::Plugin::NoFollow is a filter plugin for TT, which adds rel="nofollow" to all HTML links found in the filtered text.

<<less
Download (0.003MB)
Added: 2007-04-04 License: Perl Artistic License Price:
933 downloads
Template::Plugin::Heritable 0.02

Template::Plugin::Heritable 0.02


Template::Plugin::Heritable is a Perl module with OO dispatching and inheritance for templates. more>>
Template::Plugin::Heritable is a Perl module with OO dispatching and inheritance for templates.

SYNOPSIS

[% USE Heritable %]

[%# searches providers for a "view" template method on
class (which should be a metamodel object, eg
someobj.meta in Perl 6) %]
[% Heritable.include(class, "view", { self = object }) %]

[%# return list of paths it would look %]
[% paths = Heritable.dispatch_paths(class, "view") %]

[%# if you dont have the class of the object handy, then
use invoke instead %]
[% Heritable.invoke(object, "method", { self = object } %]

[%# call the next method in the inheritance tree from
inside a template method %]
[% next_template() %]

Template::Plugin::Heritable provides support for selecting an appropriate template based on the class of an object. It is also possible to call the next template in the inheritance heirarchy/chain.

This provides a form of inheritance for template display.

The core of this is the template dispatch mechanism, which deals in terms of a suitable metamodel class. The module currently deals in the following metamodels; but no doubt you could fool it with modules which encapsulate other metamodels (such as Perl 5, NEXT, Class::C3, DBIx::Class::Schema, etc) with minimal effort by conforming to one of their APIs.

<<less
Download (0.021MB)
Added: 2007-07-18 License: Perl Artistic License Price:
828 downloads
Template::Plugin::ByDate 0.03

Template::Plugin::ByDate 0.03


Template::Plugin::ByDate is a Perl module that keeps/removes included text based on whether the current date is within range. more>>
Template::Plugin::ByDate is a Perl module that keeps/removes included text based on whether the current date is within range.

SYNOPSIS

[% USE ByDate %]

[% FILTER ByDate
starting = 2006-05-02
until = 2006-08-22 %]
This text only shows up from May 2, 2006 through August 22, 2006.
[% END %]

FUNCTIONS

init

filter

We accept one optional argument, the word "not". If specified, it will reverse the meaning of the filter: rather than keeping the text if the current date is between starting and until, ignore it. e.g.,

[% FILTER ByDate
starting = 2006-05-02
until = 2006-08-22 %]
This only shows up inside the date range
[% END %]
while
[% FILTER ByDate
not starting = 2006-05-02
until = 2006-08-22 %]
This only shows up outside the date range
[% END %]

The starting and until dates are actually parsed by Date::Parse. If you do not specify a time, the starting time is 00:00:00, while the until time is 23:59:59. This is done by checking the until stamp for a colon - if there is no colon, we add " 23:59:59" to the string before passing it into Date::Parse. If that doesnt work for you, please let me know what string youre using.

<<less
Download (0.004MB)
Added: 2007-04-13 License: Perl Artistic License Price:
924 downloads
Template::Plugin::SSI 0.11

Template::Plugin::SSI 0.11


Template::Plugin::SSI is a plugin to use SSI in Template Toolkit (wrapper for CGI::SSI). more>>
Template::Plugin::SSI is a plugin to use SSI in Template Toolkit (wrapper for CGI::SSI).

SYNOPSIS

[% USE SSI %]

# virtual include of the file /foo/bar.inc.html
[% SSI.include(virtual, /foo/bar.inc.html) %]

# file include of the file /foo/bar.inc.html
[% SSI.include(file, /var/www/html/foo/bar.inc.html) %]

# execute a command
[% SSI.exec(cmd, ls) %]

# execute a cgi script
[% SSI.exec(cgi, /cgi-bin/foo.cgi) %]

# set a config variable (sizefmt, timefmt, or errmsg)
[% SSI.config(timefmt, "%Y") %]

# echo a set or environment variable
# Environment Variable Examples:
# DOCUMENT_URI - the URI of this document
# DOCUMENT_NAME - the name of the current document
# DATE_GMT - the same as gmtime
# DATE_LOCAL - the same as localtime
# FLASTMOD - the last time this script was modified
[% SSI.echo(DATE_LOCAL) %]

# set a local variable ($name = Corey)
[% SSI.set(name, Corey) %]

# print when index.html was last modified
[% SSI.flastmod(file, index.html) %]

# print the file size of index.html
[% SSI.fsize(file, index.html) %]

A Template Toolkit Plugin that provides an easy way to include Apaches SSI within a template. (acts as a wrapper to CGI::SSI)

The plugin can be loaded via the familiar USE directive.

[% USE SSI %]

This creates a plugin object with the name of SSI.

<<less
Download (0.003MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5