Main > Free Download Search >

Free approval workflow wss software for linux

approval workflow wss

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 153
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
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
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
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
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
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
Apache Graffito 1.0

Apache Graffito 1.0


Apache Graffito provides a framework used to build content-based applications. more>>
Apache Graffito provides a framework used to build content-based applications.

Graffito is a framework used to build content-based applications like CMSs, document management systems, forums, blogs, etc. It offers a complete platform for creating, managing, and publishing content in your portal or in any other kind of Java application.

It integrates content repositories, workflow, collaboration, and personalization via existing open source projects and standards like WEBDAV.

<<less
Download (MB)
Added: 2007-02-13 License: The Apache License Price:
983 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
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
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
PHP TopSites 2.1

PHP TopSites 2.1


PHP TopSites provides a PHP/MySQL-based customizable TopList script. more>>
PHP TopSites provides a PHP/MySQL-based customizable TopList script.
PHP TopSites is a PHP/MySQL-based customizable TopList script. Main features include: Easy configuration config file; MySQL database backend; unlimited categories, Site rating on incoming votes; Special Rating from Webmaster; anti-cheating gateway; Random link; Lost password function; Webmaster Site-approval; Edit site; ProcessingTime display; Cookies Anti-Cheating; Site Reviews; Linux Cron Free; Frame Protection and much more.
Main features:
- Unlimited Number of Sites.
- Unlimited Number of Categories.
- Unlimited Number of Reviews for Each Site.
- Administrator Control Panel.
- Rating for Each Site.
- Stars Rating for Each Site.
<<less
Download (0.072MB)
Added: 2007-04-26 License: Freeware Price:
912 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
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
phpBazar 2.1.1

phpBazar 2.1.1


phpBazar provides a PHP/mySQL Classified Ads & Matchmaking product. more>>
phpBazar provides a PHP/mySQL Classified Ads & Matchmaking product.
Main features:
- WebSetup Install/Update-Tool
- Easy Config (config.php-File, style.css-File)
- Multi Languages, easy customizeable with Variables & Templates (incl.: English, German, French)
- Online Language Switch (unlimited Languages supported)
- Automatic Dynamic PageBreaks
- User (Member) Registration (incl. E-Mail confimation)
- User (Member) Authentification (Cookie based)
- User (Member) Data-Administration
- Lost Password Function
- Unlimited Members
- Unlimited Categories
- Unlimited SubCategories
- Special Feature Field
- 20 Feature Fields (Text-, Select-, Checkbox-Field)
- 10 Feature Icons
- Category Structured Display
- Attachment Upload/Display Function (max. 5 per ad)
- Picture Upload/Display Function (max. 5 per ad, .gif .jpg .png supported)
- Pictures Stored File-based or DB-based
- Picture Preview and Thumbnail View (GD-Lib & ImangeMagick supported)Webmail (Inbox/Sent/Trash)
- Send Ad-Reply (E-Mail) Function (incl. CarbonCopy & Attachment!)
- Send Fried Ad-URL-Reffer (E-Mail)
- Send ICQ-Message
- Goto Ad-Member URL
- Ad Rating
- Ad Statistic
- Ad Print
- Search Ads (simple & advanced)
- My Ads (edit & delete)
- My Favorits
- AutoNotify-Function
- Notify for timeouted Ads
- Ad-of-the-Day (or Week, Month)
- FloodProtect
- Useronline and Details
- Memberlisting & Search, Member-Details, Member-Ads
- IP-Logging & Banning
- User (Member) Banning
- Long-Word-Filter
- Dirty-Word-Filter
- Processing Time Display
- GZip output compression - 100% speed increase on PHP4.x.x
- Smilies Database & Conversation & dyn. Help
- Event Logging (Registration, Login, Logout, New Ad, Changed Ad, ...)
- Webmaster (E-Mail) Notify (Add User, Add Ad, Reply Ad, ...)
- Web-Admin-Panel (Statistics, Members, Categories, (HTML-)Newsletter,...)
- Admin Approval for new Ads
- Admin Database Backup
- Admin Database Cleanup
- Much More ...
- BONUS: Guestbook integrated (phpBook)
- BONUS: Voting integrated (phpVote)
- BONUS: Forum-Interface integrated (e.g. for FREE phpBB Forum)
- BONUS: Chat-Interface integrated (e.g. for phpBazarChat)
<<less
Download (MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
937 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5