defined benefit retirement plan
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2787
Define Word 0.7.0 for Firefox
Define Word is an extension which allows you to look up definition of selected text. more>>
Define Word is an extension which allows you to look up definition of selected text.
Look up definition of selected text using any of several search engines. The list of engines is configurable.
<<lessLook up definition of selected text using any of several search engines. The list of engines is configurable.
Download (0.008MB)
Added: 2007-04-17 License: MPL (Mozilla Public License) Price:
922 downloads
Device::SerialPort::Xmodem 1.03
Device::SerialPort::Xmodem contains an Xmodem file transfer protocol for Device::SerialPort. more>>
Device::SerialPort::Xmodem contains an Xmodem file transfer protocol for Device::SerialPort.
SYNOPSIS
use Device::SerialPort::Xmodem;
This is an Xmodem implementation designed to receive a file using 128 byte blocks. This module is intended to be passed an open and prepared port with active connection.
At this time it can only receive 128 byte blocks, however 1k blocks are in the works. I do plan to write a send functionality soon.
Device::SerialPort::Xmodem::Constants
Synopsis
This is a set of contants that return hex values for the following:
nul ^@ 0x00 null
soh ^A 0x01 start of header 128 byte block
stx ^B 0x02 start of header 1k byte block
eot ^D 0x04 end of trasmission
ack ^E 0x06 acknowlegded
nak ^U 0x15 not acknowledged
can ^X 0x18 cancel
C 0x43 C ASCII char
ctrl_z ^Z 0x1A end of file marker
Xmodem::Block
Class that represents a single Xmodem data block.
Synopsis
my $b = Xmodem::Block->new( 1, My Data...< until-128-chars >... );
if( defined $b ) {
# Ok, block instanced, verify its checksum
if( $b->verify( checksum, < my_chksum > ) ) {
...
} else {
...
}
} else {
# No block
}
# Calculate checksum, crc16, 32, ...
$crc16 = $b->crc16();
$crc32 = $b->crc32();
$chksm = $b->checksum();
$b->to_string(); # outputs a formated message block
<<lessSYNOPSIS
use Device::SerialPort::Xmodem;
This is an Xmodem implementation designed to receive a file using 128 byte blocks. This module is intended to be passed an open and prepared port with active connection.
At this time it can only receive 128 byte blocks, however 1k blocks are in the works. I do plan to write a send functionality soon.
Device::SerialPort::Xmodem::Constants
Synopsis
This is a set of contants that return hex values for the following:
nul ^@ 0x00 null
soh ^A 0x01 start of header 128 byte block
stx ^B 0x02 start of header 1k byte block
eot ^D 0x04 end of trasmission
ack ^E 0x06 acknowlegded
nak ^U 0x15 not acknowledged
can ^X 0x18 cancel
C 0x43 C ASCII char
ctrl_z ^Z 0x1A end of file marker
Xmodem::Block
Class that represents a single Xmodem data block.
Synopsis
my $b = Xmodem::Block->new( 1, My Data...< until-128-chars >... );
if( defined $b ) {
# Ok, block instanced, verify its checksum
if( $b->verify( checksum, < my_chksum > ) ) {
...
} else {
...
}
} else {
# No block
}
# Calculate checksum, crc16, 32, ...
$crc16 = $b->crc16();
$crc32 = $b->crc32();
$chksm = $b->checksum();
$b->to_string(); # outputs a formated message block
Download (0.043MB)
Added: 2007-08-08 License: Perl Artistic License Price:
812 downloads
Auto Project Planner 1.1.0
Auto Project Planner software automatically calculates a proper project plan based on your effort estimations. more>>
Auto Project Planner software automatically calculates a proper project plan based on your effort estimations and the due dates you have in mind. A list of tasks and a list of employees can be defined. Tasks can be assigned to one or more employees.
The project is also possible to define a maximum percentage value an employee can/should work on a task.
Public holidays, leaves, weekly working hours and some more parameters can be specified and are considered in the calculation.
According to this input the software compute time plans by minimizing the MSE (mean squared error) between expected and computed end dates.
Main features:
- Add/Remove/Edit/Arrange Tasks
- Estimated/Remaining Time
- Expected End Date
- Predecessors
- Add/Remove/Edit Staff Members
- Hours per week
- Assign (multiple) Staff Members to Tasks
- Define max. percentage a Staff Member could/should work on a Task
- Define Sick/Personal Leaves & Public Holidays
- Set Start Date of Calculation
- Output: Phase Plan (printable)
- Output: General & Weekly Overview of calculated plan
- Calculation
- Minimizes MSE between Expected and Calculated End Dates of Tasks
- New/Open/Save APP Projects
- Export to GanttProject
<<lessThe project is also possible to define a maximum percentage value an employee can/should work on a task.
Public holidays, leaves, weekly working hours and some more parameters can be specified and are considered in the calculation.
According to this input the software compute time plans by minimizing the MSE (mean squared error) between expected and computed end dates.
Main features:
- Add/Remove/Edit/Arrange Tasks
- Estimated/Remaining Time
- Expected End Date
- Predecessors
- Add/Remove/Edit Staff Members
- Hours per week
- Assign (multiple) Staff Members to Tasks
- Define max. percentage a Staff Member could/should work on a Task
- Define Sick/Personal Leaves & Public Holidays
- Set Start Date of Calculation
- Output: Phase Plan (printable)
- Output: General & Weekly Overview of calculated plan
- Calculation
- Minimizes MSE between Expected and Calculated End Dates of Tasks
- New/Open/Save APP Projects
- Export to GanttProject
Download (0.37MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
970 downloads
iCalDoubleRemover
iCalDoubleRemover script just removes duplicate Entries in iCals. more>>
iCalDoubleRemover script just removes duplicate Entries in iCals. Dupicate entries are defined as having the same Entries except for the UID bit. A special feature is support for duplicate BirthdayCal entries as well.
Be aware that you need Perl, Config::Inifiles via Perlupdate ( perl -MCPAN -e shell install Config::IniFiles ).
<<lessBe aware that you need Perl, Config::Inifiles via Perlupdate ( perl -MCPAN -e shell install Config::IniFiles ).
Download (0.006MB)
Added: 2005-11-18 License: Freeware Price:
1436 downloads
BuildNumber 0.8a
BuildNumber is a utility to add auto-incrementing build numbers to C and C++ projects. more>>
Large projects usually already have some type of mechanism for build numbering, because keeping track of which build is the latest can be very important information. However, even small hobby projects can benefit from a self-maintaining build numbering system.
BuildNumber project is a utility to add auto-incrementing build numbers to C and C++ projects. BuildNumber will create and maintain a single header file called buildnumber.h for your project which you can #include to access the current build number. BuildNumber is written in pure C for maximum portability, but the binary can also be used with C++ projects, and the source should compile with almost any C/C++ compiler.
The entire contents of a sample buildnumber.h are displayed below:
/* Generated by BuildNumber version 0.8 */
#ifndef BUILD_NUMBER_H_
#define BUILD_NUMBER_H_
#define BUILDNUMBER 53
#define BUILDNUMBER_STR "53"
#endif /* BUILD_NUMBER_H_ */
Every time you rebuild your project, BuildNumber will automatically update this file for you: set it up once, and it just works. You can compile individual files (to confirm syntax, etc) without incrementing the build number, because it only updates when you actually build or make your project.
Main features:
- Written in pure C for maximum portability
- Simple concept, simple solution, simple code
- Works seemlessly in C and C++ projects
- Sets up in minutes, then its entirely automated
- Works with virtually every C/C++ compiler on virtually every system
- BSD License for maximum freedom, even in commercial projects
<<lessBuildNumber project is a utility to add auto-incrementing build numbers to C and C++ projects. BuildNumber will create and maintain a single header file called buildnumber.h for your project which you can #include to access the current build number. BuildNumber is written in pure C for maximum portability, but the binary can also be used with C++ projects, and the source should compile with almost any C/C++ compiler.
The entire contents of a sample buildnumber.h are displayed below:
/* Generated by BuildNumber version 0.8 */
#ifndef BUILD_NUMBER_H_
#define BUILD_NUMBER_H_
#define BUILDNUMBER 53
#define BUILDNUMBER_STR "53"
#endif /* BUILD_NUMBER_H_ */
Every time you rebuild your project, BuildNumber will automatically update this file for you: set it up once, and it just works. You can compile individual files (to confirm syntax, etc) without incrementing the build number, because it only updates when you actually build or make your project.
Main features:
- Written in pure C for maximum portability
- Simple concept, simple solution, simple code
- Works seemlessly in C and C++ projects
- Sets up in minutes, then its entirely automated
- Works with virtually every C/C++ compiler on virtually every system
- BSD License for maximum freedom, even in commercial projects
Download (0.038MB)
Added: 2006-04-07 License: BSD License Price:
1299 downloads
Guifications 2.13 Beta2
Guifications is a Gaim plugin that displays msn style more>>
Guifications is a Gaim plugin that displays msn style "toaster" popups in a user defined corner of the screen.
Guifications is highly configurable, and easy to use. There are a ton of preferences, that may be daunting at first, but are pretty straight forward.
<<lessGuifications is highly configurable, and easy to use. There are a ton of preferences, that may be daunting at first, but are pretty straight forward.
Download (0.21MB)
Added: 2006-02-13 License: GPL (GNU General Public License) Price:
1350 downloads
Tenes Empanadas Graciela 0.11.1
Tenes Empanadas Graciela (TEG) is a turn-based strategy game based on Risk. more>>
Tenes Empanadas Graciela (TEG) is a turn-based strategy game based on Risk.
Tenes Empanadas Graciela (TEG) is a turn-based strategy game, a clone of "Plan Tactico y Estrategico de la Guerra" based on Risk.
<<lessTenes Empanadas Graciela (TEG) is a turn-based strategy game, a clone of "Plan Tactico y Estrategico de la Guerra" based on Risk.
Download (3.7MB)
Added: 2005-07-22 License: GPL (GNU General Public License) Price:
1558 downloads
Speegle Define 1.1
Speegle Define is a Firefox extension that gives a spoken definition of a word using Speegle Speech Technology. more>>
Speegle Define is a Firefox extension that gives a spoken definition of a word using Speegle Speech Technology. You highlight the word you would like explained with highlight left click on any internet page you are reading.
Right click and choose "Audio Definition" from the pop up menu and its definition will be read back to you in English through your speakers or headphones.
<<lessRight click and choose "Audio Definition" from the pop up menu and its definition will be read back to you in English through your speakers or headphones.
Download (0.004MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
874 downloads
Firenze 2.1
Firenze project helps you to easily subscribe to your favorite Podcast feeds and reveive them. more>>
Firenze project helps you to easily subscribe to your favorite Podcast feeds and reveive them.
There is no gui in the works, and because of the intended simplicity of this program, one is not planned in the future either.
Also, Firenze is not intended to replace any other Podcaster receiver (like juice, jpodder or itunes). Firenze has the single goal of downloading enclosures from subscripted feeds fast and efficiently.
Main features:
- Simplicity and ease of use
- Command-line scriptable
- Multi Platform program (Java based)
- Scheduled downloads
- User-defined destination file and folder name (support for all rss tags included itunes tags)
- User-defined download condition
- Multiple simultaneous downloads
- Single enclosure download
- Proxy Server support
- Multiple simultaneous downloads
- Conditional download
- Split mp3 file after download
- Launch command after download
- Highly configurable for advanced users with BeanShell support
<<lessThere is no gui in the works, and because of the intended simplicity of this program, one is not planned in the future either.
Also, Firenze is not intended to replace any other Podcaster receiver (like juice, jpodder or itunes). Firenze has the single goal of downloading enclosures from subscripted feeds fast and efficiently.
Main features:
- Simplicity and ease of use
- Command-line scriptable
- Multi Platform program (Java based)
- Scheduled downloads
- User-defined destination file and folder name (support for all rss tags included itunes tags)
- User-defined download condition
- Multiple simultaneous downloads
- Single enclosure download
- Proxy Server support
- Multiple simultaneous downloads
- Conditional download
- Split mp3 file after download
- Launch command after download
- Highly configurable for advanced users with BeanShell support
Download (1.3MB)
Added: 2007-07-28 License: LGPL (GNU Lesser General Public License) Price:
820 downloads
WWW::Webrobot::pod::Testplan 0.80
WWW::Webrobot::pod::Testplan is a Perl module that helps you on how to write a test plan for webrobot. more>>
WWW::Webrobot::pod::Testplan is a Perl module that helps you on how to write a test plan for webrobot.
A test plan is a list of elements. An element itself may be a request, a (sub) test plan, an include or a cookie control command.
While processing a plan will be flattened and all requests are executed in sequence. This ist the top level structure of a test plan:
< ?xml version="1.0" encoding="iso-8859-1"? >
< plan >
... request ...
... include ...
... (sub)plan ...
< /plan >
<<lessA test plan is a list of elements. An element itself may be a request, a (sub) test plan, an include or a cookie control command.
While processing a plan will be flattened and all requests are executed in sequence. This ist the top level structure of a test plan:
< ?xml version="1.0" encoding="iso-8859-1"? >
< plan >
... request ...
... include ...
... (sub)plan ...
< /plan >
Download (0.096MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1136 downloads
Testitool 1.0 beta 6
Testitool is a QA test planning Web application. more>>
Testitool is an application written in PHP that allows its users to compose and manage QA test plans.
Main features:
Test Plan Management
- Use Testitool to compose rich test plans containing an unlimited number of test cases. Each test case can be mapped to a functional requirement (documented elsewhere), can be assigned a type (e.g. regression, functional, etc.), and more.
Manage Individual Instances of Each Test Plan
- Each test plan contains the master list of all test cases for a given product. However, for any given release you may not want to execute each and every test case. Testitool allows you to pick and choose which test case you will want to execute for any given instance of the test plan. Then track the pass and fail rate of each test plan instance.
Generate Reports
- Testitool allows anyone to view a variety of different test plan reports including: a bug report, a progress report, and failure rate report, and more.
Import/Export Test Cases from Excel
- Do you prefer to use a program like Excel to write your test plans - Testitool allows users to easily import and export test plans and all of their test cases to and from CSV file formats.
<<lessMain features:
Test Plan Management
- Use Testitool to compose rich test plans containing an unlimited number of test cases. Each test case can be mapped to a functional requirement (documented elsewhere), can be assigned a type (e.g. regression, functional, etc.), and more.
Manage Individual Instances of Each Test Plan
- Each test plan contains the master list of all test cases for a given product. However, for any given release you may not want to execute each and every test case. Testitool allows you to pick and choose which test case you will want to execute for any given instance of the test plan. Then track the pass and fail rate of each test plan instance.
Generate Reports
- Testitool allows anyone to view a variety of different test plan reports including: a bug report, a progress report, and failure rate report, and more.
Import/Export Test Cases from Excel
- Do you prefer to use a program like Excel to write your test plans - Testitool allows users to easily import and export test plans and all of their test cases to and from CSV file formats.
Download (0.028MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1655 downloads
Schevo 3.0 Beta2
Schevo is a next-generation DBMS that focuses on database integrity, rapid development, user interface generation. more>>
Schevo project is a next-generation DBMS that focuses on the following:
- Database Integrity: Schevo is designed from the ground up to protect your data. All changes to a Schevo database must be done using transactions, and Schevo ensures that those transactions always leave the database in a consistent state.
- Rapid Development: Schevo includes features to make it easy and fun to create even the most complex of databases. Not only is the schema syntax easy to write and understand, you can also quickly place initial values in your schema that are required by your database, and use the same syntax to create sets of sample data to use during development.
- User Interface Generation: Schevo provides user interface toolkits that take advantage of the richness of the database schema. You can use the full-featured Schevo Navigator to interact with your database without writing a single line of code outside of your database schema. A PyQt-based toolkit is already available, and TurboGears and NuFox toolkits are in the works.
- Rich Schema Definition: The schema for a Schevo database is written in concise, easy-to-read Python code. Not only does the schema describe how information in the database is structured, but also defines all transactions and rules that ensure database integrity.
- Assisted Schema Evolution: Once a Schevo database is deployed and is used to store valuable data, you will inevitably make further changes to the structure of the database. Schevo assists you in this task and makes it easy to restructure a database and facilitate the migration of data from one schema version to the next.
The main problem that Schevo was designed to address is that Relational databases, which use Structured Query Language (SQL), do not match well with object-oriented programming languages, such as Java, Python and Ruby.
This situation has been labeled the "object-relational impedance mismatch" problem, and it is a significant barrier to the rapid development and evolution of database applications.
Because of this mismatch, database applications tend to have three distinct layers of code: SQL within the database, object-oriented code within the application, and an object-relational mapping (ORM) layer to mediate between the SQL and the object language.
These extra layers add additional complexity and inflexibility to what are already complex and inflexible databases. Schevo eliminates these extra layers.
Schevo solves the object-relational impedance mismatch problem by combining relational features with the object-oriented programming language Python.
A database schema defined in Schevo results in a database that enforces the same integrity constraints supported by the Relational model, with the added benefit of Python objects.
The benefit of this is that application developers can create their entire application using the full power of the Python language without having to introduce another language (SQL) that has its own language constructs, its own datatypes, and a limited set of behavior. Instead, a Schevo database stores Schevo objects which use native Python datatypes and include any behavior defined for those objects.
In addition, Schevo objects contain a great deal of metadata that is available for introspection to support the development of rich user interfaces with a minimal amount of code.
In fact, Schevo includes a GUI Navigator that can display a fully interactive interface into any Schevo database. The Navigator is constructed on-the-fly based solely on the metadata available within the Schevo database file.
The Navigator allows you to display, create, update, and delete any object within the database, within the rules and constraints defined for that database.
Enhancements:
- Many minor changes were made.
- All supporting packages that used to be included with Schevo itself are now broken out into subpackages.
<<less- Database Integrity: Schevo is designed from the ground up to protect your data. All changes to a Schevo database must be done using transactions, and Schevo ensures that those transactions always leave the database in a consistent state.
- Rapid Development: Schevo includes features to make it easy and fun to create even the most complex of databases. Not only is the schema syntax easy to write and understand, you can also quickly place initial values in your schema that are required by your database, and use the same syntax to create sets of sample data to use during development.
- User Interface Generation: Schevo provides user interface toolkits that take advantage of the richness of the database schema. You can use the full-featured Schevo Navigator to interact with your database without writing a single line of code outside of your database schema. A PyQt-based toolkit is already available, and TurboGears and NuFox toolkits are in the works.
- Rich Schema Definition: The schema for a Schevo database is written in concise, easy-to-read Python code. Not only does the schema describe how information in the database is structured, but also defines all transactions and rules that ensure database integrity.
- Assisted Schema Evolution: Once a Schevo database is deployed and is used to store valuable data, you will inevitably make further changes to the structure of the database. Schevo assists you in this task and makes it easy to restructure a database and facilitate the migration of data from one schema version to the next.
The main problem that Schevo was designed to address is that Relational databases, which use Structured Query Language (SQL), do not match well with object-oriented programming languages, such as Java, Python and Ruby.
This situation has been labeled the "object-relational impedance mismatch" problem, and it is a significant barrier to the rapid development and evolution of database applications.
Because of this mismatch, database applications tend to have three distinct layers of code: SQL within the database, object-oriented code within the application, and an object-relational mapping (ORM) layer to mediate between the SQL and the object language.
These extra layers add additional complexity and inflexibility to what are already complex and inflexible databases. Schevo eliminates these extra layers.
Schevo solves the object-relational impedance mismatch problem by combining relational features with the object-oriented programming language Python.
A database schema defined in Schevo results in a database that enforces the same integrity constraints supported by the Relational model, with the added benefit of Python objects.
The benefit of this is that application developers can create their entire application using the full power of the Python language without having to introduce another language (SQL) that has its own language constructs, its own datatypes, and a limited set of behavior. Instead, a Schevo database stores Schevo objects which use native Python datatypes and include any behavior defined for those objects.
In addition, Schevo objects contain a great deal of metadata that is available for introspection to support the development of rich user interfaces with a minimal amount of code.
In fact, Schevo includes a GUI Navigator that can display a fully interactive interface into any Schevo database. The Navigator is constructed on-the-fly based solely on the metadata available within the Schevo database file.
The Navigator allows you to display, create, update, and delete any object within the database, within the rules and constraints defined for that database.
Enhancements:
- Many minor changes were made.
- All supporting packages that used to be included with Schevo itself are now broken out into subpackages.
Download (MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1240 downloads
Openbravo 2.30 / 2.31 Beta
Openbravo is an ERP business solution for small and medium sized companies. more>>
Openbravo is an ERP business solution for small and medium sized companies. Its database structure is originally based on Compiere. Openbravo uses a fully Web based client/server architecture, and can be used from any Web browser.
It has support for PostgreSQL and Oracle database back-ends. Openbravo project is currently available in Spanish, English, Italian, Portuguese, and Russian.
Main features:
Fully Functional
- Openbravo includes the full suite of functionalities that are common nowadays in an extended ERP: procurement, warehouse, project management, manufacturing, sales and financial processes. Basic CRM (Customer Relationship Management) and BI (Business Intelligence) are built in as well. Openbravo is already in production in companies spanning several industries, including distribution, services and manufacturing.
Truly integrated, truly an ERP
- Openbravo is different from other ERP solutions that piece together independent modules, often resulting in unnecessary complexity and unstable interfaces. From the start, Openbravo was designed with the whole at heart: all functionalities share a common architecture, philosophy, rules and user interface. Yet, you can still decide if and when you configure or use each functionality provided by Openbravo.
Open Source
- Openbravos open source license permits unrestricted access to the source code and makes it possible for an independent community of IT professionals to provide services without any type of vendor lock-in.
- Additionally, Openbravo provides a broad range of functionalities that can be easily customized to fit the common business needs of SMEs. We understand that each company is unique and has its own specific particularities. For these companies, that require a more particular customization, we offer something more: unrestricted access to the underlying source code to tailor to your specific needs. Youre not likely to get this kind of flexibility if you license a solution from a traditional vendor.
Revolutionary Architecture
- Openbravo is developed around a revolutionary architecture that results in a better way to build software applications. Through a combination of well known standards such as MVC (Model, View, Control) and MDD (Model Driven Development) an abstraction layer has been created that provides the automation of code generation. This strategy enables higher productivity than in other architectures or development platforms. Besides, it provides better quality because the files are coded always using the same rules and style. Consequently, if a specific requirement, not met by the standard solution, needs to be developed from scratch, coders can greatly benefit from a consistent coding framework.
Fast Implementation
- Openbravo can be installed in just a few hours. After having your business needs defined, it can be customized to fit them in a matter of days. In just a few weeks you can have your current business information migrated to the Openbravo, integrations with other systems done, specific requirements developed and your employees trained to start working with the new enterprise management system. Openbravo does not require any irreversible implementation decisions. This allows you to go into production faster. Moreover, the system can be easily adapted to changing business needs whenever required and have a flexible deployment of new functionalities.
Best-in-Class Usability
- Because Openbravo is a pure web-based ERP users access the application with just a web browser, a well known user interface environment. The user interface is generated based on rules and these are designed to minimize the user learning curve. We continue investing to have the best-in-class usability, adopting the most recent presentation techniques for web applications like AJAX.
Whats New in 2.30 Stable Release:
- Alarms can now be defined by users (with e-mail notification).
- An alarm is a periodic check that is performed to verify certain conditions.
- A complete revision of Accounting was made, improving reporting and tracking.
- Messages were also revised to ensure that they provide a clear explanation, a homogeneous style, and a consistent user interface.
- The applications user interface was redesigned using Dojo as the user interface library.
<<lessIt has support for PostgreSQL and Oracle database back-ends. Openbravo project is currently available in Spanish, English, Italian, Portuguese, and Russian.
Main features:
Fully Functional
- Openbravo includes the full suite of functionalities that are common nowadays in an extended ERP: procurement, warehouse, project management, manufacturing, sales and financial processes. Basic CRM (Customer Relationship Management) and BI (Business Intelligence) are built in as well. Openbravo is already in production in companies spanning several industries, including distribution, services and manufacturing.
Truly integrated, truly an ERP
- Openbravo is different from other ERP solutions that piece together independent modules, often resulting in unnecessary complexity and unstable interfaces. From the start, Openbravo was designed with the whole at heart: all functionalities share a common architecture, philosophy, rules and user interface. Yet, you can still decide if and when you configure or use each functionality provided by Openbravo.
Open Source
- Openbravos open source license permits unrestricted access to the source code and makes it possible for an independent community of IT professionals to provide services without any type of vendor lock-in.
- Additionally, Openbravo provides a broad range of functionalities that can be easily customized to fit the common business needs of SMEs. We understand that each company is unique and has its own specific particularities. For these companies, that require a more particular customization, we offer something more: unrestricted access to the underlying source code to tailor to your specific needs. Youre not likely to get this kind of flexibility if you license a solution from a traditional vendor.
Revolutionary Architecture
- Openbravo is developed around a revolutionary architecture that results in a better way to build software applications. Through a combination of well known standards such as MVC (Model, View, Control) and MDD (Model Driven Development) an abstraction layer has been created that provides the automation of code generation. This strategy enables higher productivity than in other architectures or development platforms. Besides, it provides better quality because the files are coded always using the same rules and style. Consequently, if a specific requirement, not met by the standard solution, needs to be developed from scratch, coders can greatly benefit from a consistent coding framework.
Fast Implementation
- Openbravo can be installed in just a few hours. After having your business needs defined, it can be customized to fit them in a matter of days. In just a few weeks you can have your current business information migrated to the Openbravo, integrations with other systems done, specific requirements developed and your employees trained to start working with the new enterprise management system. Openbravo does not require any irreversible implementation decisions. This allows you to go into production faster. Moreover, the system can be easily adapted to changing business needs whenever required and have a flexible deployment of new functionalities.
Best-in-Class Usability
- Because Openbravo is a pure web-based ERP users access the application with just a web browser, a well known user interface environment. The user interface is generated based on rules and these are designed to minimize the user learning curve. We continue investing to have the best-in-class usability, adopting the most recent presentation techniques for web applications like AJAX.
Whats New in 2.30 Stable Release:
- Alarms can now be defined by users (with e-mail notification).
- An alarm is a periodic check that is performed to verify certain conditions.
- A complete revision of Accounting was made, improving reporting and tracking.
- Messages were also revised to ensure that they provide a clear explanation, a homogeneous style, and a consistent user interface.
- The applications user interface was redesigned using Dojo as the user interface library.
Download (MB)
Added: 2007-06-27 License: MPL (Mozilla Public License) Price:
861 downloads
XellPlan 1.2
XellPlan is a set of very simple php scripts to create plans for events. more>>
XellPlan is a set of very simple php scripts (by using a Mysql database) to create plans for events and provide a means for people (e.g. volunteers) to enlist for the various positions.
Think of it as a online version of a spreadsheet program, where some cells are editable by users.
NOTE: This is not mature software, rather a quick "hack"- im not very proud of it, but it works quite well.
Main features:
- Unlimited spreadsheet size
- Style cells (bold, italics, font size)
- Track changes (when did who enlist for what kind of job)
- Limit plan modification to a specific date range (e.g. "entry allowed starting dd-mm-yyy 12:00am")
- Password-protected plan entry
- Localizable to different languages (english/german supported out-of-the-box)
- System easy relocatable (just move the installation to another directory)
- Admin login / password protected plans need browser cookie support
Enhancements:
- This release implements the "entry end date" and "plan description" features requested by a user.
<<lessThink of it as a online version of a spreadsheet program, where some cells are editable by users.
NOTE: This is not mature software, rather a quick "hack"- im not very proud of it, but it works quite well.
Main features:
- Unlimited spreadsheet size
- Style cells (bold, italics, font size)
- Track changes (when did who enlist for what kind of job)
- Limit plan modification to a specific date range (e.g. "entry allowed starting dd-mm-yyy 12:00am")
- Password-protected plan entry
- Localizable to different languages (english/german supported out-of-the-box)
- System easy relocatable (just move the installation to another directory)
- Admin login / password protected plans need browser cookie support
Enhancements:
- This release implements the "entry end date" and "plan description" features requested by a user.
Download (0.032MB)
Added: 2006-01-25 License: GPL (GNU General Public License) Price:
1370 downloads
Genezzo::Plan::MakeAlgebra 0.63
Genezzo::Plan::MakeAlgebra is a Perl module that can convert a SQL parse tree to relational algebra. more>>
Genezzo::Plan::MakeAlgebra is a Perl module that can convert a SQL parse tree to relational algebra.
SYNOPSIS
use Genezzo::Plan::MakeAlgebra;
This module converts a SQL parse tree into a set of relational algebra operations.
<<lessSYNOPSIS
use Genezzo::Plan::MakeAlgebra;
This module converts a SQL parse tree into a set of relational algebra operations.
Download (0.45MB)
Added: 2006-08-16 License: Perl Artistic License Price:
1165 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 defined benefit retirement plan 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