LP#626157 Angular5 base app + some services, UI's, etc.
authorBill Erickson <berickxx@gmail.com>
Sun, 19 Nov 2017 00:51:20 +0000 (19:51 -0500)
committerBill Erickson <berickxx@gmail.com>
Wed, 2 May 2018 15:16:08 +0000 (11:16 -0400)
commit41bf37fb8e67740fef10f11912c9a0850991f63f
tree73856c923163c2784762b30331846f759b9fd0ac
parentd8e092ac014beee99ca75224a7524d3c0f41690b
LP#626157 Angular5 base app + some services, UI's, etc.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
151 files changed:
Open-ILS/src/eg2/.angular-cli.json [new file with mode: 0644]
Open-ILS/src/eg2/.editorconfig [new file with mode: 0644]
Open-ILS/src/eg2/.gitignore [new file with mode: 0644]
Open-ILS/src/eg2/README.adoc [new file with mode: 0644]
Open-ILS/src/eg2/e2e/app.e2e-spec.ts [new file with mode: 0644]
Open-ILS/src/eg2/e2e/app.po.ts [new file with mode: 0644]
Open-ILS/src/eg2/e2e/tsconfig.e2e.json [new file with mode: 0644]
Open-ILS/src/eg2/karma.conf.js [new file with mode: 0644]
Open-ILS/src/eg2/package.json [new file with mode: 0644]
Open-ILS/src/eg2/protractor.conf.js [new file with mode: 0644]
Open-ILS/src/eg2/src/app/app.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/app.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/common.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/README [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/auth.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/event.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/idl.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/net.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/org.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/pcrud.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/perm.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/core/store.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/migration.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/resolver.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/README [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/accesskey/accesskey-info.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/accesskey/accesskey-info.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/accesskey/accesskey.directive.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/accesskey/accesskey.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/catalog/catalog-url.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/catalog/catalog.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/catalog/search-context.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/catalog/unapi.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/confirm.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/confirm.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/dialog.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/progress.component.css [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/progress.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/progress.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/prompt.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/dialog/prompt.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-body.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-body.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-data-source.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-header.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-header.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-toolbar.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid-toolbar.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid.component.css [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/grid/grid.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/org-select/org-select.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/org-select/org-select.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/string/string.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/string/string.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/toast/toast.component.css [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/toast/toast.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/toast/toast.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/toast/toast.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/util/audio.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/share/util/pager.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/admin/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/admin/workstation/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/admin/workstation/workstations/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/admin/workstation/workstations/workstations.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/admin/workstation/workstations/workstations.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/admin/workstation/workstations/workstations.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/catalog.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/catalog.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/catalog.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/record/copies.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/record/copies.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/record/pagination.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/record/pagination.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/record/record.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/record/record.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/resolver.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/facets.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/facets.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.css [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/results.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/result/results.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/search-form.component.css [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/search-form.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/catalog/search-form.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/circ/patron/bcsearch/bcsearch.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/circ/patron/bcsearch/bcsearch.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/circ/patron/bcsearch/bcsearch.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/circ/patron/bcsearch/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/circ/patron/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/circ/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/common.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/login.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/login.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/nav.component.css [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/nav.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/nav.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/resolver.service.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/sandbox/README [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/sandbox/routing.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/share/README [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/share/bib-summary/bib-summary.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/share/bib-summary/bib-summary.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/share/op-change/op-change.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/share/op-change/op-change.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/share/staff-banner.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/splash.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/splash.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/staff.component.css [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/staff.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/staff.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/staff/staff.module.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/app/welcome.component.html [new file with mode: 0644]
Open-ILS/src/eg2/src/app/welcome.component.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/assets/.gitkeep [new file with mode: 0644]
Open-ILS/src/eg2/src/environments/environment.prod.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/environments/environment.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/favicon.ico [new file with mode: 0644]
Open-ILS/src/eg2/src/index.html [new file with mode: 0644]
Open-ILS/src/eg2/src/main.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/polyfills.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/styles.css [new file with mode: 0644]
Open-ILS/src/eg2/src/test.ts [new file with mode: 0644]
Open-ILS/src/eg2/src/tsconfig.app.json [new file with mode: 0644]
Open-ILS/src/eg2/src/tsconfig.spec.json [new file with mode: 0644]
Open-ILS/src/eg2/src/typings.d.ts [new file with mode: 0644]
Open-ILS/src/eg2/tsconfig.json [new file with mode: 0644]
Open-ILS/src/eg2/tslint.json [new file with mode: 0644]
Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm
Open-ILS/src/templates/staff/ang2_js.tt2 [new file with mode: 0644]
Open-ILS/src/templates/staff/base.tt2
Open-ILS/src/templates/staff/circ/checkin/index.tt2
Open-ILS/src/templates/staff/navbar.tt2
Open-ILS/web/js/ui/default/staff/circ/checkin/app.js
Open-ILS/web/js/ui/default/staff/services/hatch.js