workflow
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 113
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.
<<lessIt 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.
Download (3.9MB)
Added: 2006-08-16 License: BSD License Price:
1165 downloads
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.
<<lessDumps 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.
Download (0.005MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
978 downloads
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.
<<lessSYNOPSIS
# 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.
Download (0.10MB)
Added: 2007-07-10 License: Perl Artistic License Price:
839 downloads
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.
<<lessCMFPlacefulWorkflow: 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.
Download (0.046MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
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();
<<lessSYNOPSIS
# 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();
Download (0.81MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
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.
<<lessThere 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.
Download (0.017MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1086 downloads
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.
<<lessJawFlow 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.
Download (12.5MB)
Added: 2006-10-19 License: LGPL (GNU Lesser General Public License) Price:
1100 downloads
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.
<<lessMain 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.
Download (4.7MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1453 downloads
ExiFlow 0.3.0
ExiFlow is a set of tools (command line and GUI) to provide a complete digital photo workflow for Unixes. more>>
ExiFlow is a set of tools (command line and GUI) to provide a complete digital photo workflow for Unixes.
EXIF headers are used as the central information repository, so users may change their software at any time without loosing their data.
Which tools are provided by ExiFlow?
exigui
This is the GTK frontend for all other tools but exiimport. If the mouse is your best friend you will like this one.
exiimport
Import files from given directories to your photo folder. Optionally unmounts source media after successfull import.
exirename
Rename a bunch of image files according to our holy file naming schema.
exiperson
Personalize images by setting EXIF fields to values spezified in exif.cfg or on command line. Any arbitrary field name may be configured or given. This is normally used for artist and copyright information.
exiassign
Find groups of derived images and exchange EXIF information between them. That way, a freshly edited derivate can automatically inherit its mothers EXIF information.
exigate
Automatically gate information between gthumb metadata and the images EXIF information. This lets you describe and tag your photos whith gthumb and transfer everything to the according EXIF tags afterwards. The other direction is also possible, so you are never bound to using one specific piece of software.
<<lessEXIF headers are used as the central information repository, so users may change their software at any time without loosing their data.
Which tools are provided by ExiFlow?
exigui
This is the GTK frontend for all other tools but exiimport. If the mouse is your best friend you will like this one.
exiimport
Import files from given directories to your photo folder. Optionally unmounts source media after successfull import.
exirename
Rename a bunch of image files according to our holy file naming schema.
exiperson
Personalize images by setting EXIF fields to values spezified in exif.cfg or on command line. Any arbitrary field name may be configured or given. This is normally used for artist and copyright information.
exiassign
Find groups of derived images and exchange EXIF information between them. That way, a freshly edited derivate can automatically inherit its mothers EXIF information.
exigate
Automatically gate information between gthumb metadata and the images EXIF information. This lets you describe and tag your photos whith gthumb and transfer everything to the according EXIF tags afterwards. The other direction is also possible, so you are never bound to using one specific piece of software.
Download (0.063MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1207 downloads
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
<<lessMain 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
Download (0.85MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
808 downloads
Fact Or Fiction 1.0
Fact Or Fiction is a deck editor for the popular trading card game more>>
Fact Or Fiction is a deck editor for the popular trading card game "Magic: The Gathering".
Fact Or Fiction project can be useful for organizing and keeping track of your cards.
It supports card filtering, automatic image loading, deck sorting, and quick entry.
Images:
Card images are automatically downloaded from internet sites. Take a look at the screenshot to see the settings necessary to access Gatherer for the images.
Be aware that Oracle text files do not provide the set of the cards. Therefore a given lists of subdirectories is searched for the card image. To allow rapid deck entry this is done in a background process.
This dialog will also allow you to set your proxy settings to download the images.
Enhancements:
- This release is in sync with the "Dissension" edition of Magic: the Gathering.
- Unglued and Unhinged cards have strange names, and some issues with picture download were fixed.
- The homepage was updated with the correct workflow to build a working (UTF8 encoded) Oracle.
- The size of the edition list control was decreased.
- Dissension mana symbols were added.
- Dissension was added to the initial download list.
- Image scaling was reworked to use bilinear filtering.
<<lessFact Or Fiction project can be useful for organizing and keeping track of your cards.
It supports card filtering, automatic image loading, deck sorting, and quick entry.
Images:
Card images are automatically downloaded from internet sites. Take a look at the screenshot to see the settings necessary to access Gatherer for the images.
Be aware that Oracle text files do not provide the set of the cards. Therefore a given lists of subdirectories is searched for the card image. To allow rapid deck entry this is done in a background process.
This dialog will also allow you to set your proxy settings to download the images.
Enhancements:
- This release is in sync with the "Dissension" edition of Magic: the Gathering.
- Unglued and Unhinged cards have strange names, and some issues with picture download were fixed.
- The homepage was updated with the correct workflow to build a working (UTF8 encoded) Oracle.
- The size of the edition list control was decreased.
- Dissension mana symbols were added.
- Dissension was added to the initial download list.
- Image scaling was reworked to use bilinear filtering.
Download (3.9MB)
Added: 2006-04-28 License: Eclipse Public License Price:
1274 downloads
NetworkManager 0.6.5
NetworkManager is a network connection manager. more>>
NetworkManager program is a network connection manager for most RPM and Debian-based distros.
Supports Ethernet, WiFi, VPN connections.
Networking on Linux should not suck like it does right now for the desktop user. The desktop user should never need to use the command-line to configure their network; it should "Just Work" as automatically as possible and intrude as little as possible into the users workflow.
The computer should use the wired network connection when its plugged in, but automatically switch to a wireless connection when the user unplugs it and walks away from the desk.
Likewise, when the user plugs the computer back in, the computer should switch back to the wired connection. The user should, most times, not even notice that their connection has has been managed for them; they should simply see uninterrupted network connectivity.
Flexible, Extendable, and Open
The most important pieces of NetworkManager are desktop-environment and distribution agnostic, functioning just as well in Gnome, KDE, Xfce, etc. across distributions like Fedora Core, Debian, Gentoo, and Slackware.
And since the NetworkManager components communicate with each other using dbus, its easy to rip out and replace any of the User Interface pieces at any time.
Application Integration
Using the awesome power and flexibility of dbus and hal, NetworkManager provides facilities for other desktop applications like browsers and email clients to be aware of the networks state and adjust their operation accordingly for features like offline operation.
<<lessSupports Ethernet, WiFi, VPN connections.
Networking on Linux should not suck like it does right now for the desktop user. The desktop user should never need to use the command-line to configure their network; it should "Just Work" as automatically as possible and intrude as little as possible into the users workflow.
The computer should use the wired network connection when its plugged in, but automatically switch to a wireless connection when the user unplugs it and walks away from the desk.
Likewise, when the user plugs the computer back in, the computer should switch back to the wired connection. The user should, most times, not even notice that their connection has has been managed for them; they should simply see uninterrupted network connectivity.
Flexible, Extendable, and Open
The most important pieces of NetworkManager are desktop-environment and distribution agnostic, functioning just as well in Gnome, KDE, Xfce, etc. across distributions like Fedora Core, Debian, Gentoo, and Slackware.
And since the NetworkManager components communicate with each other using dbus, its easy to rip out and replace any of the User Interface pieces at any time.
Application Integration
Using the awesome power and flexibility of dbus and hal, NetworkManager provides facilities for other desktop applications like browsers and email clients to be aware of the networks state and adjust their operation accordingly for features like offline operation.
Download (1.0MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
926 downloads
UICollection 2.1
UICollection is a rich set of Java Swing widgets. more>>
UICollection is a rich set of Java Swing widgets, solutions for common and not so common Swing projects, and a workflow using a graphics designer to merge all solutions into one project.
UICollection is a project that can be used in any application, commercial or otherwise. Despite being free UICollection has advanced user-interface features allowing you to create more professionial looking GUIs, faster.
There are various products which are part of this project, each brings a completely seperate component, or framework which enhances your user interfaces. All of them add to the synergy of the whole by being complementary in nature. Each can be used seperately, allowing an easy learning curve.
The core component is the designer, this is the one that binds all other components transparantly into one product. The designer is a GUI Builder with a twist; it allows you to build your user interfaces by point and click in such a way that the traditional disadvantages of code generators is taken away. Additionaly the designer itself is so easy to use that your graphics designer can use it to make drafts, or fine tune your finished products. The designer should actually be called a component of a highly-optimized, but very flexible workflow.
What binds all components is a next-generation Swing Look and Feel, the UICTheme is build for cross-platform look and feel in such a way that the feel part can be considered native. This is because of the huge amount of attention it spents on usability features that are common on the various operating systems Java supports, but still have not found their way into the core Swing distribution. All screenshots on this website will be based on the UICTheme, unless otherwise specified. Use the webstart demo if you want to get an instant feel for it.
Enhancements:
- The spinbox is no longer allowed to get higher than its textfields preferred height.
- The GroupBox is repainted after calling setEnabled (which is needed to update the ghosted state).
- Double number values were made to work.
- UICCalender was made to work with Java 5 and 6.
<<lessUICollection is a project that can be used in any application, commercial or otherwise. Despite being free UICollection has advanced user-interface features allowing you to create more professionial looking GUIs, faster.
There are various products which are part of this project, each brings a completely seperate component, or framework which enhances your user interfaces. All of them add to the synergy of the whole by being complementary in nature. Each can be used seperately, allowing an easy learning curve.
The core component is the designer, this is the one that binds all other components transparantly into one product. The designer is a GUI Builder with a twist; it allows you to build your user interfaces by point and click in such a way that the traditional disadvantages of code generators is taken away. Additionaly the designer itself is so easy to use that your graphics designer can use it to make drafts, or fine tune your finished products. The designer should actually be called a component of a highly-optimized, but very flexible workflow.
What binds all components is a next-generation Swing Look and Feel, the UICTheme is build for cross-platform look and feel in such a way that the feel part can be considered native. This is because of the huge amount of attention it spents on usability features that are common on the various operating systems Java supports, but still have not found their way into the core Swing distribution. All screenshots on this website will be based on the UICTheme, unless otherwise specified. Use the webstart demo if you want to get an instant feel for it.
Enhancements:
- The spinbox is no longer allowed to get higher than its textfields preferred height.
- The GroupBox is repainted after calling setEnabled (which is needed to update the ghosted state).
- Double number values were made to work.
- UICCalender was made to work with Java 5 and 6.
Download (2.6MB)
Added: 2007-06-07 License: The Apache License Price:
873 downloads
WoPeD 1.5
WoPeD is a tool for modelling, simulating and analyzing workflow process. more>>
WoPeD (Workflow Petri Net Designer) is an open-source project developed at the Berufsakademie Karlsruhe under the GNU Lesser General Public License (LGPL).
WoPeD project is an easy-to-use software tool for modelling, simulating and analyzing workflow process and resource descriptions using workflow nets, an extended class of Petri nets initially introduced by Wil van der Aalst (TU Eindhoven).
WoPeD is mainly indended to be used by researchers, teaching staff or students dealing with the application of Petri nets to the area of workflow or business process management. WoPeD has already been successfully used as modelling tool in lectures and student assessment projects. WoPeD is maintained via Sourceforge, a web-based, open source development platform.
<<lessWoPeD project is an easy-to-use software tool for modelling, simulating and analyzing workflow process and resource descriptions using workflow nets, an extended class of Petri nets initially introduced by Wil van der Aalst (TU Eindhoven).
WoPeD is mainly indended to be used by researchers, teaching staff or students dealing with the application of Petri nets to the area of workflow or business process management. WoPeD has already been successfully used as modelling tool in lectures and student assessment projects. WoPeD is maintained via Sourceforge, a web-based, open source development platform.
Download (4.3MB)
Added: 2007-06-28 License: LGPL (GNU Lesser General Public License) Price:
848 downloads
Cosmo 0.6
Cosmo is a calendar server. more>>
Cosmo is a calendar server. With your favorite calendar program (Chandler, Apple iCal, Mozilla Sunbird, or any other WebDAV or CalDAV enabled client), you can share your calendar with other people by publishing it to Cosmo. Once your calendar is stored on the server, you can give permission for others to subscribe to it, and even modify it if their calendar client allows.
Cosmo is a file server. You can store arbitrary files in your home directory in Cosmo with any WebDAV client (including the Windows XP, Linux and Apple OS X file managers), and you can share them with others in the same way as your calendar.
Cosmo is not a web-based personal information manager. The Scooby project aims to provide an innovative web interface for calendaring and will be tightly integrated with Cosmo.
Cosmo is not a content management system. There is no support for common CMS features such as versioning, content editing or workflow. Cosmo very simply allows calendar and file management applications to publish and subscribe to a content repository.
Enhancements:
- This release can share editable calendars without requiring Cosmo account signup.
- It has better interoperability with other calendar applications, display of time zones on calendar events, email notification of an updated event on a shared calendar, and improvements to the administrator user interface.
<<lessCosmo is a file server. You can store arbitrary files in your home directory in Cosmo with any WebDAV client (including the Windows XP, Linux and Apple OS X file managers), and you can share them with others in the same way as your calendar.
Cosmo is not a web-based personal information manager. The Scooby project aims to provide an innovative web interface for calendaring and will be tightly integrated with Cosmo.
Cosmo is not a content management system. There is no support for common CMS features such as versioning, content editing or workflow. Cosmo very simply allows calendar and file management applications to publish and subscribe to a content repository.
Enhancements:
- This release can share editable calendars without requiring Cosmo account signup.
- It has better interoperability with other calendar applications, display of time zones on calendar events, email notification of an updated event on a shared calendar, and improvements to the administrator user interface.
Download (30MB)
Added: 2007-03-01 License: The Apache License 2.0 Price:
967 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above workflow search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed