WareSeeker Search Software

template


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

ABi Template


script PHP Free
View Detail
Download ABi TemplateDownload ABi Template
ABi Template is very simple easy for use template engine written in PHP. It supports loops, and is absolutelly free.
2

Template Class


script PHP Free
View Detail
Download Template ClassDownload Template Class
This Template Class allows you to run a SQL query over a user-defined template. The result is a HTML-page filled with the SQL-result set.
3

web.template


script PHP Free
View Detail
Download web.templateDownload web.template
web.template is a template framework for PHP 5 that uses an XML-based language. It allows you to create classes with getters that are made accessible to the framework with an addVarClass method. It also supports modifiers, tags, and resource drivers for template or cache storage.
4

Calendar Template


windows Business Finance->Document Processing FREE
View Detail
Download Calendar TemplateDownload Calendar Template
28 KB
This template offers you an easy customizable calendar for Calc.

Calendar Template is provides you with a customizable calendar for Calc. Just Load, print and go!

Requirements:

· OpenOffice.org


5

Template Manager


script PHP Free
View Detail
Download Template ManagerDownload Template Manager
Finally, a one-size-fits-all solution for the management of free web template sites. This program helps you take control with ease of your free web template site, such as FreeLayouts.com or FreeWebTemplates.com. Features include: » Let USERS UPLOAD TEMPLATES to your site with a simple online form and a click of a button. Or, you can upload them manually. » AUTO-UPDATING PAGES let you relax. No more need for tedious page updates! Template Manager automatically updates your pages and download counts for each template. » APPROVE TEMPLATES submitted by users or manually uploaded, to allow an extra layer of security and to screen the content before it is published to the web. » DISPLAY recently added and most downloaded templates on your site. And dont worry about updating it! Template Manager is auto-updating, meaning when new templates are added, pages are automatically adjusted accordingly. » 100% CUSTOMIZABLE! Simply place on line of code on your page, generated by Template Manager.
6

Template Site


script PHP $25.00
View Detail
Download Template SiteDownload Template Site
Looking to set up your own Template site? Our unique Template Site solution lets Designers add templates to sell via your site. Integrated with Paypal to handle purchases and paying your designers, this is the script to use. Can also be used for other digital purchases, easily to customize.
7

ASP Template


script ASP->Content Management Free
View Detail
Download ASP TemplateDownload ASP Template
ASP Template is a library that enables software engineers to write ASP code without embedding it into HTML pages. With ASP Template you write the code and reference special tags that are inside your HTML templates. All HTML templates can be directly designed by web designers and every place where dynamic content should go can be referenced by putting a simple text tag. If you already worked with PHPLib under PHP you know what I mean.
8

Template Reseller Lite


script PHP Free
View Detail
Download Template Reseller LiteDownload Template Reseller Lite
Download Template Reseller Lite and offer your visitors thousands of complete website templates, flash templates, corporate logos, PHP-Nuke Themes, and more! Installs in about 5 minutes and is a 100% complete website! No set-up...just upload to your server and it starts working! Content is automatically updated daily through the TemplateMonster.com affiliate program.
9

Template Web


script CGI Perl Free
View Detail
Download Template WebDownload Template Web
Do you have a web page, and sometimes you get bored with the current look and want to completely change it around but dont want to change every single HTML file? Template Web is a script that allows you to use the concept of a template for an entire web site, and you can build your site around it.
10

EZ Template


script PHP Free
View Detail
Download EZ TemplateDownload EZ Template
EZ Template is probably the easiest to use PHP templating system available. Rather than having to learn convoluted template languages you simply embed PHP style variables into your HTML pages (such as $output->title). It is ideal for sites built by one or two people. Tu use simply download and run. Examin the example and youll understand it in no time :)
11

Fast Template


script PHP Free Additional Info: Artistic License
View Detail
Download Fast TemplateDownload Fast Template
We find Fast Template very usefull in our projects, even if now is on the market other template systems, like Smarty. Most PHP projects today use Smarty for this, but we wont. Smarty puts too much logic into the template itself. To avoid confusing or upsetting the web designer, the core template must look as much like a regular HTML page as possible. That means no strange looking iteration code and such. Instead, well use FastTemplate. FastTemplate may not be as advanced and featureful as Smarty, but its syntax is definitely better suited for this problem. But because it was not developed since 2002, we tried to add some new functionalities to it and make it reusable. Templates are very useful for CGI programming, because adding HTML to your PHP code clutters your code and forces you to do any HTML modifications. By putting all of your HTML in seperate template files, you can let a graphic or interface designer change the look of your application without having to bug you, or let
12

Template 1.0


windows Utilities->Text Search and Replace Tools Free
View Detail
Download Template 1.0Download Template 1.0
13K
A tiny program to help automate the task of filling outprogram descriptions for software distribution sites. When supplied with a model table or form, Template automates the insertion of the program name, authors name, download URL, program size, authors homepage, and descriptive blurb.Requires the VB 6.0 Runtimes.

13

TEMPLATE 98.233


windows Software Development->Misc Programming Tools Free
View Detail
Download TEMPLATE 98.233Download TEMPLATE 98.233
43.5 KB
This rexx utility accepts user input and generates one or more output files from a template.

You specify (without coding) what questions will be asked and what validations should occur.

Some basic validations are built in and rexx code can be called for more complex requirements.

An example is included in the documentation which shows how a CM/2 response file is tailored after a few simple questions have been answered.

There are some limitations under regina, but they arent major.

14

Template::Plugins 2.19


linux Programming->Libraries Free
View Detail
Download Template::Plugins 2.19Download Template::Plugins 2.19
0.76 MB
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.


15

Hospitalist Followup Template 2


windows Home Education->Health Nutrition $150
View Detail
Download Hospitalist Followup Template 2Download Hospitalist Followup Template 2
222KB

MedicalTemplates has developed a 1 page hospitalist follow up visit template. This template is suitable for hospitalists, internal medicine physicians, family practice physicians, and other health care providers working in hospitals.
16

Template::Ast 0.02


linux Programming->Libraries Free
View Detail
Download Template::Ast 0.02Download Template::Ast 0.02
0.020 MB
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.


17

HCKit::Template 0.02


linux Programming->Libraries Free
View Detail
Download HCKit::Template 0.02Download HCKit::Template 0.02
0.011 MB
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.


18

Admin Nether-Template


script CGI Perl Free
View Detail
Download Admin Nether-TemplateDownload Admin Nether-Template
Nether-Template is a Web Based Site Builder. It can take one template, and build all your pages from this one Template. Features include: Easy Setup, builds all files from Nethersofts Server, Build your whole web site from 1 Template, Add, Delete, and Edit pages from an easy control pannel, Have serveral Templates, so you can build different pages from different Templates. You must know how to program HTML though, Easy update program so you can update the script from your web browser, You can make a directory in the Build Directory, Easily configure the program though the web browser, Backup your Templates and Pages, and Restore your Templates and Pages.
19

STS Template Engine


mac Tools->Developer Tools Free
View Detail
Download STS Template EngineDownload STS Template Engine
170 KB
STS Template Engine was designed to be universally applicable to any kind of template expansion requirement. It can be used to generate configuration files for other server applications such as Apache, Sendmail, Postfix or KAME/Racoon, the IPsec/VPN stack which is built into MacOS X. The template engine could further be used for wordprocessing and email applications or for HTML templating.

The template engine is implemented as a category of NSString and it provides four additional class methods which return NSString objects by expanding templates. Two of the provided methods create NSString objects from templates passed as NSString objects and the other two methods create NSString objects from template files passed as POSIX pathnames.

Template files may be in any encoding supported by the installed system software. Start tag, end tag and placeholders along with their replacement values are user definable.


20

Ewisoft Template Builder


windows Web Development->Web Design Tools Free
View Detail
Download Ewisoft Template BuilderDownload Ewisoft Template Builder
2.5 MB
Web templates bring you publicity and customs, but how to stop users from removing your logos and hyperlinks?

With Ewisoft Template Builder you can stop users from modifying your web template and bring you publicity and customs

Ewisoft Template Builder converts your HTML file to an unmodified one. It can be used with Ewisoft Web Builder, a Free WYSIWYG Html Editor.

It supports images and style files also. If you are designing web for custom, you can use Ewisoft Template Builder to make the web site custom-maintainable easily.

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket