Main > Free Download Search >

Free blitz templates software for linux

blitz templates

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1072
Blitz templates 0.5.1

Blitz templates 0.5.1


Blitz templates is a fast template engine written in C and compiled as a PHP module. more>>
Blitz templates is a fast template engine written in C and compiled as a PHP module. It started as a php_templates replacement, but developed into much more.
The project is based on extensible template controllers (custom view classes in PHP) and weakly-active templates (simple logic in HTML).
Enhancements:
- Lot of code cleanup was done.
- The "parse" and "include" methods were improved, and their "vars" argument is not a globals array anymore; now its just an arbitrary iteration set and both methods comply with set/block/fetch.
- Templates included by the "include" method from PHP code inherit globals from the caller automatically.
- Corresponding tests were updated.
- A new article was added to the documentation: "Quick Geek Blitz Tutorial", which is addressed to those professionals who want to learn API basics in a minimum of time.
<<less
Download (0.10MB)
Added: 2007-08-14 License: BSD License Price:
803 downloads
Label Templates 1.0

Label Templates 1.0


Label Templates are Free Opendocument Format Label Templates in over 50 sizes. more>>
Label Templates are free Opendocument Format label templates for Openoffice.org, KOffice or any other Office suite ODF ready for making labels.

Collection includes CD, DVD, address, mailing, round, media label templates, Avery sizes and more. US Letter size and 14 size paper formats available.

Setup time is quick with these templates and printing labels from these templates is easy.

<<less
Download (0.50MB)
Added: 2006-10-23 License: GPL (GNU General Public License) Price:
1116 downloads
libmysqltemplate 1.0

libmysqltemplate 1.0


libmysqltemplate is a very high speed C state machine template library that uses MySQL data for the source of the templates and more>>
libmysqltemplate project is a very high speed C state machine template library that uses MySQL data for the source of the templates and optionally for name/value pairs.

It is required for the mysqlApache2/mysqlMail2/iDNS family of openisp.net/unixservice.com Web based consoles for clusters and other complex Internet service infrastructure management.
<<less
Download (0.003MB)
Added: 2007-08-15 License: LGPL (GNU Lesser General Public License) Price:
800 downloads
HCKit::Template 0.02

HCKit::Template 0.02


HCKit::Template is a Perl module with a template system for HTML construction. more>>
HCKit::Template is a Perl module with a template system for HTML construction.

This module constructs an HTML page from a template. The conversion proceeds with the help of rewrite rules and data sources. Rewrite rules can be specified in the template file itself, or in the Perl script. Data sources can be XML files, or dynamically constructed in the Perl script.

<<less
Download (0.011MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1129 downloads
kmail templates 20061018

kmail templates 20061018


kmail templates is a patch for current 3.5 branch of kdepim package. more>>
kmail templates is a patch for current 3.5 branch of kdepim package which replaces Phrases configuration with more rich templates engine.

Templates use template syntax of well-known Thebat! mail client and allow construct a little more complicated messages than now.
<<less
Download (MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1112 downloads
HTML::Template 2.9

HTML::Template 2.9


HTML::Template module attempts to make using HTML templates simple and natural. more>>
HTML::Template module attempts to make using HTML templates simple and natural.
HTML::Template library extends standard HTML with a few new tags for variables, loops, if/else blocks and includes.
A file written with HTML and these new tags is called a template. Using this module you fill in the values for the variables and loops declared in the template.
This allows you to seperate design (the HTML) from the data, which you generate in the Perl script. While there are many other HTML template systems available, this module is simple and fast.
It doesnt try to reinvent Perl CGI, it just augments HTML with a few new and very useful abilities.
Enhancements:
- A new option was added to enforce Taint mode for unescaped variables.
- Several long-standing bugs were fixed.
- The enhanced tests produced by the Phalanx project are now part of the module.
<<less
Download (0.061MB)
Added: 2007-01-31 License: GPL (GNU General Public License) Price:
998 downloads
Template::Ast 0.02

Template::Ast 0.02


Template::Ast is a Perl module to process ASTs for Perl Template Toolkit. more>>
Template::Ast is a Perl module to process ASTs for Perl Template Toolkit.

SYNOPSIS

use Template::Ast;

# Rebuild AST stored in file:
$ast = Template::Ast->read(foo.ast) or
die Template::Ast->error();

# Writing existing AST to file:
$ast = { Marry => [24, F], John => [21, M] };
Template::Ast->write($ast, foo.ast) or
die Template::Ast->error();

$ast = Template::Ast->merge([1,2,3], undef); # [1,2,3]
$ast = Template::Ast->merge(undef, [1,2,3]); # [1,2,3]
$ast = Template::Ast->merge(undef, undef); # undef

$ast = Template::Ast->merge({A=>1,B=>2}, [C]); # [C]
$ast = Template::Ast->merge([1,2,3], [5,6]); # [5,6]
$ast = Template::Ast->merge([{A=>1},2], 5); # 5

$ast = Template::Ast->merge({A=>1,B=>2}, {C=>3}); # {A=>1,B=>2,C=>3}
$ast = Template::Ast->merge({A=>1,B=>2}, {B=>3}); # {A=>1,B=>3}

# {A=>1,B=>2}
$ast = Template::Ast->merge({A=>1,B=>undef}, {A=>undef,B=>2});

Template::Ast->merge(
{A=>1,B=>{C=>1,D=>2}},
{B=>{C=>1,D=>3,E=>4}}
); # {A=>1,B=>{C=>1,D=>3,E=>4}}

Template::Ast->merge(
{A=>1,B=>{C=>[1,2]}},
{B=>{C=>[3,4]}}
); # {A=>1,B=>{C=>[3,4]}}

print Template::Ast->dump([$vars], [vars]);

ASTs are essential in the programming model based on Perl Template Toolkit. This module provides some easy interface to do the dirty work involved in AST handling. The term AST used here are referred to any Perl referece pointed to a complex data structure, such as a nested hash, a nested array, or such.

<<less
Download (0.020MB)
Added: 2007-06-29 License: Perl Artistic License Price:
847 downloads
CGI::FastTemplate 1.09

CGI::FastTemplate 1.09


CGI::FastTemplate is a Perl extension for managing templates, and performing variable interpolation. more>>
CGI::FastTemplate is a Perl extension for managing templates, and performing variable interpolation.

SYNOPSIS

use CGI::FastTemplate;

$tpl = new CGI::FastTemplate();
$tpl = new CGI::FastTemplate("/path/to/templates");

CGI::FastTemplate->set_root("/path/to/templates"); ## all instances will use this path
$tpl->set_root("/path/to/templates"); ## this instance will use this path

$tpl->define( main => "main.tpl",
row => "table_row.tpl",
all => "table_all.tpl",
);

$tpl->assign(TITLE => "I am the title.");

my %defaults = ( FONT => "",
EMAIL => jmoore@sober.com,
);
$tpl->assign(%defaults);

$tpl->parse(ROWS => ".row"); ## the . appends to ROWS
$tpl->parse(CONTENT => ["row", "all"]);
$tpl->parse(CONTENT => "main");

$tpl->print(); ## defaults to last parsed
$tpl->print("CONTENT"); ## same as print() as "CONTENT" was last parsed

$ref = $tpl->fetch("CONTENT");

<<less
Download (0.013MB)
Added: 2006-08-01 License: Perl Artistic License Price:
1179 downloads
Blitz JavaSpaces 1.29

Blitz JavaSpaces 1.29


Blitz is an open source JavaSpaces implementation designed to ease development of JavaSpaces technology. more>>
Blitz is an open source JavaSpaces implementation designed to ease development and deployment of JavaSpaces technology.
It is Jini 2.0 enabled, and uses established VM principles. It also implements smart indexing, tuneable persistence, and active/passive lease cleanup.
Blitz JavaSpaces project is designed with experimentation and expansion in mind.
Main features:
- Pure Java - no native libraries required
- No External Database Requirement - just configure and go
Enhancements:
- Downgraded to 2.1.30 - temporary workaround for issue in 3.0.12
<<less
Download (2.4MB)
Added: 2006-10-03 License: BSD License Price:
1125 downloads
BLITZ 0.1

BLITZ 0.1


Perl utility used in conjunction with the Majordomo mailing list manager to remove bounced addresses from mailing lists. more>>
Perl utility used in conjunction with the Majordomo mailing list manager to remove bounced addresses from mailing lists.

One mistery of the Internet is why it is that any drooling moron can instantly subscribe to every mailing list he hears word of, but cant seem to manage to unsubscribe without posting something to every user on the list, or personally involving the list manager, often soliciting this assistance with abusive and obscene E-mail.


Genuinely solving this problem will probably require an upgrade to the general intellectual calibre of Internet users, and it appears the trend is heading in the opposite direction. BLITZ merely reduces the workload on the poor overworked list manager by providing a cut-and-paste tool that allows blowing away these idiots without invoking a text editor on a series of mailing list files. BLITZ is intended to be used in conjunction with the Majordomo mailing list manager and, like Majordomo, is implemented in Perl. It assumes a Unix-like mail program, with the ability to receive input from a pipe; its probably not worth the effort to try to get BLITZ running on a non-Unix system.

Note that users are actually unsubscribed by sending messages to majordomo (or whatever list manager user name is configured) rather than directly modifying the mailing list files. This automatically protects against race conditions since the list manager contains locks to prevent multiple simultaneous updates to its list files.

As an extra gimmick, entering a user name of "?" lists the number of subscribers to each of the lists being managed.

Another continual irritant in the life of a list manager is bounced messages due to subscribers abandoning E-mail accounts without first unsubscribing. In many cases BLITZ is all you need to purge such addresses, but with the advent of "permanent name" services which forward mail to an arbitrary address, the name on your list may have nothing to do with the name you see on a bounced message. Properly-configured mail transfer agents will furnish you adequate header information to track down the original destination, regardless of forwarding, but "properly-configured" is a term one learns to use parsimoniously in a universe which admits of the existence of Microsoft.

PROBELIST is a Perl script which sends an administrative message to all subscribers of a given list, informing them that they are listed as subscribers and providing instructions how to unsubscribe, should they wish to. The subtext to this is that PROBELIST creates a log directory which enables, for all but the most extremely incompetent mail delivery systems, tracking back bounces to the original subscriber address on your list responsible for them, even in that horror of horrors where somebody subscribes a list address at another site to your list.

PROBELIST is an epiphany of system administration wonkery--youre going to have to read the code and be competent in Perl and things mailwise to use it and interpret the output. But if you find yourself deleting the same enigmatic mail bounces again and again, you may find the intellectual investment worth making.
<<less
Download (0.0006MB)
Added: 2006-06-21 License: Freeware Price:
1220 downloads
Template::Simple 0.01

Template::Simple 0.01


Template::Simple is a simple and fast template module. more>>
Template::Simple is a simple and fast template module.

SYNOPSIS

use Template::Simple;

my $tmpl = Template::Simple->new();

my $template = Jan 1, 2008,
author => Me, myself and I,
},
row => [
{
first => row 1 value 1,
second => row 1 value 2,
},
{
first => row 2 value 1,
second => row 2 value 2,
},
],
footer_data => {
modified => Aug 31, 2006,
},
} ;

my $rendered = $tmpl->render( $template, $data ) ;

Template::Simple has these goals:

Support most common template operations

It can recursively include other templates, replace tokens (scalars), recursively render nested chunks of text and render lists. By using simple idioms you can get conditional renderings.
Complete isolation of template from program code

This is very important as template design can be done by different people than the program logic. It is rare that one person is well skilled in both template design and also programming.
Very simple template markup (only 4 markups)

The only markups are INCLUDE, START, END and token. See MARKUP for more.

Easy to follow rendering rules

Rendering of templates and chunks is driven from a data tree. The type of the data element used in an rendering controls how the rendering happens. The data element can be a scalar or scalar reference or an array, hash or code reference.

Efficient template rendering

Rendering is very simple and uses Perls regular expressions efficiently. Because the markup is so simple less processing is needed than many other templaters. Precompiling templates is not supported yet but that optimization is on the TODO list.

Easy user extensions

User code can be called during an rendering so you can do custom renderings and plugins. Closures can be used so the code can have its own private data for use in rendering its template chunk.

<<less
Download (0.015MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1121 downloads
Dicop::Item::Template 3.04

Dicop::Item::Template 3.04


Dicop::Item::Template is an object defining Dicop::Item subclasses. more>>
Dicop::Item::Template is an object defining Dicop::Item subclasses.

SYNOPSIS

use Dicop::Request::Template

push @templates, Dicop::Item::Template->new (
class => Dicop::Item::Subclass,
fields => "name => { maxlen => 128, def => some name }",
);

<<less
Download (0.11MB)
Added: 2006-11-03 License: Perl Artistic License Price:
1086 downloads
MAT Template Library 0.1.7

MAT Template Library 0.1.7


MAT is a C++ mathematical template class library. more>>
MAT Template Library is a C++ mathematical template class library. The library contains classes and routines for working with:

matrices
vectors
finding roots of polynomials
solving equations
and more...
<<less
Download (0.068MB)
Added: 2006-09-28 License: MIT/X Consortium License Price:
1122 downloads
Piffle::Template 0.3.1

Piffle::Template 0.3.1


Piffle::Template is a Perlish templating language. more>>
Piffle::Template is a Perlish templating language.

SYNOPSIS

use Piffle::Template;
use Piffle::Template qw{template_to_perl expand_template};

# OO syntax, with output stored and returned:
print Piffle::Template->expand(source_file => foo/fish.xml,
include_path => [foo/inc,foo]);

# Immediate: OO syntax: output goes directly to STDOUT:
Piffle::Template->expand(source_file => foo/fish.xml,
output_file => *STDOUT);

# Procedural syntax, data from a string
$string =
< ?perl } ? >
< ?include std_disclaimer.txt? >
__END__
expand_template(source => $string,
output_file => *FILE);

This is a simple Perl-embedding syntax for template code which is geared towards allowing authors to validate their templates directly against schemas or DTDs. The embedded language is Perl itself, which allows great flexibility at the expense of having to be disciplined about the barrier between template code and module code.

In operation, the source template is transformed to an in-memory Perl script which is then run using Perls eval operator. Errors can be redirected to files or subroutines, and the output can be either caught in a variable or written to a file or open filehandle.

<<less
Download (0.009MB)
Added: 2006-09-13 License: Perl Artistic License Price:
1136 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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5