├── .gitignore ├── .gitmodules ├── .projectile ├── .projections.json ├── .travis.yml ├── CONTRIBUTING.md ├── ChangeLog ├── Dockerfile-dev ├── Dockerfile-pg-9.4-plv8-1.4.3 ├── Dockerfile-pg-9.4-plv8-1.4.4 ├── Dockerfile-pg-9.4-plv8-1.4.7 ├── MIT-LICENSE.txt ├── README.md ├── TODO.md ├── docker-run-tests.sh ├── docs ├── IMPLEMENTATION.md ├── fhirbase-from-pg.md ├── migration.md └── release-notes-0.0.3.md ├── env.sh ├── fhir ├── conceptmaps.json ├── profiles-resources.json ├── profiles-types.json ├── search-parameters.json ├── update.sh ├── v2-tables.json ├── v3-codesystems.json └── valuesets.json ├── npm-shrinkwrap.json ├── package.json ├── perf ├── README.md ├── data │ ├── cities.csv │ ├── first_names.csv │ ├── language-codes-iso-639-1-alpha-2.csv │ ├── last_names.csv │ ├── organization_names.csv │ └── street_names.csv ├── generate.sql ├── load.sql ├── perf └── provisioning │ ├── Dockerfile │ ├── bootstrap.yml │ ├── docker_setup.sh │ ├── ec2_start.yml │ ├── group_vars │ └── tag_performance_fhirbase │ ├── host_vars │ └── localhost:7022 │ ├── inventories │ ├── ec2 │ ├── ec2.ini │ ├── ec2.py │ └── local │ ├── perf.yml │ ├── ping.yml │ ├── tasks │ └── bootstrap.yml │ └── templates │ └── home │ └── user │ ├── .ssh │ └── config.j2 │ └── gitconfig.j2 ├── plpl.json ├── release.sh ├── releases └── .gitkeep ├── secure-decrypt.sh ├── secure-encrypt.sh ├── secure.tar.gz.asc ├── src ├── benchmark.coffee ├── compat.coffee ├── core.coffee ├── core │ ├── core.coffee │ ├── fhirbase_admin.coffee │ ├── fhirbase_version.coffee │ ├── namings.coffee │ ├── pg_meta.coffee │ ├── schema.coffee │ └── utils.coffee ├── fhir │ ├── bundle.coffee │ ├── conformance.coffee │ ├── core.coffee │ ├── crud.coffee │ ├── date.coffee │ ├── expand_params.coffee │ ├── fhir_version.coffee │ ├── filter.coffee │ ├── history.coffee │ ├── hooks.coffee │ ├── meta.coffee │ ├── meta_fs.coffee │ ├── meta_index.coffee │ ├── meta_pg.coffee │ ├── outcome.coffee │ ├── query_string.coffee │ ├── search.litcoffee │ ├── search_common.coffee │ ├── search_date.litcoffee │ ├── search_elements.coffee │ ├── search_helpers.coffee │ ├── search_include.coffee │ ├── search_number.litcoffee │ ├── search_quantity.litcoffee │ ├── search_reference.litcoffee │ ├── search_string.coffee │ ├── search_token.litcoffee │ ├── search_uri.litcoffee │ ├── terminology.coffee │ ├── transaction.coffee │ └── xpath.coffee ├── honey.coffee ├── lang.coffee ├── lispy.coffee └── unaccent.coffee ├── test ├── benchmark_spec.coffee ├── core │ ├── fhirbase_admin_spec.coffee │ ├── fhirbase_version_spec.coffee │ ├── pg_meta_spec.coffee │ └── schema_spec.coffee ├── fhir │ ├── conditions_spec.edn │ ├── conformance_spec.coffee │ ├── crud_spec.coffee │ ├── date_spec.coffee │ ├── date_spec.yaml │ ├── expand_params_spec.coffee │ ├── expand_params_spec.edn │ ├── fhir_version_spec.coffee │ ├── fixtures │ │ ├── address.json │ │ ├── human_name.json │ │ ├── patient.json │ │ ├── period.json │ │ ├── sample_transaction.yml │ │ ├── transaction_examples.yml │ │ ├── transaction_plans.yml │ │ └── valueset-ucum-common.json │ ├── history_spec.coffee │ ├── hooks_spec.coffee │ ├── indices_spec.coffee │ ├── meta_index_generative_spec.coffee │ ├── meta_index_spec.coffee │ ├── meta_index_spec.yaml │ ├── outcome_spec.coffee │ ├── query_string_spec.coffee │ ├── query_string_spec.edn │ ├── search │ │ ├── chained_search.yaml │ │ ├── date_search.yaml │ │ ├── elements_search.yaml │ │ ├── id_search.yaml │ │ ├── include_search.yaml │ │ ├── number_search.yaml │ │ ├── pagination_search.yaml │ │ ├── polymorphic_attr_search.yaml │ │ ├── quantity_search.yaml │ │ ├── sort_search.yaml │ │ ├── string_search.yaml │ │ ├── token_search.yaml │ │ └── uri_search.yaml │ ├── search__date_spec.coffee │ ├── search_elements_spec.coffee │ ├── search_elements_spec.yaml │ ├── search_number_spec.coffee │ ├── search_reference_spec.coffee │ ├── search_spec.coffee │ ├── search_string_spec.coffee │ ├── search_string_spec.yaml │ ├── search_token_spec.coffee │ ├── search_uri_spec.coffee │ ├── terminology_spec.coffee │ ├── transaction_spec.coffee │ ├── xpath_spec.coffee │ └── xpath_spec.yaml ├── helpers.coffee ├── honey_spec.coffee ├── honey_spec.edn ├── integration │ ├── issues │ │ ├── 122_transactions_are_not_rolled_back_on_failure_spec.coffee │ │ ├── 123_create_by_put_inside_transaction_doesnt_work_spec.coffee │ │ ├── 124_failed_transaction_response_doesnt_conform_bundle_specification_spec.coffee │ │ ├── 125_get_is_recognized_as_invalid_operation_in_transaction_spec.coffee │ │ └── 90_transaction_processing_rules_ordering_spec.coffee │ ├── sort_spec.coffee │ └── transaction_spec.coffee ├── integration_spec.coffee └── postgresql_reserved_keywords_spec.coffee ├── testall.sh ├── utils ├── filter_valuesets_for_travis.coffee ├── generate_patch.coffee └── generate_schema.coffee └── vagrant ├── Vagrantfile └── provision ├── provision-dependencies.sh └── provision-environment.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/.gitmodules -------------------------------------------------------------------------------- /.projectile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.projections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/.projections.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/ChangeLog -------------------------------------------------------------------------------- /Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/Dockerfile-dev -------------------------------------------------------------------------------- /Dockerfile-pg-9.4-plv8-1.4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/Dockerfile-pg-9.4-plv8-1.4.3 -------------------------------------------------------------------------------- /Dockerfile-pg-9.4-plv8-1.4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/Dockerfile-pg-9.4-plv8-1.4.4 -------------------------------------------------------------------------------- /Dockerfile-pg-9.4-plv8-1.4.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/Dockerfile-pg-9.4-plv8-1.4.7 -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/TODO.md -------------------------------------------------------------------------------- /docker-run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/docker-run-tests.sh -------------------------------------------------------------------------------- /docs/IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/docs/IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/fhirbase-from-pg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/docs/fhirbase-from-pg.md -------------------------------------------------------------------------------- /docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/docs/migration.md -------------------------------------------------------------------------------- /docs/release-notes-0.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/docs/release-notes-0.0.3.md -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/env.sh -------------------------------------------------------------------------------- /fhir/conceptmaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/conceptmaps.json -------------------------------------------------------------------------------- /fhir/profiles-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/profiles-resources.json -------------------------------------------------------------------------------- /fhir/profiles-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/profiles-types.json -------------------------------------------------------------------------------- /fhir/search-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/search-parameters.json -------------------------------------------------------------------------------- /fhir/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/update.sh -------------------------------------------------------------------------------- /fhir/v2-tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/v2-tables.json -------------------------------------------------------------------------------- /fhir/v3-codesystems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/v3-codesystems.json -------------------------------------------------------------------------------- /fhir/valuesets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/fhir/valuesets.json -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/package.json -------------------------------------------------------------------------------- /perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/README.md -------------------------------------------------------------------------------- /perf/data/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/data/cities.csv -------------------------------------------------------------------------------- /perf/data/first_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/data/first_names.csv -------------------------------------------------------------------------------- /perf/data/language-codes-iso-639-1-alpha-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/data/language-codes-iso-639-1-alpha-2.csv -------------------------------------------------------------------------------- /perf/data/last_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/data/last_names.csv -------------------------------------------------------------------------------- /perf/data/organization_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/data/organization_names.csv -------------------------------------------------------------------------------- /perf/data/street_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/data/street_names.csv -------------------------------------------------------------------------------- /perf/generate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/generate.sql -------------------------------------------------------------------------------- /perf/load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/load.sql -------------------------------------------------------------------------------- /perf/perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/perf -------------------------------------------------------------------------------- /perf/provisioning/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/Dockerfile -------------------------------------------------------------------------------- /perf/provisioning/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/bootstrap.yml -------------------------------------------------------------------------------- /perf/provisioning/docker_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/docker_setup.sh -------------------------------------------------------------------------------- /perf/provisioning/ec2_start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/ec2_start.yml -------------------------------------------------------------------------------- /perf/provisioning/group_vars/tag_performance_fhirbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/group_vars/tag_performance_fhirbase -------------------------------------------------------------------------------- /perf/provisioning/host_vars/localhost:7022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/host_vars/localhost:7022 -------------------------------------------------------------------------------- /perf/provisioning/inventories/ec2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/inventories/ec2 -------------------------------------------------------------------------------- /perf/provisioning/inventories/ec2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/inventories/ec2.ini -------------------------------------------------------------------------------- /perf/provisioning/inventories/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/inventories/ec2.py -------------------------------------------------------------------------------- /perf/provisioning/inventories/local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/inventories/local -------------------------------------------------------------------------------- /perf/provisioning/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/perf.yml -------------------------------------------------------------------------------- /perf/provisioning/ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/ping.yml -------------------------------------------------------------------------------- /perf/provisioning/tasks/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/tasks/bootstrap.yml -------------------------------------------------------------------------------- /perf/provisioning/templates/home/user/.ssh/config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/templates/home/user/.ssh/config.j2 -------------------------------------------------------------------------------- /perf/provisioning/templates/home/user/gitconfig.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/perf/provisioning/templates/home/user/gitconfig.j2 -------------------------------------------------------------------------------- /plpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/plpl.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/release.sh -------------------------------------------------------------------------------- /releases/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /secure-decrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/secure-decrypt.sh -------------------------------------------------------------------------------- /secure-encrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/secure-encrypt.sh -------------------------------------------------------------------------------- /secure.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/secure.tar.gz.asc -------------------------------------------------------------------------------- /src/benchmark.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/benchmark.coffee -------------------------------------------------------------------------------- /src/compat.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/compat.coffee -------------------------------------------------------------------------------- /src/core.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core.coffee -------------------------------------------------------------------------------- /src/core/core.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core/core.coffee -------------------------------------------------------------------------------- /src/core/fhirbase_admin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core/fhirbase_admin.coffee -------------------------------------------------------------------------------- /src/core/fhirbase_version.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core/fhirbase_version.coffee -------------------------------------------------------------------------------- /src/core/namings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core/namings.coffee -------------------------------------------------------------------------------- /src/core/pg_meta.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core/pg_meta.coffee -------------------------------------------------------------------------------- /src/core/schema.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core/schema.coffee -------------------------------------------------------------------------------- /src/core/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/core/utils.coffee -------------------------------------------------------------------------------- /src/fhir/bundle.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/bundle.coffee -------------------------------------------------------------------------------- /src/fhir/conformance.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/conformance.coffee -------------------------------------------------------------------------------- /src/fhir/core.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/core.coffee -------------------------------------------------------------------------------- /src/fhir/crud.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/crud.coffee -------------------------------------------------------------------------------- /src/fhir/date.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/date.coffee -------------------------------------------------------------------------------- /src/fhir/expand_params.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/expand_params.coffee -------------------------------------------------------------------------------- /src/fhir/fhir_version.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/fhir_version.coffee -------------------------------------------------------------------------------- /src/fhir/filter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/filter.coffee -------------------------------------------------------------------------------- /src/fhir/history.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/history.coffee -------------------------------------------------------------------------------- /src/fhir/hooks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/hooks.coffee -------------------------------------------------------------------------------- /src/fhir/meta.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/meta.coffee -------------------------------------------------------------------------------- /src/fhir/meta_fs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/meta_fs.coffee -------------------------------------------------------------------------------- /src/fhir/meta_index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/meta_index.coffee -------------------------------------------------------------------------------- /src/fhir/meta_pg.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/meta_pg.coffee -------------------------------------------------------------------------------- /src/fhir/outcome.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/outcome.coffee -------------------------------------------------------------------------------- /src/fhir/query_string.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/query_string.coffee -------------------------------------------------------------------------------- /src/fhir/search.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search.litcoffee -------------------------------------------------------------------------------- /src/fhir/search_common.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_common.coffee -------------------------------------------------------------------------------- /src/fhir/search_date.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_date.litcoffee -------------------------------------------------------------------------------- /src/fhir/search_elements.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_elements.coffee -------------------------------------------------------------------------------- /src/fhir/search_helpers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_helpers.coffee -------------------------------------------------------------------------------- /src/fhir/search_include.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_include.coffee -------------------------------------------------------------------------------- /src/fhir/search_number.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_number.litcoffee -------------------------------------------------------------------------------- /src/fhir/search_quantity.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_quantity.litcoffee -------------------------------------------------------------------------------- /src/fhir/search_reference.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_reference.litcoffee -------------------------------------------------------------------------------- /src/fhir/search_string.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_string.coffee -------------------------------------------------------------------------------- /src/fhir/search_token.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_token.litcoffee -------------------------------------------------------------------------------- /src/fhir/search_uri.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/search_uri.litcoffee -------------------------------------------------------------------------------- /src/fhir/terminology.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/terminology.coffee -------------------------------------------------------------------------------- /src/fhir/transaction.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/transaction.coffee -------------------------------------------------------------------------------- /src/fhir/xpath.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/fhir/xpath.coffee -------------------------------------------------------------------------------- /src/honey.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/honey.coffee -------------------------------------------------------------------------------- /src/lang.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/lang.coffee -------------------------------------------------------------------------------- /src/lispy.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/lispy.coffee -------------------------------------------------------------------------------- /src/unaccent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/src/unaccent.coffee -------------------------------------------------------------------------------- /test/benchmark_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/benchmark_spec.coffee -------------------------------------------------------------------------------- /test/core/fhirbase_admin_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/core/fhirbase_admin_spec.coffee -------------------------------------------------------------------------------- /test/core/fhirbase_version_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/core/fhirbase_version_spec.coffee -------------------------------------------------------------------------------- /test/core/pg_meta_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/core/pg_meta_spec.coffee -------------------------------------------------------------------------------- /test/core/schema_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/core/schema_spec.coffee -------------------------------------------------------------------------------- /test/fhir/conditions_spec.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/conditions_spec.edn -------------------------------------------------------------------------------- /test/fhir/conformance_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/conformance_spec.coffee -------------------------------------------------------------------------------- /test/fhir/crud_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/crud_spec.coffee -------------------------------------------------------------------------------- /test/fhir/date_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/date_spec.coffee -------------------------------------------------------------------------------- /test/fhir/date_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/date_spec.yaml -------------------------------------------------------------------------------- /test/fhir/expand_params_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/expand_params_spec.coffee -------------------------------------------------------------------------------- /test/fhir/expand_params_spec.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/expand_params_spec.edn -------------------------------------------------------------------------------- /test/fhir/fhir_version_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fhir_version_spec.coffee -------------------------------------------------------------------------------- /test/fhir/fixtures/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/address.json -------------------------------------------------------------------------------- /test/fhir/fixtures/human_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/human_name.json -------------------------------------------------------------------------------- /test/fhir/fixtures/patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/patient.json -------------------------------------------------------------------------------- /test/fhir/fixtures/period.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/period.json -------------------------------------------------------------------------------- /test/fhir/fixtures/sample_transaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/sample_transaction.yml -------------------------------------------------------------------------------- /test/fhir/fixtures/transaction_examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/transaction_examples.yml -------------------------------------------------------------------------------- /test/fhir/fixtures/transaction_plans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/transaction_plans.yml -------------------------------------------------------------------------------- /test/fhir/fixtures/valueset-ucum-common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/fixtures/valueset-ucum-common.json -------------------------------------------------------------------------------- /test/fhir/history_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/history_spec.coffee -------------------------------------------------------------------------------- /test/fhir/hooks_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/hooks_spec.coffee -------------------------------------------------------------------------------- /test/fhir/indices_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/indices_spec.coffee -------------------------------------------------------------------------------- /test/fhir/meta_index_generative_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/meta_index_generative_spec.coffee -------------------------------------------------------------------------------- /test/fhir/meta_index_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/meta_index_spec.coffee -------------------------------------------------------------------------------- /test/fhir/meta_index_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/meta_index_spec.yaml -------------------------------------------------------------------------------- /test/fhir/outcome_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/outcome_spec.coffee -------------------------------------------------------------------------------- /test/fhir/query_string_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/query_string_spec.coffee -------------------------------------------------------------------------------- /test/fhir/query_string_spec.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/query_string_spec.edn -------------------------------------------------------------------------------- /test/fhir/search/chained_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/chained_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/date_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/date_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/elements_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/elements_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/id_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/id_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/include_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/include_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/number_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/number_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/pagination_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/pagination_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/polymorphic_attr_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/polymorphic_attr_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/quantity_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/quantity_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/sort_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/sort_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/string_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/string_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/token_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/token_search.yaml -------------------------------------------------------------------------------- /test/fhir/search/uri_search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search/uri_search.yaml -------------------------------------------------------------------------------- /test/fhir/search__date_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search__date_spec.coffee -------------------------------------------------------------------------------- /test/fhir/search_elements_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_elements_spec.coffee -------------------------------------------------------------------------------- /test/fhir/search_elements_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_elements_spec.yaml -------------------------------------------------------------------------------- /test/fhir/search_number_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_number_spec.coffee -------------------------------------------------------------------------------- /test/fhir/search_reference_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_reference_spec.coffee -------------------------------------------------------------------------------- /test/fhir/search_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_spec.coffee -------------------------------------------------------------------------------- /test/fhir/search_string_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_string_spec.coffee -------------------------------------------------------------------------------- /test/fhir/search_string_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_string_spec.yaml -------------------------------------------------------------------------------- /test/fhir/search_token_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_token_spec.coffee -------------------------------------------------------------------------------- /test/fhir/search_uri_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/search_uri_spec.coffee -------------------------------------------------------------------------------- /test/fhir/terminology_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/terminology_spec.coffee -------------------------------------------------------------------------------- /test/fhir/transaction_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/transaction_spec.coffee -------------------------------------------------------------------------------- /test/fhir/xpath_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/xpath_spec.coffee -------------------------------------------------------------------------------- /test/fhir/xpath_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/fhir/xpath_spec.yaml -------------------------------------------------------------------------------- /test/helpers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/helpers.coffee -------------------------------------------------------------------------------- /test/honey_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/honey_spec.coffee -------------------------------------------------------------------------------- /test/honey_spec.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/honey_spec.edn -------------------------------------------------------------------------------- /test/integration/issues/122_transactions_are_not_rolled_back_on_failure_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration/issues/122_transactions_are_not_rolled_back_on_failure_spec.coffee -------------------------------------------------------------------------------- /test/integration/issues/123_create_by_put_inside_transaction_doesnt_work_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration/issues/123_create_by_put_inside_transaction_doesnt_work_spec.coffee -------------------------------------------------------------------------------- /test/integration/issues/124_failed_transaction_response_doesnt_conform_bundle_specification_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration/issues/124_failed_transaction_response_doesnt_conform_bundle_specification_spec.coffee -------------------------------------------------------------------------------- /test/integration/issues/125_get_is_recognized_as_invalid_operation_in_transaction_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration/issues/125_get_is_recognized_as_invalid_operation_in_transaction_spec.coffee -------------------------------------------------------------------------------- /test/integration/issues/90_transaction_processing_rules_ordering_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration/issues/90_transaction_processing_rules_ordering_spec.coffee -------------------------------------------------------------------------------- /test/integration/sort_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration/sort_spec.coffee -------------------------------------------------------------------------------- /test/integration/transaction_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration/transaction_spec.coffee -------------------------------------------------------------------------------- /test/integration_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/integration_spec.coffee -------------------------------------------------------------------------------- /test/postgresql_reserved_keywords_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/test/postgresql_reserved_keywords_spec.coffee -------------------------------------------------------------------------------- /testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/testall.sh -------------------------------------------------------------------------------- /utils/filter_valuesets_for_travis.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/utils/filter_valuesets_for_travis.coffee -------------------------------------------------------------------------------- /utils/generate_patch.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/utils/generate_patch.coffee -------------------------------------------------------------------------------- /utils/generate_schema.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/utils/generate_schema.coffee -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vagrant/provision/provision-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/vagrant/provision/provision-dependencies.sh -------------------------------------------------------------------------------- /vagrant/provision/provision-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhirbase/fhirbase-plv8/HEAD/vagrant/provision/provision-environment.sh --------------------------------------------------------------------------------