Mike Gerwitz
3fa464bc3a
This represents a portion of the refactoring that I had intended to do until I realized that there was a simpler solution to the problem that we were having (having proguic add stored calculated values to the defaults object). So ideally we'll continue extracting all quote init code out of `Server' and into `ProgramInit' in the future. * doc/server.texi (Liza Server): Mention `ProgramInit'. * src/program/ProgramInit.js: Add class. * src/server/DocumentServer.js: Use it. * src/server/Server.js (_progInit): Add private field. (__construct): Accept ProgramInit instance and assign to field. (initQuote): Use promise returned by `_getDefaultBucket'. (_getDefaultBucket): Proxy to `ProgramInit#init', which returns a promise. |
||
---|---|---|
bin | ||
build-aux | ||
conf | ||
doc | ||
src | ||
test | ||
tools | ||
.gitignore | ||
.gitlab-ci.yml | ||
COPYING | ||
COPYING.AGPL | ||
Makefile.am | ||
README.hacking | ||
README.md | ||
autogen.sh | ||
configure.ac | ||
index.js | ||
npm-shrinkwrap.json | ||
package.json.in | ||
yarn.lock |
README.md
Liza Data Collection Framework
Liza is a data collection, validation, and processing framework for JavaScript.
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 RT Specialty / LoVullo for collecting, validating, and processing large amounts of user input for insurance quoting.
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:
$ ./autogen.sh
You may then see ./configure --help
for more information.
Documentation
Compiled documentation for the latest release is available via our GitLab mirror, which uses the same build pipeline as we do on our internal GitLab instance. Available formats are:
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.
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.
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.
The full licenses are available in COPYING
and COPYING.AGPL
.