Main > Free Download Search >

Free approval workflow software software for linux

approval workflow software

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 201
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
CMFPlacefulWorkflow 1.0.2

CMFPlacefulWorkflow 1.0.2


CMFPlacefulWorkflow project is a CMF/Plone product for locally changing the workflow of content types. more>>
CMFPlacefulWorkflow project is a CMF/Plone product for locally changing the workflow of content types.

CMFPlacefulWorkflow: A Plone product that allows you to define workflow policies that define content type to workflow mappings that can be applied in any sub-folder of your Plone site.

When you access the root of your site, you will see a new action in the workflow state drop-down menu called "policy". Click on the "policy" link.

The next page will let you add a policy to your folder by clicking on the "Add Workflow policy" link. Click on "Add Workflow policy".

Now you have a workflow policy in your site, and you can set the workflow policies for this folder and below.

We didnt add workflow policies yet, so you dont have the choice between different workflow policies, but the default workflow policy will be taken both for the folder and below.

<<less
Download (0.046MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
DwWorkflow 0.91.1

DwWorkflow 0.91.1


DwWorkflow is a datawarehouse process workflow server and generator of datawarehouse mappings. more>>
DwWorkflow is a datawarehouse process workflow server and generator of datawarehouse mappings.
It allows the user to define dependencies between tables or files and processes and it runs processes in parallel according to these metadata.
DwWorkflow can run with or without an SQL database server. A process can be any program, not just a database statement.
Enhancements:
- This release includes a graphical plugin for the Eclipse platform for the dwworkflow server, and also includes needed changes in the server for the plugin to work.
<<less
Download (3.9MB)
Added: 2006-08-16 License: BSD License Price:
1165 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
DCWorkflow Dump 1.2

DCWorkflow Dump 1.2


DCWorkflow Dump provides a simple tool to dump a web-generated workflow to Python code for use in Products. more>>
DCWorkflow Dump provides a simple tool to dump a web-generated workflow to Python code for use in Products.
Dumps DCWorkflow specifications into a python script.
Installation
.Untar/copy it into your Zopes Products dir
.Restart Zope
.You now have a dump tab in the workflow management screen
Usage
.Hit the dump tab in your workflow management screen
.The resulting code can be used to programatically define a DCWorkflow
Enhancements:
- Bugfix release with better support for transitions python scripts and new support for transitions external methods.
<<less
Download (0.005MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
978 downloads
Bio::Tools::Run::PiseWorkflow 1.4

Bio::Tools::Run::PiseWorkflow 1.4


Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. more>>
Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. A workflow is defined by a set of methods which all instanciate the class PiseApplication.

SYNOPSIS

# First, create a Bio::Tools::Run::AnalysisFactory::Pise object:
my $factory = new Bio::Tools::Run::AnalysisFactory::Pise();
# Then create the application objects (Pise::Run::Tools::PiseApplication):
my $clustalw = $factory->program(clustalw);
$clustalw->infile($my_alignment_file);
my $protpars = $factory->program(protpars);

# You can specify different servers for different applications :
my $protdist = $factory->program(protpars
-remote => http://kun.homelinux.com/cgi-bin/Pise/5.a//protpars.pl,
-email => your_email);

# Create a new workflow object :
my $workflow = Bio::Tools::Run::PiseWorkflow->new();

# Define the workflows methods using the application objects:
# the application method $protpars will receive the output of
# type readseq_ok_alig from the application method $clustalw.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protpars,
-pipetype => readseq_ok_alig);

# The application method $clustalw will be piped to a second
# application method ($protdist) using the output of type readseq_ok_alig.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protdist,
-pipetype => readseq_ok_alig);

# The application method $protpars will be piped to the application
# method $consense using the output of type phylip_tree.
my $consense = $factory->program(consense);
$workflow->addpipe(-method => $protpars,
-tomethod => $consense,
-pipetype => phylip_tree);

# Run the workflow.
$workflow->run();

<<less
Download (0.81MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
Jawflow 1.0.0

Jawflow 1.0.0


JawFlow is a Workflow Engine partially conformal to WfMC directives. more>>
JawFlow is a Workflow Engine partially conformal to WfMC (www.wfmc.org) directives, completely written in Java using JMX technology. It understands XML Process Definition Language (XPDL) and can be customized using activities written in Java or in any scripting language supported by BSF.

JawFlow is composed by many interacting modules. Many of these modules are JMX Mbeans and so they need a JMX Agent to run. To develop, test and run JawFlow we used Jboss AS but since there are no strict dependencies in the code related to Jboss it should be installed in any application server supporting the JMX technology.
<<less
Download (12.5MB)
Added: 2006-10-19 License: LGPL (GNU Lesser General Public License) Price:
1100 downloads
Photovault for Linux 0.5.0

Photovault for Linux 0.5.0


Photovault is a free photo workflow and archiving application on linux. more>> Photovault is a photo workflow and archiving application intended for photographers. With it you can easily keep even a large photo archive in good order, find the images you need and do the normal image processing tasks in all phases of your workflow, including raw file conversion, color corrections and image cropping and rotation.
Photovault is free software licensed under GNU General Public License (GPL).
Photovault Features
Easily search for your photos based on shooting date or metadata
Annotate your images with additional comments, information about shooting place, technical details or other metadata
Add your photos into unlimited number of folders without using additional disk space
Crop and rotate your photos freely - and always preserve the original image in case you want to revert the operation later
Support for most common image file formats, including raw image formats of most camera manufacturers
Flexible adjustment of conversion from raw image files to normal formats, including color balance, hue and contrast settings
Adjust photo color balance and saturation
Written mostly in Java, GPL licensed, runs on Windows, Linux and MacOS X
<<less
Download (7.83MB)
Added: 2009-04-05 License: Freeware Price: Free
202 downloads
vPrise Workgroup 1.0b

vPrise Workgroup 1.0b


vPrise Workgroup is a distributed environment that helps bridging development teams. more>>
vPrise Workgroup application is a distributed environment that helps bridging development teams. vPrise Workgroup, allows users to communicate with one another on a project basis over time sheets, expense reports, issues, file exchange, tasks, schedules and calendars.
The tool can be divided into three distinct groups, where a user might be limited to the confines of a single group or utilize all features in all groups. The three feature groups within vPrise Workgroup are:
- Employee data submissions - allows distributed employees to submit hour reports and expense sheets.
- Management view - allows managers within an approval chain to approve/reject employee submitted time sheets. Furthermore it allows the manager to sum up this information using reports.
- Collaboration tool set - allows employees of the company to communicate with other team members and customer teams. These features include file trading, a distributed calendar & issue tracking.
<<less
Download (MB)
Added: 2006-05-11 License: Freeware Price:
1262 downloads
Sequoia Open Source ERP 0.8.1

Sequoia Open Source ERP 0.8.1


Sequoia ERP is a true enterprise-class open source ERP solution. more>>
Sequoia ERP is a true enterprise-class open source ERP solution. It combines the advanced features and scalability required for enterprise software with the flexibility and low cost of ownership that only open source can deliver.
Main features:
- Full Suite of integrated applications that deliver a 360-degree view of your business.
- Compatible all major open source and commercial relational databases, including MySQL, PostgreSQL, Oracle, Sybase, and Microsoft SQL Server.
- Runs on Linux, Unix, and Windows operating platforms.
- Service-Oriented Architecture for easy interoperability with external or legacy applications.
- Remote and local synchronization for scalability and high availability.
- Workflow for adapting to unique business processes.
- Available under the business-friendly MIT Public License.
<<less
Download (60MB)
Added: 2005-10-25 License: MIT/X Consortium License Price:
2105 downloads
Seagull PHP Application Framework 0.6.2

Seagull PHP Application Framework 0.6.2


Seagull is an OO PHP framework with the core modules licensed under BSD. more>>
Seagull is an OO PHP framework with the core modules licensed under BSD, and has the following design goals:
- independence of data, logic & presentation layers
- extensible component architecture
- reduction of repetitive programming tasks
- simplifying data access
- comprehensive error handling
- action request workflow
- simplified form handling
- component reuse
- authentication management
- integration with PEAR libraries
- PHP coding standards
- platform/PHP version/browser independence
- self-generating documentation
- quality end user docs
There are some default modules that come with the framework, these handle tasks related to:
- user/group management
- content management
- document management
- category management
- messaging
- navigation
<<less
Download (3.7MB)
Added: 2007-05-05 License: BSD License Price:
903 downloads
BFlow 1.1 Beta

BFlow 1.1 Beta


BFlow is a Web-based business workflow management and help desk tool. more>>
BFlow is a Web-based business workflow management and help desk tool. It features email and SMS notifications of tasks organized into arbitrarily complex business processes.
Main features:
- b-Flow Workflow Tool -- Offered under GPL v2, as Open Source product.
- b-Flow Workflow Tool Pro -- Commercial license only, includes additional Professional Reporting module, LDAP integration and paid support.
- Based on LAMP (Linux, Apache, MySQL, PHP), the software offers a Web-based interface with secure role-based access control and authentication. It has been developed over the past six years, and is now being offered for free use under the GNU Public License, version 2. Lanifex is pleased to offer commercial support and maintenance contracts for this software to interested companies, as well as custom development and adaptation services for organizations who wish to integrate or modify the software to meet specific needs.
- Some of the powerful features:
- Integrated graphical workflow design tool
- Notification messages via Email and SMS
- Escalation chains to trigger additional actions
- Form designer with flexible data storage
- Forms attached to requests, with drop-downs and form trees
- Export and import via XML of forms and workflow templates
- User and Group administration, with LDAP integration available
<<less
Download (0.85MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
808 downloads
DryDock r6

DryDock r6


DryDock is a Web publishing application that implements a development/production Web site pipeline. more>>
DryDock is a Web publishing application that implements a development/production Web site pipeline. It codifies an approval process that forces users to approve all Web site changes before they go into production.

Sometimes, on a web server, system administrators are often ill-equipped to determine who created the document, why its being served, how long its been publicly viewable, and how its changed over time.

To police our own website, we create DryDock. DryDock is a web publishing application that governs the replication of content from a developmental, or staging web tree to a production web tree (ideally placed on a second server). DryDock codifies a formal approval process that forces management to approve all web site changes before those changes are put into production. Users never interact directly with the production web tree; DryDock updates it on their behalf.
<<less
Download (5.1MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1219 downloads
Kronophobia 1.3-r5

Kronophobia 1.3-r5


Kronophobia project is a Web-based school calendaring system. more>>
Kronophobia project is a Web-based school calendaring system.
Kronophobia is a complete event-based school calendaring system that supports recurrence, transportation assignments, alerts, parent/public registration, custom reports, event tracking, and e-mail notification.
Main features:
- Event management
- Holiday management
- No School days or Break management
- Event Recurrence and approval system
- Opponent/Schools database for meets,sports games,etc.
- external event Contacts
- organizational system for Campuses, Departments, Activities and Groups
- Transportation integration; including buses, drivers and event assignments
- Facility management; both local and remote
- Equipment organization and checkouts for events
- Custom reporting system with PDF print layouts straight from the web
- User and Group management with complete security customization
- NT, ADS, NIS, etc connectivity through Apache modules for authentication
- User Preference system
- Included Help documentation
- Event tracking and email follow-ups when event changes
- Parent/Visitor sign up system for event tracking
- Record ghosting for obsolete contacts/drivers/etc
- Advanced Filter system for viewing events
- Search capability
- Event alarms to remind participants to show up for events
- Much more...
<<less
Download (0.87MB)
Added: 2006-10-07 License: GPL (GNU General Public License) Price:
1112 downloads
XWork 1.0.4

XWork 1.0.4


XWork is a generic command pattern implementation and inversion of control (IoC) container. more>>
XWork is a generic command pattern implementation and inversion of control (IoC) container. XWork is designed to be small, fast, and fit specifically for workflow-related usages, such as Web application frameworks and workflow engines. XWork provides the foundation for WebWork, a Java-based Web framework.
Main features:
- Interceptor-based framework, allowing for tons of extensions to be built
- Inversion of Control (IoC) framework
- Can be used as the basis for a web application framework all the way to a workflow engine
Enhancements:
- This release primarily involves a few internal tweaks and API convenience methods.
- It is backwards compatible with 1.0.3 and should have no impact when upgrading.
<<less
Download (4.7MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1453 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5