Main > Free Download Search >

Free approval workflow template software for linux

approval workflow template

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1197
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
Pod::Template 0.02

Pod::Template 0.02


Pod::Template is a Perl module for building pod documentation from templates. more>>
Pod::Template is a Perl module for building pod documentation from templates.

SYNOPSIS

### As a module ###
use Pod::Template;
my $parser = new Pod::Template;
$parser->parse( template => documentation.ptmpl );

print $parser->as_string


### As a script ###
$ podtmpl -I dir1 -I dir2 documentation.ptmpl


### A simple module prepared to use Pod::Template ###
package My::Module;

=Template print_me
=head2 print_me( $string )

Prints out its argument.

=cut

sub print_me { print shift; return 1 }


### A simple pod file named Extra/Additional.pod ###
=pod
=Template return_vals

This subroutine returns 1 for success and undef for failure.

=cut


### A simple Pod::Template template ###
=Include My::Module
=Include Extra/Additional.pod as Extra

=pod

=head1 SYNOPSIS

use My::Module

My::Module::print_me(some text);

=head2 Functions

=Insert My::Module->print_me

=Insert Extra->return_vals

=cut

Writing documentation on a project maintained by several people which spans more than one module is a tricky matter. There are many things to consider:

Location
Should pod be inline (above every function), at the bottom of the module, or in a distinct file? The first is easier for the developers, but the latter two are better for the pod maintainers.

Order
What order should the documentation be in? Does it belong in the order in which the functions are written, or ordered by another principle, such as frequency of use or function type? Again, the first option is better for the developers, while the second two are better for the user.

References
How should a function in another file be mentioned? Should the documentation simply say see Other::Module, or should it include the relevant section? Duplication means that the documentation is more likely to be outdated, but its bad for a user to have to read numerous documents to simply find out what an inherited method does.

Headers & Footers
What should be done with standard headers and footers? Should they be pasted in to every file, or can the main file be assumed to cover the entire project?

Pod::Template offers a solution to these problems: documentation is built up from templates.

<<less
Download (0.008MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1128 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
PerlPoint::Template::TT2 0.02

PerlPoint::Template::TT2 0.02


PerlPoint::Template::TT2 is a beta of a PerlPoint template processor for Template Toolkit 2 layouts. more>>
PerlPoint::Template::TT2 is a beta of a PerlPoint template processor for Template Toolkit 2 layouts.

METHODS

new()

Parameters:

class

The class name.

Returns: the new object.

Example:

# start page
$result.="nnnn";

# begin header
$result.="nnnn";

# header contents: this was added to the traditional list of template files
$result.=$me->_processTemplate(join(/, $tdir, $options->{$toc ? header_toc_template : header_template}), $toc ? 1 : $params{page});

# complete header
$result.="nnnn";

# begin body
$result.="nnnn";

# now the body contents: start with top part
$result.=$me->_processTemplate(join(/, $tdir, $options->{$toc ? top_toc_template : top_template}), $toc ? 1 : $params{page});

# add navigation, if necessary
$result.=$me->_processTemplate(join(/, $tdir, $options->{$toc ? nav_toc_template : nav_template}), $toc ? 1 : $params{page})
if exists $options->{$toc ? nav_toc_template : nav_template};

# include data (for TOCs, make sure not to add a standard TOC if the tree applet is used
# - this should be more generic in case users use other methods ...)
$result.=$toc ? $result=~/
<<less
Download (0.006MB)
Added: 2007-02-15 License: Perl Artistic License Price:
981 downloads
Thread Safe Template Library 1.1.0

Thread Safe Template Library 1.1.0


Thread Safe Template Library (TSTL) is a C++ library that provides thread-safe storage data structures without global locking. more>>
Thread Safe Template Library (TSTL) is a C++ library that provides thread-safe storage data structures without global locking. The library includes classes for maps based on a non-binary extensible hashing tree for very fast access, a pipe, a timercache, and a fast writer multiple reader guard without global locking (which uses the interlocked Intel instruction set).
Enhancements:
- Porting for x64 AMD, Intel, and MSVC 8.0.
- A new cache template with policy by element number.
- Access to elements has been implemented via a map template.
- The adding policy in the timer cache template has been changed.
- The string hash routine has been optimized.
- The timings in the nbmap.h template have changed.
<<less
Download (0.034MB)
Added: 2007-05-03 License: Freeware Price:
908 downloads
Workflow::Factory 0.28

Workflow::Factory 0.28


Workflow::Factory is a Perl module that generates new workflow and supporting objects. more>>
Workflow::Factory is a Perl module that generates new workflow and supporting objects.

SYNOPSIS

# Import the singleton for easy access
use Workflow::Factory qw( FACTORY );

# Add XML configurations to the factory
FACTORY->add_config_from_file( workflow => workflow.xml,
action => [ myactions.xml, otheractions.xml ],
validator => [ validator.xml, myvalidators.xml ],
condition => condition.xml,
persister => persister.xml );

# Create a new workflow of type MyWorkflow
my $wf = FACTORY->create_workflow( MyWorkflow );

# Fetch an existing workflow with ID 25
my $wf = FACTORY->fetch_workflow( MyWorkflow, 25 );

Public

The Workflow Factory is your primary interface to the workflow system. You give it the configuration files and/or data structures for the Workflow, Workflow::Action, Workflow::Condition, Workflow::Persister, and Workflow::Validator objects and then you ask it for new and existing Workflow objects.

Internal

Developers using the workflow system should be familiar with how the factory processes configurations and how it makes the various components of the system are instantiated and stored in the factory.

<<less
Download (0.10MB)
Added: 2007-07-10 License: Perl Artistic License Price:
839 downloads
Expose PHP template engine 1.1.2

Expose PHP template engine 1.1.2


Expose is a template engine written in PHP. more>>
Expose PHP template engine is a template engine written in PHP. A template is a special kind of document that describes how a page will look like. How does this differ from writing webpages/applications using ordinary PHP files?
A template does not contain code to fetch data from a database or deal with forms. It only contains code how this data is transformed to HTML.
Some reasons to use the Expose template engine:
- Application logic and presentation is separated. It makes your code much more beautiful and manageable.
- Templates are fed only the parameters you specifiy and support only a subset of native PHP functions. This means safer code and your designers will be happier, because they dont have to inject their HTML in application code.
- Expose supports server- and client-sided caching. This will considerably cut down on server/database load and reduces bandwidth.
- Expose has built-in locale support. Translators can work with separate files and never need to touch application files or templates. Writing applications in multiple languages has become easier than ever before!
- Plugins simplify common tasks like inserting a select box or date picker in your page.
- The template script language is based on PHP, which means you dont have to learn a new language.
Enhancements:
- The Boolean "and" (&&) operator is now properly recognized.
- Several array PHP functions are now registered at default.
- The first newline after the close tag (?>) is now stripped like expected.
- The built-in display() template function now correctly passes additional parameters to the included template.
<<less
Download (0.020MB)
Added: 2006-04-20 License: GPL (GNU General Public License) Price:
1288 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
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
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
VirtualHost Template Configurator 0.1 Beta

VirtualHost Template Configurator 0.1 Beta


VirtualHost Template Configurator was developed for replacing the obsolete Cobolts and Cobolts WebInterface. more>>
VirtualHost Template Configurator project was developed for replacing the obsolete Cobolts and Cobolts WebInterface for Site provisioning.

You might think, ah another tool, but others are better and can deal with complex Setups.

Thats right and thats not the purpose of VHT. Its for lazy Site Administrators who dont want to copy configs manualy, and where dependencies are as little as possible.

VHT is based on python2.4 (ann special release for EL4 based on python2.3 Distributions) and should run out of the box without installing 300 depending Packages before.

<<less
Download (0.023MB)
Added: 2006-01-25 License: GPL (GNU General Public License) Price:
1369 downloads
MfGames.Template 1.1.0

MfGames.Template 1.1.0


The MfGames.Template library is a C# native library for creating template libaries. more>>
The MfGames.Template library is a C# native library for creating template libaries.

MfGames.Template was inspired by NVelocity, but was designed from the ground up to use the CIL internals, such as System.CodeDom and internal compliation to handle the template language.

Because of this, it supports C# code as the template "language". In addition, compiled templates are actually compiled down into bytecode, using the built-in compiler.

<<less
Download (0.017MB)
Added: 2006-04-07 License: LGPL (GNU Lesser General Public License) Price:
1295 downloads
web.template 0.9.1 RC2

web.template 0.9.1 RC2


web.template is a template framework for PHP 5 that uses an XML-based language. more>>
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.
web.template also supports modifiers, tags, and resource drivers for template or cache storage.
Class Constant Summary
VAR_CLASS_OBJECT = 1
VAR_CLASS_PATH = 2
Variable Summary
array $arrModifiers
array $arrTemplatesResource
array $arrVarClasses
array $arrVariables
boolean $blnCaching
boolean $blnNewLineInCTemplates
IWTResource $objCacheResource
ITemplateCompiler $objCompiler
string $strCacheDir
string $strCompileDir
string $strCustomTagsDir
string $strDefaultResourceProtocol
string $strFilePartSeparator
string $strIDSeparator
string $strLanguage
string $strModifiersDir
string $strTemplateDir
Enhancements:
- This release fixes some small bugs in the fetch() method and in parsing HTML tag parameters.
<<less
Download (0.11MB)
Added: 2006-07-25 License: LGPL (GNU Lesser General Public License) Price:
1188 downloads
Class::MakeMethods::Template 1.01

Class::MakeMethods::Template 1.01


Class::MakeMethods::Template package contains extensible code templates. more>>
Class::MakeMethods::Template package contains extensible code templates.

SYNOPSIS

package MyObject;
use Class::MakeMethods::Template::Hash (
new => new,
string => foo,
number => bar,
);

my $obj = MyObject->new( foo => "Foozle", bar => 23 );
print $obj->foo();
$obj->bar(42);

MOTIVATION

If you compare the source code of some of the closure-generating methods provided by other subclasses of Class::MakeMethods, such as the hash accessors provided by the various Standard::* subclasses, you will notice a fair amount of duplication. This module provides a way of assembling common pieces of code to facilitate support the maintenance of much larger libraries of generated methods.

This module extends the Class::MakeMethods framework by providing an abstract superclass for extensible code-templating method generators.
Common types of methods are generalized into template definitions. For example, Template::Generics new provides a template for methods that create object instances, while Template::Generics scalar is a template for methods that allow you to get and set individual scalar values.

Thse definitions are then re-used and modified by various template subclasses. For example, the Template::Hash subclass supports blessed-hash objects, while the Template::Global subclass supports shared data; each of them includes an appropriate version of the scalar accessor template for those object types.

Each template defines one or more behaviors, individual methods which can be installed in a calling package, and interfaces, which select from those behaviours and indicate the names to install the methods under.

Each individual meta-method defined by a calling package requires a method name, and may optionally include other key-value parameters, which can control the operation of some meta-methods.

<<less
Download (0.16MB)
Added: 2007-06-18 License: Perl Artistic License Price:
859 downloads
Mapasuta openArchitectureWare WorkFlow Runner 1.1

Mapasuta openArchitectureWare WorkFlow Runner 1.1


Mapasuta openArchitectureWare WorkFlow Runner plugin allows to start a workflow file during a Maven2 build run. more>>
Mapasuta openArchitectureWare WorkFlow Runner plugin allows to start a workflow file during a Maven2 build run.

There are only two goals, one for running a workflow file during normal build (run-workflow), and one for test builds (run-test-workflow).

Usage:

Generate sources

The common way to use the plugin is to add it to your pom.xml:

< build >
[...]
< plugins >
[...]
< plugin >
< groupId>net.sf.mapasuta.build.maven.plugins< /groupId>
< artifactId>maven-oaw-plugin< /artifactId>
< configuration>
< workflowFile>src/main/workflow/workflow.oaw< /workflowFile>
< /configuration>
< executions>
< execution>
< goals>< goal>run-workflow < /goals>
< /execution>
< /executions>
< /plugin>
[...]
< /plugins>
[...]
< /build>

The plugin runs in the phase generate-sources and generates the sources into the default output folder target/generated-sources/maven-oaw-plugin.

The workflow parameter outputDir is set to the output folder and can be used in the workflow file.

It adds the output folder to the compilers source folder list, so the generated sources will be compiled, if you run the phase compile.

Generate test sources

To generate test sources, use the following simple configuration:

< build >
[...]
< plugins >
[...]
< plugin>
< groupId>mapasuta.build.maven.plugins< /groupId>
< artifactId>maven-oaw-plugin< /artifactId>
< configuration>
< workflowFile>src/main/workflow/workflow.oaw< /workflowFile>
< /configuration>
< executions>
< execution>
< goals>< goal>run-test-workflow< /goal>< /goals>
< /execution>
< /executions>
< /plugin>
[...]
< /plugins>
[...]
< /build>

The plugin runs in the phase generate-test-sources and generates the sources into the default output folder target/generated-test-sources/maven-oaw-plugin.
<<less
Download (0.017MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1086 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5