├── .gitattributes ├── .gitignore ├── .tgitconfig ├── APISpec ├── README.md ├── TestData │ └── in │ │ ├── OntarioTOB_BNLPSample.csv │ │ └── OntarioTOB_LegalCorpSample.csv └── openapi.yml ├── CODE_OF_CONDUCT.md ├── COMPLIANCE.yaml ├── CONTRIBUTING.md ├── DeployBcTobToProd-Jenkinsfile ├── DeployBcTobToProd-Jenkinsfile.bc-tob.pipeline.param ├── DeployBcTobToTest-Jenkinsfile ├── DeployBcTobToTest-Jenkinsfile.bc-tob.pipeline.param ├── DeployToProd-Jenkinsfile ├── DeployToProd-Jenkinsfile.ontario.pipeline.param ├── DeployToTest-Jenkinsfile ├── DeployToTest-Jenkinsfile.ontario.pipeline.param ├── DeployToTest-Jenkinsfile.pipeline.param ├── LICENSE ├── README.md ├── ResettingTheLedger.md ├── RunningLocal.md ├── SonarQube-Jenkinsfile ├── SonarQube-Jenkinsfile.bc-tob.pipeline.param ├── Zap-Jenkinsfile ├── Zap-Jenkinsfile.bc-tob.pipeline.param ├── docker ├── PROXY.md ├── README.md ├── docker-compose.yml ├── docker-mac.jpg └── manage ├── docs ├── .gitignore ├── 404.html ├── CLI-README.md ├── LICENSE ├── OrgBook-REST-Services.md ├── README.md ├── _config.yml ├── _posts │ └── 2017-10-04-welcome-to-jekyll.markdown ├── about.md ├── assets │ ├── icon │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ └── favicon.ico │ └── images │ │ ├── TheOrgBook-HighLevel.png │ │ └── TheOrgBook-HighLevel2.png ├── design │ ├── tob-api-components.puml │ └── tob-services.puml ├── favicon.ico ├── gemfile ├── index.md └── tobwallet.md ├── favicon.ico ├── icat-prep.sh ├── openshift ├── certificate.conf ├── manage ├── routes.config ├── settings.bc-tob.sh ├── settings.ontario.sh └── settings.sh ├── sonar-runner ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew └── gradlew.bat ├── tob-api ├── .gitignore ├── Jenkinsfile ├── Jenkinsfile.ontario.pipeline.param ├── Jenkinsfile.pipeline.param ├── README.md ├── api │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_user_display_name.py │ │ ├── 0003_auto_20181005_2140.py │ │ ├── 0004_auto_20190107_2203.py │ │ └── __init__.py │ └── models │ │ ├── User.py │ │ └── __init__.py ├── api_indy │ ├── __init__.py │ ├── indy │ │ ├── __init__.py │ │ ├── credential.py │ │ ├── credential_offer.py │ │ ├── issuer.py │ │ ├── proof.py │ │ └── proof_request.py │ ├── management │ │ └── commands │ │ │ ├── delete_topic.py │ │ │ ├── reprocess_credentials.py │ │ │ └── verify_credential_index.py │ ├── tob_anchor │ │ ├── __init__.py │ │ ├── boot.py │ │ ├── config.py │ │ ├── processor.py │ │ ├── solrqueue.py │ │ ├── urls.py │ │ └── views.py │ └── views │ │ ├── __init__.py │ │ └── indy.py ├── api_v2 │ ├── README.md │ ├── __init__.py │ ├── decorators │ │ ├── __init__.py │ │ └── jsonschema.py │ ├── docs │ │ └── images │ │ │ ├── tob.png │ │ │ └── tob.uml │ ├── feedback.py │ ├── indices │ │ ├── Name.py │ │ └── __init__.py │ ├── jsonschema │ │ ├── __init__.py │ │ ├── construct_proof.py │ │ ├── credential.py │ │ ├── credential_offer.py │ │ └── issuer.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_category.py │ │ ├── 0003_auto_20180821_1840.py │ │ ├── 0004_auto_20180821_2221.py │ │ ├── 0005_auto_20180824_2256.py │ │ ├── 0006_auto_20180824_2333.py │ │ ├── 0007_auto_20180827_2356.py │ │ ├── 0008_auto_20180829_1902.py │ │ ├── 0009_auto_20180907_1641.py │ │ ├── 0010_auto_20180907_2354.py │ │ ├── 0011_credentialtype_visible_fields.py │ │ ├── 0012_credential_inactive.py │ │ ├── 0013_auto_20180921_1844.py │ │ ├── 0014_auto_20180921_2334.py │ │ ├── 0015_auto_20181025_2152.py │ │ ├── 0016_auto_20181027_1802.py │ │ ├── 0017_auto_20181113_1753.py │ │ ├── 0018_credentialtype_last_issue_date.py │ │ ├── 0019_credentialtype_url.py │ │ ├── 0020_auto_20181207_1925.py │ │ ├── 0021_auto_20190107_2203.py │ │ ├── 0022_auto_20190109_0014.py │ │ ├── 0023_issuer_endpoint.py │ │ ├── 0023_name_type.py │ │ ├── 0024_merge_20190201_1913.py │ │ └── __init__.py │ ├── models │ │ ├── Address.py │ │ ├── Attribute.py │ │ ├── Auditable.py │ │ ├── Claim.py │ │ ├── Credential.py │ │ ├── CredentialSet.py │ │ ├── CredentialType.py │ │ ├── Issuer.py │ │ ├── Name.py │ │ ├── Schema.py │ │ ├── Topic.py │ │ ├── TopicRelationship.py │ │ └── __init__.py │ ├── processor │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bcgov │ │ │ ├── __init__.py │ │ │ └── entity_status.py │ │ └── string_helpers.py │ ├── search │ │ ├── __init__.py │ │ ├── filters.py │ │ └── index.py │ ├── search_indexes.py │ ├── search_test.py │ ├── serializers │ │ ├── __init__.py │ │ ├── rest.py │ │ └── search.py │ ├── signals.py │ ├── swagger.py │ ├── templates │ │ └── search │ │ │ └── indexes │ │ │ └── api_v2 │ │ │ └── credential_document.txt │ ├── urls.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ ├── auditable.py │ │ ├── misc.py │ │ ├── rest.py │ │ └── search.py ├── app-vonx.py ├── buildSolrSchema.sh ├── deleteTopic.sh ├── manage.py ├── openshift │ ├── .gitignore │ ├── django-build.bc-tob.param │ ├── django-build.ontario.param │ ├── django-build.param │ ├── django-deploy.bc-tob.dev.param │ ├── django-deploy.bc-tob.param │ ├── django-deploy.bc-tob.prod.param │ ├── django-deploy.bc-tob.test.param │ ├── django-deploy.dev.param │ ├── django-deploy.ontario.dev.param │ ├── django-deploy.ontario.param │ ├── django-deploy.ontario.prod.param │ ├── django-deploy.ontario.test.param │ ├── django-deploy.overrides.sh │ ├── django-deploy.param │ ├── django-deploy.prod.param │ ├── django-deploy.test.param │ ├── schema-spy-build.bc-tob.param │ ├── schema-spy-build.ontario.param │ ├── schema-spy-build.param │ ├── schema-spy-deploy.bc-tob.dev.param │ ├── schema-spy-deploy.bc-tob.param │ ├── schema-spy-deploy.bc-tob.prod.param │ ├── schema-spy-deploy.bc-tob.test.param │ ├── schema-spy-deploy.dev.param │ ├── schema-spy-deploy.ontario.dev.param │ ├── schema-spy-deploy.ontario.param │ ├── schema-spy-deploy.ontario.prod.param │ ├── schema-spy-deploy.ontario.test.param │ ├── schema-spy-deploy.overrides.sh │ ├── schema-spy-deploy.param │ ├── schema-spy-deploy.prod.param │ ├── schema-spy-deploy.test.param │ └── templates │ │ ├── django │ │ ├── django-build.json │ │ └── django-deploy.json │ │ └── schema-spy │ │ ├── Caddyfile │ │ ├── schema-spy-build.json │ │ └── schema-spy-deploy.json ├── rebuildSearchIndex.sh ├── reprocessCredentials.sh ├── requirements.txt ├── runManageCmd.sh ├── runPythonCmd.sh ├── test.sh ├── tob-api.pyproj ├── tob-api.sln ├── tob_api │ ├── __init__.py │ ├── auth.py │ ├── authentication.py │ ├── custom_settings_bcgov.py │ ├── custom_settings_ongov.py │ ├── database.py │ ├── haystack.py │ ├── inspector.py │ ├── pagination.py │ ├── permissions.py │ ├── rocketchat_hooks.py │ ├── settings.py │ ├── urls.py │ └── views.py ├── updateSearchIndex.sh ├── verifyIndexes.sh └── wsgi.py ├── tob-backup ├── config │ └── backup.conf └── openshift │ ├── backup-build.bc-tob.param │ ├── backup-build.ontario.param │ ├── backup-build.param │ ├── backup-deploy.bc-tob.dev.param │ ├── backup-deploy.bc-tob.param │ ├── backup-deploy.bc-tob.prod.param │ ├── backup-deploy.bc-tob.test.param │ ├── backup-deploy.dev.param │ ├── backup-deploy.ontario.dev.param │ ├── backup-deploy.ontario.param │ ├── backup-deploy.ontario.prod.param │ ├── backup-deploy.ontario.test.param │ ├── backup-deploy.overrides.sh │ ├── backup-deploy.param │ ├── backup-deploy.prod.param │ ├── backup-deploy.test.param │ └── templates │ ├── backup-build.json │ └── backup-deploy.json ├── tob-db ├── Jenkinsfile ├── Jenkinsfile.ontario.pipeline.param ├── Jenkinsfile.pipeline.param ├── PortForwardingaDatabase.md ├── README.md ├── config │ └── postgresql-cfg │ │ └── autovacuum.conf └── openshift │ ├── .gitignore │ ├── postgresql-build.bc-tob.param │ ├── postgresql-build.ontario.param │ ├── postgresql-build.param │ ├── postgresql-deploy.bc-tob.dev.param │ ├── postgresql-deploy.bc-tob.param │ ├── postgresql-deploy.bc-tob.prod.param │ ├── postgresql-deploy.bc-tob.test.param │ ├── postgresql-deploy.dev.param │ ├── postgresql-deploy.ontario.dev.param │ ├── postgresql-deploy.ontario.param │ ├── postgresql-deploy.ontario.prod.param │ ├── postgresql-deploy.ontario.test.param │ ├── postgresql-deploy.overrides.sh │ ├── postgresql-deploy.param │ ├── postgresql-deploy.prod.param │ ├── postgresql-deploy.test.param │ └── templates │ ├── postgresql-build.json │ └── postgresql-deploy.json ├── tob-solr ├── Jenkinsfile ├── Jenkinsfile.ontario.pipeline.param ├── Jenkinsfile.pipeline.param ├── cores │ └── the_org_book │ │ └── conf │ │ ├── currency.xml │ │ ├── elevate.xml │ │ ├── lang │ │ ├── contractions_ca.txt │ │ ├── contractions_fr.txt │ │ ├── contractions_ga.txt │ │ ├── contractions_it.txt │ │ ├── hyphenations_ga.txt │ │ ├── stemdict_nl.txt │ │ ├── stoptags_ja.txt │ │ ├── stopwords_ar.txt │ │ ├── stopwords_bg.txt │ │ ├── stopwords_ca.txt │ │ ├── stopwords_cz.txt │ │ ├── stopwords_da.txt │ │ ├── stopwords_de.txt │ │ ├── stopwords_el.txt │ │ ├── stopwords_en.txt │ │ ├── stopwords_es.txt │ │ ├── stopwords_eu.txt │ │ ├── stopwords_fa.txt │ │ ├── stopwords_fi.txt │ │ ├── stopwords_fr.txt │ │ ├── stopwords_ga.txt │ │ ├── stopwords_gl.txt │ │ ├── stopwords_hi.txt │ │ ├── stopwords_hu.txt │ │ ├── stopwords_hy.txt │ │ ├── stopwords_id.txt │ │ ├── stopwords_it.txt │ │ ├── stopwords_ja.txt │ │ ├── stopwords_lv.txt │ │ ├── stopwords_nl.txt │ │ ├── stopwords_no.txt │ │ ├── stopwords_pt.txt │ │ ├── stopwords_ro.txt │ │ ├── stopwords_ru.txt │ │ ├── stopwords_sv.txt │ │ ├── stopwords_th.txt │ │ ├── stopwords_tr.txt │ │ └── userdict_ja.txt │ │ ├── params.json │ │ ├── protwords.txt │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ ├── synonyms.txt │ │ └── wdfftypes.txt └── openshift │ ├── .gitignore │ ├── solr-base-build.bc-tob.param │ ├── solr-base-build.ontario.param │ ├── solr-base-build.param │ ├── solr-build.bc-tob.param │ ├── solr-build.ontario.param │ ├── solr-build.param │ ├── solr-deploy.bc-tob.dev.param │ ├── solr-deploy.bc-tob.param │ ├── solr-deploy.bc-tob.prod.param │ ├── solr-deploy.bc-tob.test.param │ ├── solr-deploy.dev.param │ ├── solr-deploy.ontario.dev.param │ ├── solr-deploy.ontario.param │ ├── solr-deploy.ontario.prod.param │ ├── solr-deploy.ontario.test.param │ ├── solr-deploy.param │ ├── solr-deploy.prod.param │ ├── solr-deploy.test.param │ └── templates │ ├── solr-base-build.json │ ├── solr-build.json │ └── solr-deploy.json ├── tob-wallet └── openshift │ ├── templates │ └── wallet-db-deploy.json │ ├── wallet-db-deploy.bc-tob.dev.param │ ├── wallet-db-deploy.bc-tob.param │ ├── wallet-db-deploy.bc-tob.prod.param │ ├── wallet-db-deploy.bc-tob.test.param │ ├── wallet-db-deploy.dev.param │ ├── wallet-db-deploy.ontario.dev.param │ ├── wallet-db-deploy.ontario.param │ ├── wallet-db-deploy.ontario.prod.param │ ├── wallet-db-deploy.ontario.test.param │ ├── wallet-db-deploy.overrides.sh │ ├── wallet-db-deploy.param │ ├── wallet-db-deploy.prod.param │ └── wallet-db-deploy.test.param └── tob-web ├── .editorconfig ├── .gitignore ├── .s2i └── bin │ └── save-artifacts ├── .s2iignore ├── ACCESSIBILITY.md ├── Jenkinsfile ├── Jenkinsfile.ontario.pipeline.param ├── Jenkinsfile.pipeline.param ├── LICENSE ├── README.md ├── TOBOntario_MainPage.png ├── ThemeDevelopment.md ├── angular.json ├── build-theme.js ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── openshift ├── .gitignore ├── angular-build.bc-tob.param ├── angular-build.ontario.param ├── angular-build.param ├── angular-on-nginx-build.bc-tob.param ├── angular-on-nginx-build.ontario.param ├── angular-on-nginx-build.param ├── angular-on-nginx-deploy.bc-tob.dev.param ├── angular-on-nginx-deploy.bc-tob.param ├── angular-on-nginx-deploy.bc-tob.prod.param ├── angular-on-nginx-deploy.bc-tob.test.param ├── angular-on-nginx-deploy.dev.param ├── angular-on-nginx-deploy.ontario.dev.param ├── angular-on-nginx-deploy.ontario.param ├── angular-on-nginx-deploy.ontario.prod.param ├── angular-on-nginx-deploy.ontario.test.param ├── angular-on-nginx-deploy.overrides.sh ├── angular-on-nginx-deploy.param ├── angular-on-nginx-deploy.prod.param ├── angular-on-nginx-deploy.test.param ├── config │ ├── blackListUpdater.sh │ └── blacklist.conf ├── nginx-runtime.bc-tob.param ├── nginx-runtime.ontario.param ├── nginx-runtime.param └── templates │ ├── angular-build.json │ ├── angular-on-nginx │ ├── Dockerfile │ ├── angular-on-nginx-build.json │ └── angular-on-nginx-deploy.json │ ├── nginx-runtime │ ├── Dockerfile │ ├── README.md │ ├── nginx-runtime.json │ ├── nginx.conf.template │ └── s2i │ │ └── bin │ │ ├── assemble │ │ ├── assemble-runtime │ │ └── run │ └── nodejs-build │ └── Dockerfile ├── package-lock.json ├── package.json ├── protractor.conf.js ├── screenshot_mainpage.png ├── src ├── app │ ├── app-config.service.ts │ ├── app-footer │ │ └── app-footer.component.ts │ ├── app-header │ │ └── app-header.component.ts │ ├── app-routing.module.ts │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── core │ │ ├── interfaces │ │ │ ├── i-credential-set.interface.ts │ │ │ ├── i-credential-type.interface.ts │ │ │ ├── i-credential.interface.ts │ │ │ └── i-issuer.interface.ts │ │ └── services │ │ │ ├── http.service.spec.ts │ │ │ └── http.service.ts │ ├── cred │ │ ├── cred.module.ts │ │ ├── form.component.ts │ │ ├── list.component.ts │ │ ├── name-panel.component.ts │ │ ├── related-creds.component.ts │ │ ├── timeline-cred.component.ts │ │ ├── timeline-formatter.service.ts │ │ ├── timeline.component.ts │ │ ├── topic-archive-list-header.component.ts │ │ ├── topic-archive-list-item │ │ │ ├── topic-archive-list-item.component.spec.ts │ │ │ └── topic-archive-list-item.component.ts │ │ └── type-list.component.ts │ ├── data-types.ts │ ├── general-data.service.spec.ts │ ├── general-data.service.ts │ ├── home │ │ └── home.component.ts │ ├── info │ │ └── contact.component.ts │ ├── issuer │ │ └── form.component.ts │ ├── search │ │ ├── filters.component.ts │ │ ├── form.component.ts │ │ ├── input.component.ts │ │ ├── nav.component.ts │ │ └── search.module.ts │ ├── timeline │ │ ├── models │ │ │ ├── axis.model.ts │ │ │ ├── i-timeline.ts │ │ │ ├── marker.model.ts │ │ │ ├── row.model.ts │ │ │ ├── scale.model.ts │ │ │ ├── slot-state.model.ts │ │ │ ├── slot.model.ts │ │ │ ├── timeline-utils.ts │ │ │ └── timeline.ts │ │ ├── services │ │ │ ├── timeline.service.spec.ts │ │ │ └── timeline.service.ts │ │ └── view.component.ts │ ├── topic │ │ ├── form.component.ts │ │ ├── list.component.ts │ │ ├── relations-list.component.ts │ │ ├── services │ │ │ ├── topic-state.service.spec.ts │ │ │ └── topic-state.service.ts │ │ └── topic.module.ts │ └── util │ │ ├── address.component.ts │ │ ├── attribute-list.component.ts │ │ ├── attribute.component.ts │ │ ├── breadcrumb.component.ts │ │ ├── date-format.pipe.ts │ │ ├── error-message.component.ts │ │ ├── loading-indicator.component.ts │ │ ├── not-found.component.ts │ │ ├── number-shorten.pipe.ts │ │ ├── pagescroll.component.ts │ │ ├── resolve-url.pipe.ts │ │ ├── share-link.component.ts │ │ ├── util.module.ts │ │ └── with-lang.directive.ts ├── environments │ ├── environment.prod.ts │ ├── environment.test.ts │ └── environment.ts ├── main.ts ├── polyfills.ts ├── test.ts ├── themes │ ├── bcgov │ │ ├── _bootstrap.scss │ │ ├── _common.scss │ │ ├── _theme.scss │ │ ├── app-footer │ │ │ └── app-footer.component.html │ │ ├── app-header │ │ │ ├── app-header.component.html │ │ │ └── app-header.component.scss │ │ ├── assets │ │ │ ├── bootstrap │ │ │ │ ├── bcid-192x192.png │ │ │ │ ├── bcid-512x512.png │ │ │ │ ├── bcid-apple-icon.svg │ │ │ │ ├── bcid-apple-touch-icon.png │ │ │ │ ├── bcid-favicon-16x16.png │ │ │ │ ├── bcid-favicon-32x32.png │ │ │ │ ├── bcid-logo-en.svg │ │ │ │ ├── bcid-logo-fr.svg │ │ │ │ ├── bcid-logo-rev-en.svg │ │ │ │ ├── bcid-logo-rev-fr.svg │ │ │ │ ├── bcid-mstile-144x144.png │ │ │ │ ├── bcid-mstile-150x150.png │ │ │ │ ├── bcid-mstile-310x150.png │ │ │ │ ├── bcid-mstile-310x310.png │ │ │ │ ├── bcid-mstile-70x70.png │ │ │ │ ├── bcid-symbol-rev.svg │ │ │ │ ├── bcid-symbol.svg │ │ │ │ ├── bcid02-favicon-32x32.png │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── gov3_bc_logo.png │ │ │ │ └── manifest.json │ │ │ ├── card-image.jpg │ │ │ ├── config.json │ │ │ ├── i18n │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ │ ├── img │ │ │ │ └── logos │ │ │ │ │ ├── DIACC-Logo-BL.png │ │ │ │ │ ├── World_Economic_Forum_logo.svg │ │ │ │ │ └── cfib_logo.jpg │ │ │ └── orgbook-banner.jpg │ │ ├── cred │ │ │ ├── list.component.html │ │ │ └── name-panel.component.html │ │ ├── home │ │ │ ├── home.component.custom.scss │ │ │ └── home.component.html │ │ ├── index.html │ │ └── util │ │ │ └── pagescroll.component.html │ ├── default │ │ ├── _bootstrap.override.scss │ │ ├── _bootstrap.scss │ │ ├── _common.scss │ │ ├── _custom.scss │ │ ├── _default.scss │ │ ├── _panels.scss │ │ ├── _theme.scss │ │ ├── app-footer │ │ │ ├── app-footer.component.html │ │ │ └── app-footer.component.scss │ │ ├── app-header │ │ │ ├── app-header.component.custom.scss │ │ │ ├── app-header.component.html │ │ │ └── app-header.component.scss │ │ ├── app │ │ │ ├── app.component.custom.scss │ │ │ ├── app.component.html │ │ │ └── app.component.scss │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── config.json │ │ │ ├── filters.svg │ │ │ ├── i18n │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ │ ├── locales.json │ │ │ ├── map.png │ │ │ ├── recipes │ │ │ │ └── start_a_restaurant.json │ │ │ └── testdata │ │ │ │ ├── creds.json │ │ │ │ ├── credtypes.json │ │ │ │ ├── issuers.json │ │ │ │ ├── names.json │ │ │ │ ├── subjects.json │ │ │ │ └── topics.json │ │ ├── cred │ │ │ ├── cred.custom.scss │ │ │ ├── cred.scss │ │ │ ├── form.component.html │ │ │ ├── form.component.scss │ │ │ ├── list.component.html │ │ │ ├── list.component.scss │ │ │ ├── name-panel.component.html │ │ │ ├── name-panel.component.scss │ │ │ ├── related-cred.component.custom.scss │ │ │ ├── related-cred.component.html │ │ │ ├── related-cred.component.scss │ │ │ ├── timeline-cred.component.html │ │ │ ├── timeline.component.custom.scss │ │ │ ├── timeline.component.html │ │ │ ├── timeline.component.scss │ │ │ ├── topic-archive-list-header.component.html │ │ │ ├── topic-archive-list-header.component.scss │ │ │ ├── topic-archive-list-item.component.html │ │ │ ├── topic-archive-list-item.component.scss │ │ │ ├── type-list.component.html │ │ │ └── type-list.component.scss │ │ ├── favicon.ico │ │ ├── home │ │ │ ├── home.component.custom.scss │ │ │ ├── home.component.html │ │ │ └── home.component.scss │ │ ├── index.html │ │ ├── info │ │ │ ├── contact.component.custom.scss │ │ │ ├── contact.component.html │ │ │ └── contact.component.scss │ │ ├── issuer │ │ │ ├── form.component.custom.scss │ │ │ ├── form.component.html │ │ │ └── form.component.scss │ │ ├── robots.txt │ │ ├── search │ │ │ ├── filters.component.html │ │ │ ├── filters.component.scss │ │ │ ├── form.component.custom.scss │ │ │ ├── form.component.html │ │ │ ├── form.component.scss │ │ │ ├── input.component.custom.scss │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ ├── nav.component.html │ │ │ └── nav.component.scss │ │ ├── styles.scss │ │ ├── timeline │ │ │ └── timeline.scss │ │ ├── topic │ │ │ ├── form.component.custom.scss │ │ │ ├── form.component.html │ │ │ ├── form.component.scss │ │ │ ├── list.component.html │ │ │ ├── list.component.scss │ │ │ └── relations-list.component.html │ │ └── util │ │ │ ├── attribute-list.component.html │ │ │ ├── attribute.component.html │ │ │ ├── breadcrumb.component.html │ │ │ ├── breadcrumb.component.scss │ │ │ ├── error-message.component.html │ │ │ ├── loading-indicator.component.html │ │ │ ├── not-found.component.html │ │ │ ├── pagescroll.component.html │ │ │ ├── pagescroll.component.scss │ │ │ ├── share-link.component.html │ │ │ └── share-link.component.scss │ └── ongov │ │ ├── _bootstrap.override.scss │ │ ├── _theme.scss │ │ ├── app-footer │ │ └── app-footer.component.html │ │ ├── app-header │ │ ├── app-header.component.custom.scss │ │ └── app-header.component.html │ │ ├── assets │ │ ├── beaker.png │ │ ├── cert.svg │ │ ├── config.json │ │ ├── footer-swoop.gif │ │ ├── i18n │ │ │ ├── en.json │ │ │ └── fr.json │ │ └── ontario-logo.png │ │ ├── cred │ │ ├── cred.custom.scss │ │ ├── form.component.html │ │ ├── list.component.html │ │ ├── name-panel.component.html │ │ └── related-cred.component.html │ │ ├── favicon.ico │ │ ├── home │ │ ├── home.component.custom.scss │ │ └── home.component.html │ │ ├── index.html │ │ ├── issuer │ │ └── form.component.html │ │ ├── search │ │ ├── form.component.custom.scss │ │ ├── form.component.html │ │ ├── input.component.custom.scss │ │ └── input.component.html │ │ └── topic │ │ └── form.component.html ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── watch-theme.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/.gitignore -------------------------------------------------------------------------------- /.tgitconfig: -------------------------------------------------------------------------------- 1 | [tgit] 2 | warnnosignedoffby = true 3 | -------------------------------------------------------------------------------- /APISpec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/APISpec/README.md -------------------------------------------------------------------------------- /APISpec/TestData/in/OntarioTOB_BNLPSample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/APISpec/TestData/in/OntarioTOB_BNLPSample.csv -------------------------------------------------------------------------------- /APISpec/TestData/in/OntarioTOB_LegalCorpSample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/APISpec/TestData/in/OntarioTOB_LegalCorpSample.csv -------------------------------------------------------------------------------- /APISpec/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/APISpec/openapi.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPLIANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/COMPLIANCE.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DeployBcTobToProd-Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployBcTobToProd-Jenkinsfile -------------------------------------------------------------------------------- /DeployBcTobToProd-Jenkinsfile.bc-tob.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployBcTobToProd-Jenkinsfile.bc-tob.pipeline.param -------------------------------------------------------------------------------- /DeployBcTobToTest-Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployBcTobToTest-Jenkinsfile -------------------------------------------------------------------------------- /DeployBcTobToTest-Jenkinsfile.bc-tob.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployBcTobToTest-Jenkinsfile.bc-tob.pipeline.param -------------------------------------------------------------------------------- /DeployToProd-Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployToProd-Jenkinsfile -------------------------------------------------------------------------------- /DeployToProd-Jenkinsfile.ontario.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployToProd-Jenkinsfile.ontario.pipeline.param -------------------------------------------------------------------------------- /DeployToTest-Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployToTest-Jenkinsfile -------------------------------------------------------------------------------- /DeployToTest-Jenkinsfile.ontario.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployToTest-Jenkinsfile.ontario.pipeline.param -------------------------------------------------------------------------------- /DeployToTest-Jenkinsfile.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/DeployToTest-Jenkinsfile.pipeline.param -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/README.md -------------------------------------------------------------------------------- /ResettingTheLedger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/ResettingTheLedger.md -------------------------------------------------------------------------------- /RunningLocal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/RunningLocal.md -------------------------------------------------------------------------------- /SonarQube-Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/SonarQube-Jenkinsfile -------------------------------------------------------------------------------- /SonarQube-Jenkinsfile.bc-tob.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/SonarQube-Jenkinsfile.bc-tob.pipeline.param -------------------------------------------------------------------------------- /Zap-Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/Zap-Jenkinsfile -------------------------------------------------------------------------------- /Zap-Jenkinsfile.bc-tob.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/Zap-Jenkinsfile.bc-tob.pipeline.param -------------------------------------------------------------------------------- /docker/PROXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docker/PROXY.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docker/docker-mac.jpg -------------------------------------------------------------------------------- /docker/manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docker/manage -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CLI-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/CLI-README.md -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/OrgBook-REST-Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/OrgBook-REST-Services.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_posts/2017-10-04-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/_posts/2017-10-04-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/assets/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/assets/icon/favicon-16x16.png -------------------------------------------------------------------------------- /docs/assets/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/assets/icon/favicon-32x32.png -------------------------------------------------------------------------------- /docs/assets/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/assets/icon/favicon-96x96.png -------------------------------------------------------------------------------- /docs/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/assets/icon/favicon.ico -------------------------------------------------------------------------------- /docs/assets/images/TheOrgBook-HighLevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/assets/images/TheOrgBook-HighLevel.png -------------------------------------------------------------------------------- /docs/assets/images/TheOrgBook-HighLevel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/assets/images/TheOrgBook-HighLevel2.png -------------------------------------------------------------------------------- /docs/design/tob-api-components.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/design/tob-api-components.puml -------------------------------------------------------------------------------- /docs/design/tob-services.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/design/tob-services.puml -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/gemfile -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tobwallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/docs/tobwallet.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/favicon.ico -------------------------------------------------------------------------------- /icat-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/icat-prep.sh -------------------------------------------------------------------------------- /openshift/certificate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/openshift/certificate.conf -------------------------------------------------------------------------------- /openshift/manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/openshift/manage -------------------------------------------------------------------------------- /openshift/routes.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/openshift/routes.config -------------------------------------------------------------------------------- /openshift/settings.bc-tob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/openshift/settings.bc-tob.sh -------------------------------------------------------------------------------- /openshift/settings.ontario.sh: -------------------------------------------------------------------------------- 1 | export PROJECT_NAMESPACE="ontvon-von" -------------------------------------------------------------------------------- /openshift/settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/openshift/settings.sh -------------------------------------------------------------------------------- /sonar-runner/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/sonar-runner/build.gradle -------------------------------------------------------------------------------- /sonar-runner/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/sonar-runner/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /sonar-runner/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/sonar-runner/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /sonar-runner/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/sonar-runner/gradlew -------------------------------------------------------------------------------- /sonar-runner/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/sonar-runner/gradlew.bat -------------------------------------------------------------------------------- /tob-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/.gitignore -------------------------------------------------------------------------------- /tob-api/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/Jenkinsfile -------------------------------------------------------------------------------- /tob-api/Jenkinsfile.ontario.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/Jenkinsfile.ontario.pipeline.param -------------------------------------------------------------------------------- /tob-api/Jenkinsfile.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/Jenkinsfile.pipeline.param -------------------------------------------------------------------------------- /tob-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/README.md -------------------------------------------------------------------------------- /tob-api/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /tob-api/api/migrations/0002_user_display_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api/migrations/0002_user_display_name.py -------------------------------------------------------------------------------- /tob-api/api/migrations/0003_auto_20181005_2140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api/migrations/0003_auto_20181005_2140.py -------------------------------------------------------------------------------- /tob-api/api/migrations/0004_auto_20190107_2203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api/migrations/0004_auto_20190107_2203.py -------------------------------------------------------------------------------- /tob-api/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api/models/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api/models/User.py -------------------------------------------------------------------------------- /tob-api/api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api/models/__init__.py -------------------------------------------------------------------------------- /tob-api/api_indy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_indy/indy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_indy/indy/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/indy/credential.py -------------------------------------------------------------------------------- /tob-api/api_indy/indy/credential_offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/indy/credential_offer.py -------------------------------------------------------------------------------- /tob-api/api_indy/indy/issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/indy/issuer.py -------------------------------------------------------------------------------- /tob-api/api_indy/indy/proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/indy/proof.py -------------------------------------------------------------------------------- /tob-api/api_indy/indy/proof_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/indy/proof_request.py -------------------------------------------------------------------------------- /tob-api/api_indy/management/commands/delete_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/management/commands/delete_topic.py -------------------------------------------------------------------------------- /tob-api/api_indy/management/commands/reprocess_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/management/commands/reprocess_credentials.py -------------------------------------------------------------------------------- /tob-api/api_indy/management/commands/verify_credential_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/management/commands/verify_credential_index.py -------------------------------------------------------------------------------- /tob-api/api_indy/tob_anchor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_indy/tob_anchor/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/tob_anchor/boot.py -------------------------------------------------------------------------------- /tob-api/api_indy/tob_anchor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/tob_anchor/config.py -------------------------------------------------------------------------------- /tob-api/api_indy/tob_anchor/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/tob_anchor/processor.py -------------------------------------------------------------------------------- /tob-api/api_indy/tob_anchor/solrqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/tob_anchor/solrqueue.py -------------------------------------------------------------------------------- /tob-api/api_indy/tob_anchor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/tob_anchor/urls.py -------------------------------------------------------------------------------- /tob-api/api_indy/tob_anchor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/tob_anchor/views.py -------------------------------------------------------------------------------- /tob-api/api_indy/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_indy/views/indy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_indy/views/indy.py -------------------------------------------------------------------------------- /tob-api/api_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/README.md -------------------------------------------------------------------------------- /tob-api/api_v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/decorators/jsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/decorators/jsonschema.py -------------------------------------------------------------------------------- /tob-api/api_v2/docs/images/tob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/docs/images/tob.png -------------------------------------------------------------------------------- /tob-api/api_v2/docs/images/tob.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/docs/images/tob.uml -------------------------------------------------------------------------------- /tob-api/api_v2/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/feedback.py -------------------------------------------------------------------------------- /tob-api/api_v2/indices/Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/indices/Name.py -------------------------------------------------------------------------------- /tob-api/api_v2/indices/__init__.py: -------------------------------------------------------------------------------- 1 | from . import Name -------------------------------------------------------------------------------- /tob-api/api_v2/jsonschema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/jsonschema/construct_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/jsonschema/construct_proof.py -------------------------------------------------------------------------------- /tob-api/api_v2/jsonschema/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/jsonschema/credential.py -------------------------------------------------------------------------------- /tob-api/api_v2/jsonschema/credential_offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/jsonschema/credential_offer.py -------------------------------------------------------------------------------- /tob-api/api_v2/jsonschema/issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/jsonschema/issuer.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0001_initial.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0002_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0002_category.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0003_auto_20180821_1840.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0003_auto_20180821_1840.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0004_auto_20180821_2221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0004_auto_20180821_2221.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0005_auto_20180824_2256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0005_auto_20180824_2256.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0006_auto_20180824_2333.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0006_auto_20180824_2333.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0007_auto_20180827_2356.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0007_auto_20180827_2356.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0008_auto_20180829_1902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0008_auto_20180829_1902.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0009_auto_20180907_1641.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0009_auto_20180907_1641.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0010_auto_20180907_2354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0010_auto_20180907_2354.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0011_credentialtype_visible_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0011_credentialtype_visible_fields.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0012_credential_inactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0012_credential_inactive.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0013_auto_20180921_1844.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0013_auto_20180921_1844.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0014_auto_20180921_2334.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0014_auto_20180921_2334.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0015_auto_20181025_2152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0015_auto_20181025_2152.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0016_auto_20181027_1802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0016_auto_20181027_1802.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0017_auto_20181113_1753.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0017_auto_20181113_1753.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0018_credentialtype_last_issue_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0018_credentialtype_last_issue_date.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0019_credentialtype_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0019_credentialtype_url.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0020_auto_20181207_1925.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0020_auto_20181207_1925.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0021_auto_20190107_2203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0021_auto_20190107_2203.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0022_auto_20190109_0014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0022_auto_20190109_0014.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0023_issuer_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0023_issuer_endpoint.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0023_name_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0023_name_type.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/0024_merge_20190201_1913.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/migrations/0024_merge_20190201_1913.py -------------------------------------------------------------------------------- /tob-api/api_v2/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/models/Address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Address.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Attribute.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Auditable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Auditable.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Claim.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Credential.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/CredentialSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/CredentialSet.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/CredentialType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/CredentialType.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Issuer.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Name.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Schema.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/Topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/Topic.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/TopicRelationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/TopicRelationship.py -------------------------------------------------------------------------------- /tob-api/api_v2/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/models/__init__.py -------------------------------------------------------------------------------- /tob-api/api_v2/processor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/processor/README.md -------------------------------------------------------------------------------- /tob-api/api_v2/processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/processor/bcgov/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/processor/bcgov/entity_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/processor/bcgov/entity_status.py -------------------------------------------------------------------------------- /tob-api/api_v2/processor/string_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/processor/string_helpers.py -------------------------------------------------------------------------------- /tob-api/api_v2/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/search/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/search/filters.py -------------------------------------------------------------------------------- /tob-api/api_v2/search/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/search/index.py -------------------------------------------------------------------------------- /tob-api/api_v2/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/search_indexes.py -------------------------------------------------------------------------------- /tob-api/api_v2/search_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/search_test.py -------------------------------------------------------------------------------- /tob-api/api_v2/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/serializers/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/serializers/rest.py -------------------------------------------------------------------------------- /tob-api/api_v2/serializers/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/serializers/search.py -------------------------------------------------------------------------------- /tob-api/api_v2/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/signals.py -------------------------------------------------------------------------------- /tob-api/api_v2/swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/swagger.py -------------------------------------------------------------------------------- /tob-api/api_v2/templates/search/indexes/api_v2/credential_document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/templates/search/indexes/api_v2/credential_document.txt -------------------------------------------------------------------------------- /tob-api/api_v2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/urls.py -------------------------------------------------------------------------------- /tob-api/api_v2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/utils.py -------------------------------------------------------------------------------- /tob-api/api_v2/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-api/api_v2/views/auditable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/views/auditable.py -------------------------------------------------------------------------------- /tob-api/api_v2/views/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/views/misc.py -------------------------------------------------------------------------------- /tob-api/api_v2/views/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/views/rest.py -------------------------------------------------------------------------------- /tob-api/api_v2/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/api_v2/views/search.py -------------------------------------------------------------------------------- /tob-api/app-vonx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/app-vonx.py -------------------------------------------------------------------------------- /tob-api/buildSolrSchema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/buildSolrSchema.sh -------------------------------------------------------------------------------- /tob-api/deleteTopic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/deleteTopic.sh -------------------------------------------------------------------------------- /tob-api/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/manage.py -------------------------------------------------------------------------------- /tob-api/openshift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/.gitignore -------------------------------------------------------------------------------- /tob-api/openshift/django-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-build.bc-tob.param -------------------------------------------------------------------------------- /tob-api/openshift/django-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-build.ontario.param -------------------------------------------------------------------------------- /tob-api/openshift/django-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-build.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.bc-tob.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.bc-tob.dev.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.bc-tob.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.bc-tob.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.bc-tob.prod.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.bc-tob.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.bc-tob.test.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.dev.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.ontario.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.ontario.dev.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.ontario.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.ontario.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.ontario.prod.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.ontario.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.ontario.test.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.overrides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.overrides.sh -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.prod.param -------------------------------------------------------------------------------- /tob-api/openshift/django-deploy.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/django-deploy.test.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-build.bc-tob.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-build.ontario.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-build.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.bc-tob.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.bc-tob.dev.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.bc-tob.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.bc-tob.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.bc-tob.prod.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.bc-tob.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.bc-tob.test.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.dev.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.ontario.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.ontario.dev.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.ontario.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.ontario.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.ontario.prod.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.ontario.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.ontario.test.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.overrides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.overrides.sh -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.prod.param -------------------------------------------------------------------------------- /tob-api/openshift/schema-spy-deploy.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/schema-spy-deploy.test.param -------------------------------------------------------------------------------- /tob-api/openshift/templates/django/django-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/templates/django/django-build.json -------------------------------------------------------------------------------- /tob-api/openshift/templates/django/django-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/templates/django/django-deploy.json -------------------------------------------------------------------------------- /tob-api/openshift/templates/schema-spy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/templates/schema-spy/Caddyfile -------------------------------------------------------------------------------- /tob-api/openshift/templates/schema-spy/schema-spy-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/templates/schema-spy/schema-spy-build.json -------------------------------------------------------------------------------- /tob-api/openshift/templates/schema-spy/schema-spy-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/openshift/templates/schema-spy/schema-spy-deploy.json -------------------------------------------------------------------------------- /tob-api/rebuildSearchIndex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/rebuildSearchIndex.sh -------------------------------------------------------------------------------- /tob-api/reprocessCredentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/reprocessCredentials.sh -------------------------------------------------------------------------------- /tob-api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/requirements.txt -------------------------------------------------------------------------------- /tob-api/runManageCmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/runManageCmd.sh -------------------------------------------------------------------------------- /tob-api/runPythonCmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/runPythonCmd.sh -------------------------------------------------------------------------------- /tob-api/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/test.sh -------------------------------------------------------------------------------- /tob-api/tob-api.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob-api.pyproj -------------------------------------------------------------------------------- /tob-api/tob-api.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob-api.sln -------------------------------------------------------------------------------- /tob-api/tob_api/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Package for tob_api. 3 | """ 4 | -------------------------------------------------------------------------------- /tob-api/tob_api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/auth.py -------------------------------------------------------------------------------- /tob-api/tob_api/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/authentication.py -------------------------------------------------------------------------------- /tob-api/tob_api/custom_settings_bcgov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/custom_settings_bcgov.py -------------------------------------------------------------------------------- /tob-api/tob_api/custom_settings_ongov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/custom_settings_ongov.py -------------------------------------------------------------------------------- /tob-api/tob_api/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/database.py -------------------------------------------------------------------------------- /tob-api/tob_api/haystack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/haystack.py -------------------------------------------------------------------------------- /tob-api/tob_api/inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/inspector.py -------------------------------------------------------------------------------- /tob-api/tob_api/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/pagination.py -------------------------------------------------------------------------------- /tob-api/tob_api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/permissions.py -------------------------------------------------------------------------------- /tob-api/tob_api/rocketchat_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/rocketchat_hooks.py -------------------------------------------------------------------------------- /tob-api/tob_api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/settings.py -------------------------------------------------------------------------------- /tob-api/tob_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/urls.py -------------------------------------------------------------------------------- /tob-api/tob_api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/tob_api/views.py -------------------------------------------------------------------------------- /tob-api/updateSearchIndex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/updateSearchIndex.sh -------------------------------------------------------------------------------- /tob-api/verifyIndexes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/verifyIndexes.sh -------------------------------------------------------------------------------- /tob-api/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-api/wsgi.py -------------------------------------------------------------------------------- /tob-backup/config/backup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/config/backup.conf -------------------------------------------------------------------------------- /tob-backup/openshift/backup-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-build.bc-tob.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-build.ontario.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-build.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.bc-tob.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.bc-tob.dev.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.bc-tob.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.bc-tob.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.bc-tob.prod.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.bc-tob.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.bc-tob.test.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.dev.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.ontario.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.ontario.dev.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.ontario.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.ontario.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.ontario.prod.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.ontario.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.ontario.test.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.overrides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.overrides.sh -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.prod.param -------------------------------------------------------------------------------- /tob-backup/openshift/backup-deploy.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/backup-deploy.test.param -------------------------------------------------------------------------------- /tob-backup/openshift/templates/backup-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/templates/backup-build.json -------------------------------------------------------------------------------- /tob-backup/openshift/templates/backup-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-backup/openshift/templates/backup-deploy.json -------------------------------------------------------------------------------- /tob-db/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/Jenkinsfile -------------------------------------------------------------------------------- /tob-db/Jenkinsfile.ontario.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/Jenkinsfile.ontario.pipeline.param -------------------------------------------------------------------------------- /tob-db/Jenkinsfile.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/Jenkinsfile.pipeline.param -------------------------------------------------------------------------------- /tob-db/PortForwardingaDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/PortForwardingaDatabase.md -------------------------------------------------------------------------------- /tob-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/README.md -------------------------------------------------------------------------------- /tob-db/config/postgresql-cfg/autovacuum.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/config/postgresql-cfg/autovacuum.conf -------------------------------------------------------------------------------- /tob-db/openshift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/.gitignore -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-build.bc-tob.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-build.ontario.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-build.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.bc-tob.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.bc-tob.dev.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.bc-tob.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.bc-tob.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.bc-tob.prod.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.bc-tob.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.bc-tob.test.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.dev.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.ontario.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.ontario.dev.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.ontario.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.ontario.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.ontario.prod.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.ontario.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.ontario.test.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.overrides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.overrides.sh -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.prod.param -------------------------------------------------------------------------------- /tob-db/openshift/postgresql-deploy.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/postgresql-deploy.test.param -------------------------------------------------------------------------------- /tob-db/openshift/templates/postgresql-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/templates/postgresql-build.json -------------------------------------------------------------------------------- /tob-db/openshift/templates/postgresql-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-db/openshift/templates/postgresql-deploy.json -------------------------------------------------------------------------------- /tob-solr/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/Jenkinsfile -------------------------------------------------------------------------------- /tob-solr/Jenkinsfile.ontario.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/Jenkinsfile.ontario.pipeline.param -------------------------------------------------------------------------------- /tob-solr/Jenkinsfile.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/Jenkinsfile.pipeline.param -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/currency.xml -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/elevate.xml -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/contractions_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/contractions_ca.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/contractions_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/contractions_fr.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/contractions_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/contractions_ga.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/contractions_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/contractions_it.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/hyphenations_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/hyphenations_ga.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/params.json -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/protwords.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/schema.xml -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/solrconfig.xml -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/stopwords.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/synonyms.txt -------------------------------------------------------------------------------- /tob-solr/cores/the_org_book/conf/wdfftypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/cores/the_org_book/conf/wdfftypes.txt -------------------------------------------------------------------------------- /tob-solr/openshift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/.gitignore -------------------------------------------------------------------------------- /tob-solr/openshift/solr-base-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-base-build.bc-tob.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-base-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-base-build.ontario.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-base-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-base-build.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-build.bc-tob.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-build.ontario.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-build.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.bc-tob.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.bc-tob.dev.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.bc-tob.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.bc-tob.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.bc-tob.prod.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.bc-tob.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.bc-tob.test.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.dev.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.ontario.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.ontario.dev.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.ontario.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.ontario.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.ontario.prod.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.ontario.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.ontario.test.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.prod.param -------------------------------------------------------------------------------- /tob-solr/openshift/solr-deploy.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/solr-deploy.test.param -------------------------------------------------------------------------------- /tob-solr/openshift/templates/solr-base-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/templates/solr-base-build.json -------------------------------------------------------------------------------- /tob-solr/openshift/templates/solr-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/templates/solr-build.json -------------------------------------------------------------------------------- /tob-solr/openshift/templates/solr-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-solr/openshift/templates/solr-deploy.json -------------------------------------------------------------------------------- /tob-wallet/openshift/templates/wallet-db-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/templates/wallet-db-deploy.json -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.bc-tob.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.bc-tob.dev.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.bc-tob.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.bc-tob.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.bc-tob.prod.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.bc-tob.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.bc-tob.test.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.dev.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.ontario.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.ontario.dev.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.ontario.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.ontario.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.ontario.prod.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.ontario.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.ontario.test.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.overrides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.overrides.sh -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.prod.param -------------------------------------------------------------------------------- /tob-wallet/openshift/wallet-db-deploy.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-wallet/openshift/wallet-db-deploy.test.param -------------------------------------------------------------------------------- /tob-web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/.editorconfig -------------------------------------------------------------------------------- /tob-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/.gitignore -------------------------------------------------------------------------------- /tob-web/.s2i/bin/save-artifacts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/.s2i/bin/save-artifacts -------------------------------------------------------------------------------- /tob-web/.s2iignore: -------------------------------------------------------------------------------- 1 | .npm 2 | dist/ 3 | node_modules/ 4 | src/themes/_active/ 5 | -------------------------------------------------------------------------------- /tob-web/ACCESSIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/ACCESSIBILITY.md -------------------------------------------------------------------------------- /tob-web/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/Jenkinsfile -------------------------------------------------------------------------------- /tob-web/Jenkinsfile.ontario.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/Jenkinsfile.ontario.pipeline.param -------------------------------------------------------------------------------- /tob-web/Jenkinsfile.pipeline.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/Jenkinsfile.pipeline.param -------------------------------------------------------------------------------- /tob-web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/LICENSE -------------------------------------------------------------------------------- /tob-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/README.md -------------------------------------------------------------------------------- /tob-web/TOBOntario_MainPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/TOBOntario_MainPage.png -------------------------------------------------------------------------------- /tob-web/ThemeDevelopment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/ThemeDevelopment.md -------------------------------------------------------------------------------- /tob-web/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/angular.json -------------------------------------------------------------------------------- /tob-web/build-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/build-theme.js -------------------------------------------------------------------------------- /tob-web/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /tob-web/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/e2e/app.po.ts -------------------------------------------------------------------------------- /tob-web/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /tob-web/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/karma.conf.js -------------------------------------------------------------------------------- /tob-web/openshift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/.gitignore -------------------------------------------------------------------------------- /tob-web/openshift/angular-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-build.bc-tob.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-build.ontario.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-build.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-build.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-build.bc-tob.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-build.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-build.ontario.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-build.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-build.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.bc-tob.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.bc-tob.dev.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.bc-tob.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.bc-tob.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.bc-tob.prod.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.bc-tob.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.bc-tob.test.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.dev.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.ontario.dev.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.ontario.dev.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.ontario.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.ontario.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.ontario.prod.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.ontario.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.ontario.test.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.overrides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.overrides.sh -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.prod.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.prod.param -------------------------------------------------------------------------------- /tob-web/openshift/angular-on-nginx-deploy.test.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/angular-on-nginx-deploy.test.param -------------------------------------------------------------------------------- /tob-web/openshift/config/blackListUpdater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/config/blackListUpdater.sh -------------------------------------------------------------------------------- /tob-web/openshift/config/blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/config/blacklist.conf -------------------------------------------------------------------------------- /tob-web/openshift/nginx-runtime.bc-tob.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/nginx-runtime.bc-tob.param -------------------------------------------------------------------------------- /tob-web/openshift/nginx-runtime.ontario.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/nginx-runtime.ontario.param -------------------------------------------------------------------------------- /tob-web/openshift/nginx-runtime.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/nginx-runtime.param -------------------------------------------------------------------------------- /tob-web/openshift/templates/angular-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/angular-build.json -------------------------------------------------------------------------------- /tob-web/openshift/templates/angular-on-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/angular-on-nginx/Dockerfile -------------------------------------------------------------------------------- /tob-web/openshift/templates/angular-on-nginx/angular-on-nginx-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/angular-on-nginx/angular-on-nginx-build.json -------------------------------------------------------------------------------- /tob-web/openshift/templates/angular-on-nginx/angular-on-nginx-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/angular-on-nginx/angular-on-nginx-deploy.json -------------------------------------------------------------------------------- /tob-web/openshift/templates/nginx-runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/nginx-runtime/Dockerfile -------------------------------------------------------------------------------- /tob-web/openshift/templates/nginx-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/nginx-runtime/README.md -------------------------------------------------------------------------------- /tob-web/openshift/templates/nginx-runtime/nginx-runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/nginx-runtime/nginx-runtime.json -------------------------------------------------------------------------------- /tob-web/openshift/templates/nginx-runtime/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/nginx-runtime/nginx.conf.template -------------------------------------------------------------------------------- /tob-web/openshift/templates/nginx-runtime/s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo no assemble needed 3 | -------------------------------------------------------------------------------- /tob-web/openshift/templates/nginx-runtime/s2i/bin/assemble-runtime: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo no assemble-runtime needed 3 | -------------------------------------------------------------------------------- /tob-web/openshift/templates/nginx-runtime/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/nginx-runtime/s2i/bin/run -------------------------------------------------------------------------------- /tob-web/openshift/templates/nodejs-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/openshift/templates/nodejs-build/Dockerfile -------------------------------------------------------------------------------- /tob-web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/package-lock.json -------------------------------------------------------------------------------- /tob-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/package.json -------------------------------------------------------------------------------- /tob-web/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/protractor.conf.js -------------------------------------------------------------------------------- /tob-web/screenshot_mainpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/screenshot_mainpage.png -------------------------------------------------------------------------------- /tob-web/src/app/app-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/app-config.service.ts -------------------------------------------------------------------------------- /tob-web/src/app/app-footer/app-footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/app-footer/app-footer.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/app-header/app-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/app-header/app-header.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /tob-web/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /tob-web/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/app.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/app.module.ts -------------------------------------------------------------------------------- /tob-web/src/app/core/interfaces/i-credential-set.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/core/interfaces/i-credential-set.interface.ts -------------------------------------------------------------------------------- /tob-web/src/app/core/interfaces/i-credential-type.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/core/interfaces/i-credential-type.interface.ts -------------------------------------------------------------------------------- /tob-web/src/app/core/interfaces/i-credential.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/core/interfaces/i-credential.interface.ts -------------------------------------------------------------------------------- /tob-web/src/app/core/interfaces/i-issuer.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/core/interfaces/i-issuer.interface.ts -------------------------------------------------------------------------------- /tob-web/src/app/core/services/http.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/core/services/http.service.spec.ts -------------------------------------------------------------------------------- /tob-web/src/app/core/services/http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/core/services/http.service.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/cred.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/cred.module.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/form.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/list.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/name-panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/name-panel.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/related-creds.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/related-creds.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/timeline-cred.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/timeline-cred.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/timeline-formatter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/timeline-formatter.service.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/timeline.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/timeline.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/topic-archive-list-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/topic-archive-list-header.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/topic-archive-list-item/topic-archive-list-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/topic-archive-list-item/topic-archive-list-item.component.spec.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/topic-archive-list-item/topic-archive-list-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/topic-archive-list-item/topic-archive-list-item.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/cred/type-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/cred/type-list.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/data-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/data-types.ts -------------------------------------------------------------------------------- /tob-web/src/app/general-data.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/general-data.service.spec.ts -------------------------------------------------------------------------------- /tob-web/src/app/general-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/general-data.service.ts -------------------------------------------------------------------------------- /tob-web/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/home/home.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/info/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/info/contact.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/issuer/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/issuer/form.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/search/filters.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/search/filters.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/search/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/search/form.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/search/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/search/input.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/search/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/search/nav.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/search/search.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/search/search.module.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/axis.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/axis.model.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/i-timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/i-timeline.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/marker.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/marker.model.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/row.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/row.model.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/scale.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/scale.model.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/slot-state.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/slot-state.model.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/slot.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/slot.model.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/timeline-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/timeline-utils.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/models/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/models/timeline.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/services/timeline.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/services/timeline.service.spec.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/services/timeline.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/services/timeline.service.ts -------------------------------------------------------------------------------- /tob-web/src/app/timeline/view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/timeline/view.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/topic/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/topic/form.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/topic/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/topic/list.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/topic/relations-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/topic/relations-list.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/topic/services/topic-state.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/topic/services/topic-state.service.spec.ts -------------------------------------------------------------------------------- /tob-web/src/app/topic/services/topic-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/topic/services/topic-state.service.ts -------------------------------------------------------------------------------- /tob-web/src/app/topic/topic.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/topic/topic.module.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/address.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/address.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/attribute-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/attribute-list.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/attribute.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/attribute.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/breadcrumb.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/breadcrumb.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/date-format.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/date-format.pipe.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/error-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/error-message.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/loading-indicator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/loading-indicator.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/not-found.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/number-shorten.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/number-shorten.pipe.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/pagescroll.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/pagescroll.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/resolve-url.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/resolve-url.pipe.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/share-link.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/share-link.component.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/util.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/util.module.ts -------------------------------------------------------------------------------- /tob-web/src/app/util/with-lang.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/app/util/with-lang.directive.ts -------------------------------------------------------------------------------- /tob-web/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | API_URL: "api/" 4 | }; 5 | -------------------------------------------------------------------------------- /tob-web/src/environments/environment.test.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | API_URL: "api/" 4 | }; 5 | -------------------------------------------------------------------------------- /tob-web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/environments/environment.ts -------------------------------------------------------------------------------- /tob-web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/main.ts -------------------------------------------------------------------------------- /tob-web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/polyfills.ts -------------------------------------------------------------------------------- /tob-web/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/test.ts -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/_bootstrap.scss -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/_common.scss -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/_theme.scss -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/app-footer/app-footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/app-footer/app-footer.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/app-header/app-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/app-header/app-header.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/app-header/app-header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/app-header/app-header.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-192x192.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-512x512.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-apple-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-apple-icon.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-apple-touch-icon.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-favicon-16x16.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-favicon-32x32.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-en.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-fr.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-rev-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-rev-en.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-rev-fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-logo-rev-fr.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-144x144.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-150x150.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-310x150.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-310x310.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-mstile-70x70.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-symbol-rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-symbol-rev.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid-symbol.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/bcid02-favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/bcid02-favicon-32x32.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/browserconfig.xml -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/gov3_bc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/gov3_bc_logo.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/bootstrap/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/bootstrap/manifest.json -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/card-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/card-image.jpg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/config.json -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/i18n/en.json -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/i18n/fr.json -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/img/logos/DIACC-Logo-BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/img/logos/DIACC-Logo-BL.png -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/img/logos/World_Economic_Forum_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/img/logos/World_Economic_Forum_logo.svg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/img/logos/cfib_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/img/logos/cfib_logo.jpg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/assets/orgbook-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/assets/orgbook-banner.jpg -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/cred/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/cred/list.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/cred/name-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/cred/name-panel.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/home/home.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/home/home.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/home/home.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/index.html -------------------------------------------------------------------------------- /tob-web/src/themes/bcgov/util/pagescroll.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/bcgov/util/pagescroll.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/_bootstrap.override.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-web/src/themes/default/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/_bootstrap.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/_common.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/_custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/_default.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/_panels.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/_theme.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/app-footer/app-footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app-footer/app-footer.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/app-footer/app-footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app-footer/app-footer.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/app-header/app-header.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app-header/app-header.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/app-header/app-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app-header/app-header.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/app-header/app-header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app-header/app-header.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/app/app.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app/app.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app/app.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/app/app.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/config.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/filters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/filters.svg -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/i18n/en.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/i18n/fr.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/locales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/locales.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/map.png -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/recipes/start_a_restaurant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/recipes/start_a_restaurant.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/testdata/creds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/testdata/creds.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/testdata/credtypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/testdata/credtypes.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/testdata/issuers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/testdata/issuers.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/testdata/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/testdata/names.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/testdata/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/testdata/subjects.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/assets/testdata/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/assets/testdata/topics.json -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/cred.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/cred.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/cred.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/cred.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/form.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/form.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/list.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/list.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/name-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/name-panel.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/name-panel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/name-panel.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/related-cred.component.custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/related-cred.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/related-cred.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/related-cred.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/related-cred.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/timeline-cred.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/timeline-cred.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/timeline.component.custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/timeline.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/timeline.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/timeline.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/timeline.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/topic-archive-list-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/topic-archive-list-header.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/topic-archive-list-header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/topic-archive-list-header.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/topic-archive-list-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/topic-archive-list-item.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/topic-archive-list-item.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/topic-archive-list-item.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/type-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/type-list.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/cred/type-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/cred/type-list.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/favicon.ico -------------------------------------------------------------------------------- /tob-web/src/themes/default/home/home.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/home/home.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/home/home.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/home/home.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/index.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/info/contact.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/info/contact.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/info/contact.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/info/contact.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/info/contact.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/info/contact.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/issuer/form.component.custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-web/src/themes/default/issuer/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/issuer/form.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/issuer/form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/issuer/form.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/robots.txt -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/filters.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/filters.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/filters.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/filters.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/form.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/form.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/form.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/form.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/input.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/input.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/input.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/input.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/nav.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/search/nav.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/search/nav.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/styles.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/timeline/timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/timeline/timeline.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/topic/form.component.custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tob-web/src/themes/default/topic/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/topic/form.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/topic/form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/topic/form.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/topic/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/topic/list.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/topic/list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/topic/list.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/topic/relations-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/topic/relations-list.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/attribute-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/attribute-list.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/attribute.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/attribute.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/breadcrumb.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/breadcrumb.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/breadcrumb.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/error-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/error-message.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/loading-indicator.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/loading-indicator.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/not-found.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/pagescroll.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/pagescroll.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/pagescroll.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/pagescroll.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/share-link.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/share-link.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/default/util/share-link.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/default/util/share-link.component.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/_bootstrap.override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/_bootstrap.override.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/_theme.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/app-footer/app-footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/app-footer/app-footer.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/app-header/app-header.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/app-header/app-header.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/app-header/app-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/app-header/app-header.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/assets/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/assets/beaker.png -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/assets/cert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/assets/cert.svg -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/assets/config.json -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/assets/footer-swoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/assets/footer-swoop.gif -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/assets/i18n/en.json -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/assets/i18n/fr.json -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/assets/ontario-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/assets/ontario-logo.png -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/cred/cred.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/cred/cred.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/cred/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/cred/form.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/cred/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/cred/list.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/cred/name-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/cred/name-panel.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/cred/related-cred.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/cred/related-cred.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/favicon.ico -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/home/home.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/home/home.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/home/home.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/index.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/issuer/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/issuer/form.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/search/form.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/search/form.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/search/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/search/form.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/search/input.component.custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/search/input.component.custom.scss -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/search/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/search/input.component.html -------------------------------------------------------------------------------- /tob-web/src/themes/ongov/topic/form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/themes/ongov/topic/form.component.html -------------------------------------------------------------------------------- /tob-web/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/tsconfig.app.json -------------------------------------------------------------------------------- /tob-web/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tob-web/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/src/typings.d.ts -------------------------------------------------------------------------------- /tob-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/tsconfig.json -------------------------------------------------------------------------------- /tob-web/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/tslint.json -------------------------------------------------------------------------------- /tob-web/watch-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/TheOrgBook/HEAD/tob-web/watch-theme.js --------------------------------------------------------------------------------