2016-03-29 14:28:11 -04:00
|
|
|
# Liza Data Collection Framework
|
2014-01-16 22:51:07 -05:00
|
|
|
<!--
|
2015-05-01 10:59:43 -04:00
|
|
|
Copyright (C) 2015 LoVullo Associates, Inc.
|
2014-01-16 22:51:07 -05:00
|
|
|
|
|
|
|
This file is part of liza.
|
|
|
|
|
|
|
|
Copying and distribution of this file, with or without modification, are
|
|
|
|
permitted in any medium without royalty provided the copyright notice and
|
|
|
|
this notice are preserved. This file is offered as-is, without warranty
|
|
|
|
of any kind.
|
|
|
|
-->
|
|
|
|
|
2014-01-16 11:44:02 -05:00
|
|
|
|
|
|
|
Liza is a data collection, validation, and processing framework for JavaScript.
|
|
|
|
|
|
|
|
**This project is under active development; please check back later as we make
|
|
|
|
it available.**
|
2014-01-16 22:51:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
## About
|
|
|
|
The Liza Data Collection Framework—"Liza" for short—is an effort
|
|
|
|
to clean up, formalize, and expand upon a framework that was developed at
|
|
|
|
LoVullo Associates for collecting, validating, and processing large amounts
|
|
|
|
of user input for insurance quoting. As existing code is refactored or its
|
|
|
|
design improved upon, it will begin its life as part of Liza; please be
|
|
|
|
patient as the entire core framework makes its way into this repository and
|
|
|
|
others.
|
|
|
|
|
|
|
|
|
2015-05-01 10:59:43 -04:00
|
|
|
## Configuring
|
|
|
|
If your distribution does not contain a `configure' file in the project
|
|
|
|
root, then you likely have the sources as committed to the project
|
|
|
|
repository; you may generate the script by issuing the following command:
|
|
|
|
|
|
|
|
```
|
2016-03-29 14:22:28 -04:00
|
|
|
$ ./autogen.sh
|
2015-05-01 10:59:43 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
You may then see `./configure --help` for more information.
|
|
|
|
|
|
|
|
|
2014-01-16 22:51:07 -05:00
|
|
|
## License
|
|
|
|
Liza is free software: you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
2017-04-01 23:55:55 -04:00
|
|
|
The liza server is licensed differently: you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Affero General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the License,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
2014-01-16 22:51:07 -05:00
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
more details.
|
|
|
|
|
2017-04-01 23:55:55 -04:00
|
|
|
The full licenses are available in `COPYING` and `COPYING.AGPL`.
|
|
|
|
|