approval workflow moss 2007
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 336
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
Mandriva Linux One 2007
Mandriva Linux One is a complete Mandriva Linux system, which you can use directly from the CD. more>>
Mandriva Linux One is a complete Mandriva Linux system, which you can use directly from the CD.
It includes Openoffice.org, kde, mozilla-firefox, gimp, amarok...
You are welcome to test, especially the installation wizard.
Please report the problems on bugzilla for the distribution.
You only need one CD, just pick the one depending of you language.
<<lessIt includes Openoffice.org, kde, mozilla-firefox, gimp, amarok...
You are welcome to test, especially the installation wizard.
Please report the problems on bugzilla for the distribution.
You only need one CD, just pick the one depending of you language.
Download (696MB)
Added: 2006-10-22 License: GPL (GNU General Public License) Price:
1122 downloads
amarokFS 07-02-2007
amarokFS is an Amarok script which allows it to launch in full screen mode. more>>
amarokFS is an Amarok script which allows it to launch in full screen mode.
AmarokFS amarokscript launch the application amarok Full Screen.
The first time you run the script you must enter the path for the application binary.
For example: /usr/local/bin/amarokFS
After this the application load without any problem.
Esc to exit of amarokFS
Enhancements:
- Added message popup when the script init a stop.
<<lessAmarokFS amarokscript launch the application amarok Full Screen.
The first time you run the script you must enter the path for the application binary.
For example: /usr/local/bin/amarokFS
After this the application load without any problem.
Esc to exit of amarokFS
Enhancements:
- Added message popup when the script init a stop.
Download (0.007MB)
Added: 2007-02-08 License: GPL (GNU General Public License) Price:
990 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
IR File Chooser 2007-01-17
IR File Chooser is an infrared remote-controlled fileselection menu. more>>
IR File Chooser is an infrared remote-controlled fileselection menu.
Infra Red (IR) File Chooser is a remote-controlled menu for selecting files and loading them by an assigned program.
You can add as many filetypes and associated programs as you wish.
The functionality of Infra Red (IR) File Chooser may be extended using Perl or Shell scripts.
The GUI was created with Perl::GTK and it uses RCU::Lirc to fetch the remote controller commands.
Enhancements:
- A fix for the DROPREPEATS option.
<<lessInfra Red (IR) File Chooser is a remote-controlled menu for selecting files and loading them by an assigned program.
You can add as many filetypes and associated programs as you wish.
The functionality of Infra Red (IR) File Chooser may be extended using Perl or Shell scripts.
The GUI was created with Perl::GTK and it uses RCU::Lirc to fetch the remote controller commands.
Enhancements:
- A fix for the DROPREPEATS option.
Download (0.013MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1011 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
PCLinuxOS 2007
PCLinuxOS is an English only live CD initially based on Mandrake Linux that runs entirely from a bootable CD. more>>
PCLinuxOS is an English only Live CD initially based on Mandrake Linux that runs entirely from a bootable CD.
Data on the CD is uncompressed on the fly, allowing up to 2GB of programs on one CD including a complete X server, KDE desktop, OpenOffice.org and many more applications all ready to use.
In addition to the live CD, you can also install PCLinuxOS to your hard drive with an easy-to-use livecd-installer. Additional applications can be added or removed from your hard drive using a friendly apt-get front end via Synaptic.
<<lessData on the CD is uncompressed on the fly, allowing up to 2GB of programs on one CD including a complete X server, KDE desktop, OpenOffice.org and many more applications all ready to use.
In addition to the live CD, you can also install PCLinuxOS to your hard drive with an easy-to-use livecd-installer. Additional applications can be added or removed from your hard drive using a friendly apt-get front end via Synaptic.
Download (697.8MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
908 downloads
Canadian Payroll 2007.00
Canadian Payroll calculates Canadian payroll taxes, CPP, EI, WCB, HP and more. more>>
CdnPayroll is a collection of python functions which calculates Canadian payroll tax withholdings based on the most recent federal publication. Canadian Payroll is mostly for use by developers, but others use it with great success too.
Cdn Payroll is intended to be used primarily from another program or graphical user interface. This is because the numerous command line options necessary to fully implement the federal (and now provincial) tables become tedious very quickly.
Main features:
- Federal taxes for all of Canada
- TONI provincial tables
- Several output options
- Holiday Pay
- Advances
- Ability to save file
- Spreadsheet output
- Cross platform command line
- Graphical Interface (Linux)
- New web interface included
- Distributed free under the GPL
Enhancements:
- Changes due to 84th Edition t4127-jan-07e.pdf effective January 1st 2007.
<<lessCdn Payroll is intended to be used primarily from another program or graphical user interface. This is because the numerous command line options necessary to fully implement the federal (and now provincial) tables become tedious very quickly.
Main features:
- Federal taxes for all of Canada
- TONI provincial tables
- Several output options
- Holiday Pay
- Advances
- Ability to save file
- Spreadsheet output
- Cross platform command line
- Graphical Interface (Linux)
- New web interface included
- Distributed free under the GPL
Enhancements:
- Changes due to 84th Edition t4127-jan-07e.pdf effective January 1st 2007.
Download (0.15MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
603 downloads
Wikepage Wiki 2007.2
Wikepage Wiki is a 25kb small wiki/personal site builder. more>>
Wikepage is a 25kb small wiki/personal site builder.
Wikepage Wiki project has i18n support, multi-language site support, password protected pages, table support, CSS styling, file upload, and a lot of other features.
<<lessWikepage Wiki project has i18n support, multi-language site support, password protected pages, table support, CSS styling, file upload, and a lot of other features.
Download (0.030MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
890 downloads
Arabica January 2007
Arabica is a C++ XML parser toolkit that has a full SAX2 implementation. more>>
Arabica is a C++ XML parser toolkit that has a full SAX2 implementation (the Simple API for XML), including the optional interfaces and helper classes. It also implements the W3C DOM (Document Object Model) Level 2.0 Core, together with XPath 1.0.
It delivers UTF-8 encoded std::strings or UCS-2 std::wstrings, but can also accommodate custom string types and alternative encodings. Arabica provides uniform SAX2 wrappers for the expat parser, Xerces, libxml, and the Microsoft XML parser COM component.
Enhancements:
- Further improvements were made to the configure system.
- The build can now be configured without the Boost libraries, in which case the XPath components are skipped.
- Parser detection is improved, as is detecting the correct libraries for sockets.
- TreeWalker and NodeFilter were added.
- MSXML version checking was beefed up.
- Buffering in convertstream was reworked to reduce the number of dynamic allocations.
- LexicalHandler and DeclHandler are promoted to be part of the XMLReader interface.
<<lessIt delivers UTF-8 encoded std::strings or UCS-2 std::wstrings, but can also accommodate custom string types and alternative encodings. Arabica provides uniform SAX2 wrappers for the expat parser, Xerces, libxml, and the Microsoft XML parser COM component.
Enhancements:
- Further improvements were made to the configure system.
- The build can now be configured without the Boost libraries, in which case the XPath components are skipped.
- Parser detection is improved, as is detecting the correct libraries for sockets.
- TreeWalker and NodeFilter were added.
- MSXML version checking was beefed up.
- Buffering in convertstream was reworked to reduce the number of dynamic allocations.
- LexicalHandler and DeclHandler are promoted to be part of the XMLReader interface.
Download (0.25MB)
Added: 2007-01-23 License: BSD License Price:
1005 downloads
True Color Picker 2007-07-06
True Color Picker is a PHP class that can be used to present a palette to let the user pick colors. more>>
True Color Picker is a PHP class that can be used to present a palette to let the user pick colors.
It displays an image with all the tones for the user to pick by clicking in an image point with the desired tone similar to Photoshop.
It uses AJAX to update the picker boxes without reloading the page.
<<lessIt displays an image with all the tones for the user to pick by clicking in an image point with the desired tone similar to Photoshop.
It uses AJAX to update the picker boxes without reloading the page.
Download (MB)
Added: 2007-07-13 License: Freely Distributable Price:
837 downloads
KomiksSinfest 15.03.2007
KomiksSinfest is a small SuperKaramba theme based on Comics theme by darius. more>>
KomiksSinfest is a small SuperKaramba theme based on Comics theme by darius. Ive modified it so it shows Sinfest comics, and made some minor improvements.
This is addressed for all Sinfest fans .
Run: superkaramba comics.theme
<<lessThis is addressed for all Sinfest fans .
Run: superkaramba comics.theme
Download (0.019MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
933 downloads
Yeanpypa 2007-02-10
Yeanpypa is a parsing framework in Python, similar to pyparsing and boost::spirit. more>>
Yeanpypa is a parsing framework in Python, similar to pyparsing and boost::spirit.
Parsers are created by writing an EBNF-like grammar as Python expressions.
<<lessParsers are created by writing an EBNF-like grammar as Python expressions.
Download (0.031MB)
Added: 2007-02-16 License: Public Domain Price:
982 downloads
Gaia Ajax Widgets 2007 Q3
Gaia Ajax Widgets is an Ajax library for ASP.NET and Mono. more>>
Gaia Ajax Widgets is an Ajax library for ASP.NET and Mono. The project is a "high-level library", meaning it abstracts away JavaScript 100%, and the developer doesnt have to write anything other than his favorite .Net language like C#, VB.NET, IronPython, or Boo (Mono).
Gaia is not your average "yet another Ajax Framework", with Gaia you can do things impossible in all other Ajax Libraries. Gaia is about letting you do Ajax and not Ajax do YOU! In fact were so certain about this that if youre not satisfied with Gaia Ajax Widgets within 3 months of purchasing well give you a total refund of all of your license costs! If you cant do it with any other Ajax Framework you can probably do it with Gaia!
<<lessGaia is not your average "yet another Ajax Framework", with Gaia you can do things impossible in all other Ajax Libraries. Gaia is about letting you do Ajax and not Ajax do YOU! In fact were so certain about this that if youre not satisfied with Gaia Ajax Widgets within 3 months of purchasing well give you a total refund of all of your license costs! If you cant do it with any other Ajax Framework you can probably do it with Gaia!
Download (0.72MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
509 downloads
Active Objects 2007-03-04
Active Objects is an implementation of the Active Object concept based on the boost::thread, boost::bind, boost::function libs. more>>
Active Objects is an implementation of the Active Object concept based on the boost::thread, boost::bind, and boost::function libraries.
The point of the library is to make taking advantage of multiprocessor machines as easy as possible. The library provides two types of functionality. The first is the ability to execute a function in a separate thread and automatically synchronize with the thread when the return value is needed.
The second is the ability to easily create a message cue for any existing class, and have that class process its messages asynchronously.
Enhancements:
- Minor code cleanup and code documentation updates.
<<lessThe point of the library is to make taking advantage of multiprocessor machines as easy as possible. The library provides two types of functionality. The first is the ability to execute a function in a separate thread and automatically synchronize with the thread when the return value is needed.
The second is the ability to easily create a message cue for any existing class, and have that class process its messages asynchronously.
Enhancements:
- Minor code cleanup and code documentation updates.
Download (0.32MB)
Added: 2007-03-07 License: Other/Proprietary License with Source Price:
961 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 approval workflow moss 2007 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