├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE.txt ├── MANIFEST.in ├── README ├── README.md ├── clean.sh ├── linting ├── fail-on-errs-only.sh ├── pylintrc └── pylintrc-ut ├── opentaxforms ├── Form.py ├── __init__.py ├── cmds.py ├── config.py ├── db.py ├── extractFillableFields.py ├── html.py ├── irs.py ├── link.py ├── main.py ├── postgres │ ├── db.sh │ └── db.sql ├── refs.py ├── schema.py ├── serve.py ├── static │ ├── allpdfnames.txt │ ├── css │ │ └── styles.css │ ├── html │ │ └── displayStorage.html │ ├── img │ │ ├── arrow_next_32px.png │ │ ├── arrow_next_gray_32px.png │ │ ├── arrow_prev_32px.png │ │ └── arrow_prev_gray_32px.png │ └── js │ │ ├── basil.js │ │ ├── copy_to_next_year.js │ │ ├── displayStorage.js │ │ ├── knockout-3.4.0.js │ │ └── opentaxforms.js ├── template │ └── form.html ├── ut.py ├── version.py └── xmp.py ├── requirements.txt ├── script ├── otf └── run.sh ├── setup.cfg ├── setup.py ├── test ├── README.md ├── __init__.py ├── forms-common │ ├── f1040-pdfinfo.pickl │ ├── f1040.js │ ├── f1040.pdf │ └── f1040.sqlite3 ├── forms-targetOutput │ ├── f1040-fmt.xml │ ├── f1040-p1.html │ ├── f1040-p2.html │ ├── f1040-refs.txt │ └── f1040-visiblz.txt ├── run_apiclient.sh ├── run_apiserver.sh ├── run_apitests.sh ├── run_commandline.sh ├── run_fasttests.sh ├── run_html5.sh ├── run_slowtests.sh └── test_opentaxforms.py ├── tox.ini └── vi.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/clean.sh -------------------------------------------------------------------------------- /linting/fail-on-errs-only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/linting/fail-on-errs-only.sh -------------------------------------------------------------------------------- /linting/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/linting/pylintrc -------------------------------------------------------------------------------- /linting/pylintrc-ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/linting/pylintrc-ut -------------------------------------------------------------------------------- /opentaxforms/Form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/Form.py -------------------------------------------------------------------------------- /opentaxforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opentaxforms/cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/cmds.py -------------------------------------------------------------------------------- /opentaxforms/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/config.py -------------------------------------------------------------------------------- /opentaxforms/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/db.py -------------------------------------------------------------------------------- /opentaxforms/extractFillableFields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/extractFillableFields.py -------------------------------------------------------------------------------- /opentaxforms/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/html.py -------------------------------------------------------------------------------- /opentaxforms/irs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/irs.py -------------------------------------------------------------------------------- /opentaxforms/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/link.py -------------------------------------------------------------------------------- /opentaxforms/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/main.py -------------------------------------------------------------------------------- /opentaxforms/postgres/db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/postgres/db.sh -------------------------------------------------------------------------------- /opentaxforms/postgres/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/postgres/db.sql -------------------------------------------------------------------------------- /opentaxforms/refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/refs.py -------------------------------------------------------------------------------- /opentaxforms/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/schema.py -------------------------------------------------------------------------------- /opentaxforms/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/serve.py -------------------------------------------------------------------------------- /opentaxforms/static/allpdfnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/allpdfnames.txt -------------------------------------------------------------------------------- /opentaxforms/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/css/styles.css -------------------------------------------------------------------------------- /opentaxforms/static/html/displayStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/html/displayStorage.html -------------------------------------------------------------------------------- /opentaxforms/static/img/arrow_next_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/img/arrow_next_32px.png -------------------------------------------------------------------------------- /opentaxforms/static/img/arrow_next_gray_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/img/arrow_next_gray_32px.png -------------------------------------------------------------------------------- /opentaxforms/static/img/arrow_prev_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/img/arrow_prev_32px.png -------------------------------------------------------------------------------- /opentaxforms/static/img/arrow_prev_gray_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/img/arrow_prev_gray_32px.png -------------------------------------------------------------------------------- /opentaxforms/static/js/basil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/js/basil.js -------------------------------------------------------------------------------- /opentaxforms/static/js/copy_to_next_year.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/js/copy_to_next_year.js -------------------------------------------------------------------------------- /opentaxforms/static/js/displayStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/js/displayStorage.js -------------------------------------------------------------------------------- /opentaxforms/static/js/knockout-3.4.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/js/knockout-3.4.0.js -------------------------------------------------------------------------------- /opentaxforms/static/js/opentaxforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/static/js/opentaxforms.js -------------------------------------------------------------------------------- /opentaxforms/template/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/template/form.html -------------------------------------------------------------------------------- /opentaxforms/ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/ut.py -------------------------------------------------------------------------------- /opentaxforms/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/version.py -------------------------------------------------------------------------------- /opentaxforms/xmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/opentaxforms/xmp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/script/otf -------------------------------------------------------------------------------- /script/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/script/run.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/setup.py -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/README.md -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/forms-common/f1040-pdfinfo.pickl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-common/f1040-pdfinfo.pickl -------------------------------------------------------------------------------- /test/forms-common/f1040.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-common/f1040.js -------------------------------------------------------------------------------- /test/forms-common/f1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-common/f1040.pdf -------------------------------------------------------------------------------- /test/forms-common/f1040.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-common/f1040.sqlite3 -------------------------------------------------------------------------------- /test/forms-targetOutput/f1040-fmt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-targetOutput/f1040-fmt.xml -------------------------------------------------------------------------------- /test/forms-targetOutput/f1040-p1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-targetOutput/f1040-p1.html -------------------------------------------------------------------------------- /test/forms-targetOutput/f1040-p2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-targetOutput/f1040-p2.html -------------------------------------------------------------------------------- /test/forms-targetOutput/f1040-refs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-targetOutput/f1040-refs.txt -------------------------------------------------------------------------------- /test/forms-targetOutput/f1040-visiblz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/forms-targetOutput/f1040-visiblz.txt -------------------------------------------------------------------------------- /test/run_apiclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/run_apiclient.sh -------------------------------------------------------------------------------- /test/run_apiserver.sh: -------------------------------------------------------------------------------- 1 | PYTHONPATH=.. python ../opentaxforms/serve.py 2 | -------------------------------------------------------------------------------- /test/run_apitests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/run_apitests.sh -------------------------------------------------------------------------------- /test/run_commandline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/run_commandline.sh -------------------------------------------------------------------------------- /test/run_fasttests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/run_fasttests.sh -------------------------------------------------------------------------------- /test/run_html5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/run_html5.sh -------------------------------------------------------------------------------- /test/run_slowtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/run_slowtests.sh -------------------------------------------------------------------------------- /test/test_opentaxforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/test/test_opentaxforms.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsaponara/opentaxforms/HEAD/tox.ini -------------------------------------------------------------------------------- /vi.sh: -------------------------------------------------------------------------------- 1 | cd opentaxforms 2 | vi [a-zF]*.py ../1040*.log 3 | --------------------------------------------------------------------------------