Main > Free Download Search >

Free approval workflow in sharepoint software for linux

approval workflow in sharepoint

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 189
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
OpenSharePoint 0.4.20070126

OpenSharePoint 0.4.20070126


OpenSharePoint is an intra/extranet portal server similar to SharePoint. more>>
OpenSharePoint is an intra/extranet portal server similar to SharePoint.
OpenSharePoint project provides a place on the Web where a team can communicate, share documents, and work together on a project.
A separate team Website can be created for every project that is being worked on.
OSP is alternative groupware that provide a place on the web where your team can communicate,share documents and work together.You can contribute to the team website using nothing more than a web browser!, OSP provide more tool to communicate like News, Forum, Webbase E-Mail and etc. You can install new modules/block with easy way via using your web browser.
Enhancements:
- Installation problems were fixed and the core APIs were updated.
<<less
Download (3.2MB)
Added: 2007-03-22 License: GPL (GNU General Public License) Price:
950 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
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
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
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
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
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
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
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
Pandora Publisher 0.4.4

Pandora Publisher 0.4.4


Pandora is a simple web document and application platform written in Ruby. more>>
Pandora is a simple web document and application platform written in Ruby. Pandora Publisher aims to make it easy for a team of people to quickly collaborate on the network and develop custom document components and extensions to meet their specific needs.
Main features:
Easy to install and maintain
- Just unpack the package archive and run under Windows, Mac OS X, or Linux. The only prerequisite is Ruby, which you can install following these instructions.
Simple, extensible, and powerful
- Pandora does not require any relational database, but it lets you build your own web applications that can use databases with Ruby and Pandora Box object-oriented application framework.
Textile and Silk Veil formatting for site contents
- There is no need to code web pages in HTML with Pandora. Instead, just use Textile and Silk Veil, which are almost as easy to learn as plain text formatting.
Portable web site contents
- Pandora site contents are stored in a simple format that can be exported, zipped, moved, and viewed anywhere with its built in web server.
User selectable page design and templates
- You can easily customize the appearance of your Pandora site by creating new skins with Ruby, HTML, and CSS.
Integrated user account management functions
- Pandora comes with a built-in user account management functions that perform automated email verification and support a manual or automated registration approval process.
Enhancements:
- A new way to delete existing pages and chapters, a recent changes page, a default sidebar for new books, a trail path attachment indicator, and iconified file links were added.
- A defect that caused an exception when a book is deleted was fixed.
- The documentation was edited.
<<less
Download (1.5MB)
Added: 2006-08-27 License: Other/Proprietary License Price:
1155 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
Journyx Timesheets For Linux 7.0

Journyx Timesheets For Linux 7.0


Automate Project management, Billing and Payroll with your Free Web Timesheets! more>> Informed decision-making requires real-time data. Journyx Timesheets gives you what you need by allowing your employees to enter project time and expense information from any location that can hit the Internet. Add Journyx Projectlink to the mix and interface directly with MS Project. Precise cash flow coordination relies on accurate data. Journyx Timesheets makes the collection of time, expense & rate information easy and reduces the time needed to get an invoice out the door. Allow access to historical billing records to improve Client relationships. Accurate payroll processing demands fluid data. Journyx Timesheet can automatically transfer time, attendance and expense information directly to your critical payroll & HR management systems. Streamline the process even further with automated approval.
Project Management with Journyx Timesheets and make it easy on your employees.
<<less
Download (18.10MB)
Added: 2009-04-15 License: Freeware Price: Free
192 downloads
Plone Comments 2.2.1

Plone Comments 2.2.1


Plone Comments provides a product developed to improve moderation of comments in Plone. more>>
Plone Comments provides a product developed to improve moderation of comments in Plone.
Main features:
- Notify admin about comment posted
- Moderation of comments, approval of comments
- Anonymous commenting
- Added Name field to comment form, it is required for anonymous comments
- Article author can be notified about new comment after the approval by reviewer
- List of recent comments for more comfortable moderation
- Configlet that allow:
- Turning on/off Moderation
- Turning on/off Manager notification
- Turning on/off Editor notification
- Turning on/off Anonymous Commenting
- Configure admin e-mail for notifications
- Configure notification subject
Comments moderation is implemented with involvement of two stage workflow. Comments are created in "private" state and visible only to DiscussionManager group of users.
To differentiate between logged-in (registered) commentors and Anonymous commentors that pretend to be one person or other one, we use Boldness of name. The Comment author is in bold when posted by logged in member. The names provided when posting Anonymously are in plain text.
Notification subject control allows to enter custom prefix to disctinct nofifications comming from different sites.
Usage
One of possible UseCases:
- Moderation is enabled and authors notification is turned on.
- New comment posted in private state.
- Notification is sent to the emails entered in Plone Comments configlet.
- Moderator User with DiscussionManager role see the comment.
- The comment can be deleted or published on modaration stage.
- When comment is published notification is sent to Article Editor.
Enhancements:
- Ukrainian translation added
- added qPloneCaptchas-1.0 integration/compatibility
- fixed reinstall procedure
<<less
Download (0.037MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
943 downloads
Hard Token Management Framework 1.0 Beta 2

Hard Token Management Framework 1.0 Beta 2


Hard Token Management Framework is used to manage the complete livecycle of an organizations Smartcard and/or USB dongles. more>>
Hard Token Management Framework is used to manage the complete livecycle of an organizations Smartcard and/or USB dongles.
It communicates with the tokens through a PKCS11 interface so it is possible to change hardware as long as they supply it with a good implementation of PKCS11.
It comes along quite with a few ready made modules that can be composed to fit the need of the organization. The Hard Token Management Framework is an Add-on to EJBCA Certificate Authority (see http://www.ejbca.org).
Main features:
- Support of Setec 4.3.1 and 4.4.1 cards (TODO check)
- Issuing cards with 1 or more certificates
- Support for 2 PIN, basic and signature
- Contains a Card Analyser that analyses the card for the card administrator to give a suggestion of what is wrong with the card
- Possibilty to issue ordinary, temporary and project cards with different validities
- When a ordinary or project card is generated is all previous cards revoked
- When a temporary card is issued is the ordinary card set on hold until the ordinary card is reactivated
- Userdata is fetched from existing user data source.
- Possibility to unlock cards without exposing the PUK. The PUK is stored encrypted in EJBCA database.
- Easy to renew an expiring card
- Cards not used anymore can be revoked and ereased.
- It is also possible for a card administrator to do some management remotely (without having the card) such as revoking and activating a ordinary card.
- For 24/7 working environments where a card administrator might not be available it is possible for a colleague to issue a card unlock or issue temporary card request that is sent to a central support unit for approval
- TaLiMa also have error reporting functionality where unexpected error can be sent to the technical administrators for analysis
Enhancements:
Bug:
- [HTMF-2] - Wrong error message analysing card
- [HTMF-10] - Applet works badly when closing and reloading the page
- [HTMF-11] - Only jdk 1.6 can be used to build, Arrays method used not supported in 1.5
Improvement:
- [HTMF-8] - Support certificates generated by other CAs
New Feature:
- [HTMF-12] - Check if card data is uploaded to DB during analysis
<<less
Download (12.5MB)
Added: 2007-08-10 License: LGPL (GNU Lesser General Public License) Price:
808 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5