├── .babelrc ├── .dockerignore ├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── patchback.yml ├── renovate.json └── workflows │ ├── cypress.yml │ ├── cypress │ ├── cypress.env.json.community │ └── cypress.env.json.standalone │ ├── dev-release.yml │ ├── i18n.yml │ ├── pr-checks.yml │ └── stable-release.yml ├── .gitignore ├── .gitmodules ├── .ls-lint.yml ├── .prettierignore ├── .prettierrc.yaml ├── .stylelintrc.json ├── .tekton ├── automation-hub-frontend-pull-request.yaml └── automation-hub-frontend-push.yaml ├── .yamllint ├── CHANGES.rst ├── CHANGES ├── .TEMPLATE.rst ├── 2163.misc ├── 2790.misc ├── 2833.misc ├── 2866.misc ├── 3039.misc ├── 3040.misc ├── 3073.misc ├── 5415.bug ├── 5416.bug └── 5417.bug ├── Dockerfile ├── LICENSE ├── README.md ├── ansible-hub-ui └── __init__.py ├── ci.sh ├── community ├── Dockerfile ├── index.html └── nginx │ ├── nginx.conf │ └── nginx.d │ └── default.conf ├── config ├── community.dev.webpack.config.js ├── community.prod.webpack.config.js ├── insights.dev.webpack.config.js ├── insights.prod.webpack.config.js ├── standalone.dev.webpack.config.js ├── standalone.prod.webpack.config.js └── webpack.base.config.js ├── deploy └── frontend.yaml ├── developer_guidelines.md ├── docker └── entrypoint.sh ├── eslint.config.mjs ├── lingui.config.js ├── locale ├── en.js ├── en.po ├── es.js ├── es.po ├── fr.js ├── fr.po ├── ja.js ├── ja.po ├── ko.js ├── ko.po ├── nl.js ├── nl.po ├── ru.js ├── ru.po ├── zh.js └── zh.po ├── package.json ├── pr_check.sh ├── pyproject.toml ├── src ├── actions │ ├── action.tsx │ ├── ansible-remote-create.tsx │ ├── ansible-remote-delete.tsx │ ├── ansible-remote-download-ca.tsx │ ├── ansible-remote-download-client.tsx │ ├── ansible-remote-download-requirements.tsx │ ├── ansible-remote-edit.tsx │ ├── ansible-repository-collection-version-add.tsx │ ├── ansible-repository-collection-version-remove.tsx │ ├── ansible-repository-copy.tsx │ ├── ansible-repository-create.tsx │ ├── ansible-repository-delete.tsx │ ├── ansible-repository-edit.tsx │ ├── ansible-repository-sync.tsx │ ├── ansible-repository-version-revert.tsx │ └── index.ts ├── api │ ├── active-user.ts │ ├── activities.ts │ ├── ai-deny-index.ts │ ├── ansible-distribution.ts │ ├── ansible-remote.ts │ ├── ansible-repository.ts │ ├── application-info.ts │ ├── base.ts │ ├── certificate-upload.ts │ ├── collection-version.ts │ ├── collection.ts │ ├── container-distribution.ts │ ├── container-tag.ts │ ├── execution-environment-namespace.ts │ ├── execution-environment-registry.ts │ ├── execution-environment-remote.ts │ ├── execution-environment.ts │ ├── feature-flags.ts │ ├── gateway-logout.ts │ ├── gateway.ts │ ├── generic-pulp.ts │ ├── group-role.ts │ ├── group.ts │ ├── hub.ts │ ├── import.ts │ ├── index.ts │ ├── legacy-import.ts │ ├── legacy-namespace.ts │ ├── legacy-role.ts │ ├── legacy-sync.ts │ ├── legacy.ts │ ├── my-namespace.ts │ ├── my-synclist.ts │ ├── namespace.ts │ ├── pulp.ts │ ├── response-types │ │ ├── ansible-remote.ts │ │ ├── ansible-repository.ts │ │ ├── collection.ts │ │ ├── execution-environment.ts │ │ ├── feature-flags.ts │ │ ├── image.ts │ │ ├── import.ts │ │ ├── legacy-import.ts │ │ ├── legacy-namespace.ts │ │ ├── legacy-role.ts │ │ ├── namespace.ts │ │ ├── permissions.ts │ │ ├── pulp.ts │ │ ├── remote.ts │ │ ├── role.ts │ │ ├── settings.ts │ │ ├── synclists.ts │ │ ├── task.ts │ │ ├── user.ts │ │ └── write-only-field.ts │ ├── role.ts │ ├── settings.ts │ ├── sign-collections.ts │ ├── sign-containers.ts │ ├── signing-service.ts │ ├── tag.ts │ ├── task-management.ts │ ├── task.ts │ └── user.ts ├── components │ ├── access-tab.tsx │ ├── alert-list.tsx │ ├── ansible-repository-form.tsx │ ├── applied-filters.tsx │ ├── approval-row.tsx │ ├── approve-modal.tsx │ ├── base-header.tsx │ ├── breadcrumbs.tsx │ ├── card-list-switcher.tsx │ ├── cards.scss │ ├── collection-card.tsx │ ├── collection-content-list.scss │ ├── collection-content-list.tsx │ ├── collection-dependencies-list.tsx │ ├── collection-dropdown.tsx │ ├── collection-filter.ts │ ├── collection-header.tsx │ ├── collection-info.scss │ ├── collection-info.tsx │ ├── collection-list-item.tsx │ ├── collection-list.tsx │ ├── collection-usedby-dependencies-list.tsx │ ├── compound-filter.tsx │ ├── confirm-modal.tsx │ ├── copy-collection-to-repository-modal.tsx │ ├── copy-url.tsx │ ├── data-form.tsx │ ├── date-component.tsx │ ├── delete-ansible-remote-modal.tsx │ ├── delete-ansible-repository-modal.tsx │ ├── delete-collection-modal.tsx │ ├── delete-execution-environment-modal.tsx │ ├── delete-group-modal.tsx │ ├── delete-modal.tsx │ ├── delete-user-modal.tsx │ ├── deprecated-tag.tsx │ ├── detail-list.tsx │ ├── details.tsx │ ├── download-count.tsx │ ├── download-signature-grid-item.tsx │ ├── empty-state-custom.tsx │ ├── empty-state-filter.tsx │ ├── empty-state-no-data.tsx │ ├── empty-state-unauthorized.tsx │ ├── empty-state-xs.tsx │ ├── execution-environment-header.tsx │ ├── external-link.tsx │ ├── form-field-helper.tsx │ ├── group-modal.tsx │ ├── header.scss │ ├── help-button.tsx │ ├── hub-about-modal.tsx │ ├── hub-copy-button.tsx │ ├── hub-list-toolbar.tsx │ ├── hub-pagination.tsx │ ├── import-console.tsx │ ├── import-list.tsx │ ├── import-modal.scss │ ├── import-modal.tsx │ ├── index.ts │ ├── landing-page-card.tsx │ ├── language-switcher.tsx │ ├── lazy-distributions.tsx │ ├── lazy-repositories.tsx │ ├── lightspeed-modal.tsx │ ├── link-tabs.tsx │ ├── list-item-actions.tsx │ ├── list-item.scss │ ├── list-page.tsx │ ├── loading-page.tsx │ ├── loading-spinner.tsx │ ├── login-link.tsx │ ├── logo.tsx │ ├── main.tsx │ ├── markdown-editor.scss │ ├── markdown-editor.tsx │ ├── maybe-link.tsx │ ├── multi-repo-modal.tsx │ ├── multi-search-search.tsx │ ├── multiple-repo-selector.tsx │ ├── my-imports.scss │ ├── namespace-card.tsx │ ├── namespace-form.scss │ ├── namespace-form.tsx │ ├── namespace-list-item.tsx │ ├── namespace-modal.tsx │ ├── numeric-label.tsx │ ├── page-with-tabs.tsx │ ├── page.tsx │ ├── partner-header.tsx │ ├── patternfly-wrappers │ │ ├── l10n.tsx │ │ ├── label-group.tsx │ │ ├── login-form.tsx │ │ └── tooltip.tsx │ ├── permission-categories.tsx │ ├── permission-chip-selector.tsx │ ├── preview-roles.tsx │ ├── provider-link.tsx │ ├── pulp-labels.tsx │ ├── ratings.tsx │ ├── remote-form.tsx │ ├── render-plugin-doc.md │ ├── render-plugin-doc.scss │ ├── render-plugin-doc.tsx │ ├── repository-badge.tsx │ ├── repository-form.tsx │ ├── resources-form.tsx │ ├── role-form.tsx │ ├── role-header.tsx │ ├── role-import-form.tsx │ ├── role-import-list.tsx │ ├── role-item.tsx │ ├── role-list-table.tsx │ ├── role-namespace-edit-modal.tsx │ ├── role-namespace-item.tsx │ ├── role-namespace-modal.tsx │ ├── role-permissions.tsx │ ├── role-sync-form.tsx │ ├── select-group.tsx │ ├── select-roles.tsx │ ├── select-user.tsx │ ├── sha-label.tsx │ ├── sign-all-certificates-modal.tsx │ ├── sign-single-certificate-modal.tsx │ ├── signature-badge.tsx │ ├── small-logo.tsx │ ├── sort-table.scss │ ├── sort-table.tsx │ ├── sort.tsx │ ├── stateful-dropdown.tsx │ ├── status-indicator.tsx │ ├── switcher.scss │ ├── table-of-contents.tsx │ ├── tag-label.tsx │ ├── tag-manifest-modal.tsx │ ├── tag.tsx │ ├── typeahead.tsx │ ├── ui-version.tsx │ ├── upload-signature-modal.tsx │ ├── user-form-page.tsx │ ├── user-form.tsx │ ├── wizard-modal.tsx │ └── write-only-field.tsx ├── containers │ ├── ansible-remote │ │ ├── detail.tsx │ │ ├── edit.tsx │ │ ├── list.tsx │ │ ├── tab-access.tsx │ │ └── tab-details.tsx │ ├── ansible-repository │ │ ├── detail.tsx │ │ ├── edit.tsx │ │ ├── list.tsx │ │ ├── tab-access.tsx │ │ ├── tab-collection-versions.tsx │ │ ├── tab-details.tsx │ │ ├── tab-distributions.tsx │ │ └── tab-repository-versions.tsx │ ├── ansible-role │ │ ├── imports.tsx │ │ ├── namespace-detail.tsx │ │ ├── namespace-list.tsx │ │ ├── role-detail.tsx │ │ ├── role-import.tsx │ │ ├── role-list.tsx │ │ └── role-sync.tsx │ ├── certification-dashboard │ │ ├── certification-dashboard.scss │ │ └── certification-dashboard.tsx │ ├── collection-detail │ │ ├── base.ts │ │ ├── collection-content.tsx │ │ ├── collection-dependencies.scss │ │ ├── collection-dependencies.tsx │ │ ├── collection-detail.scss │ │ ├── collection-detail.tsx │ │ ├── collection-distributions.tsx │ │ ├── collection-docs.tsx │ │ └── collection-import-log.tsx │ ├── edit-namespace │ │ └── edit-namespace.tsx │ ├── execution-environment-detail │ │ ├── base.tsx │ │ ├── execution-environment-detail-access.tsx │ │ ├── execution-environment-detail-activities.tsx │ │ ├── execution-environment-detail-images.scss │ │ ├── execution-environment-detail-images.tsx │ │ ├── execution-environment-detail.scss │ │ └── execution-environment-detail.tsx │ ├── execution-environment-list │ │ ├── execution-environment-list.tsx │ │ └── execution-environment.scss │ ├── execution-environment-manifest │ │ ├── execution-environment-manifest.scss │ │ └── execution-environment-manifest.tsx │ ├── execution-environment │ │ └── registry-list.tsx │ ├── group-management │ │ ├── group-detail-role-management │ │ │ ├── group-detail-role-management.scss │ │ │ └── group-detail-role-management.tsx │ │ ├── group-detail.tsx │ │ └── group-list.tsx │ ├── index.ts │ ├── landing │ │ ├── landing-page.scss │ │ └── landing-page.tsx │ ├── login │ │ └── login.tsx │ ├── my-imports │ │ └── my-imports.tsx │ ├── namespace-detail │ │ └── namespace-detail.tsx │ ├── namespace-list │ │ ├── my-namespaces.tsx │ │ ├── namespace-list.scss │ │ ├── namespace-list.tsx │ │ └── partners.tsx │ ├── not-found │ │ ├── dispatch.tsx │ │ ├── not-found.scss │ │ └── not-found.tsx │ ├── role-management │ │ ├── role-create.tsx │ │ ├── role-edit.tsx │ │ └── role-list.tsx │ ├── search │ │ ├── multi-search.tsx │ │ ├── search.scss │ │ └── search.tsx │ ├── settings │ │ └── user-profile.tsx │ ├── signature-keys │ │ └── list.tsx │ ├── task-management │ │ ├── task-detail.tsx │ │ ├── task-list-view.tsx │ │ └── task.scss │ ├── token │ │ ├── token-insights.tsx │ │ └── token-standalone.tsx │ └── user-management │ │ ├── user-create.tsx │ │ ├── user-detail.tsx │ │ ├── user-edit.tsx │ │ └── user-list.tsx ├── entry-insights.tsx ├── entry-standalone.tsx ├── index.d.ts ├── index.html ├── l10n.ts ├── loaders │ ├── app-context.ts │ ├── app.scss │ ├── insights │ │ ├── loader.tsx │ │ └── routes.tsx │ ├── load-context.ts │ └── standalone │ │ ├── layout.tsx │ │ ├── loader.tsx │ │ ├── menu.tsx │ │ └── routes.tsx ├── paths.ts ├── permissions.ts └── utilities │ ├── assign-roles.ts │ ├── can-sign.ts │ ├── content-summary.ts │ ├── delete-collection.ts │ ├── download-data.ts │ ├── fail-alerts.tsx │ ├── filter-is-set.ts │ ├── get-human-size.ts │ ├── get-repo-url.ts │ ├── has-permission.ts │ ├── index.ts │ ├── last-sync-task.tsx │ ├── login-url.ts │ ├── map-error-messages.ts │ ├── map-role-errors.ts │ ├── namespace-title.ts │ ├── param-helper.ts │ ├── parse-pulp-id.ts │ ├── repo-signing.ts │ ├── repository-base-path.ts │ ├── repository-remove-collection.ts │ ├── role-namespace-info.ts │ ├── sanitize-docs-urls.ts │ ├── task-alert.tsx │ ├── translate-locked-role.ts │ ├── translate-task.ts │ ├── truncate-sha.ts │ ├── validate-url-helper.ts │ ├── wait-for-task.ts │ ├── with-router.tsx │ └── write-only-fields.ts ├── static ├── images │ ├── default-logo.svg │ ├── favicon.ico │ ├── galaxy_logo.svg │ ├── logo_large.svg │ ├── logo_small.svg │ ├── not_found.svg │ └── rh-logo-white.svg └── scores │ ├── collection.json │ └── role.json ├── test ├── README.md ├── cypress.config.js ├── cypress.env.json.template ├── cypress │ ├── e2e │ │ ├── approval-modal │ │ │ ├── approval-multiple-repos-list.js │ │ │ ├── approval-multiple-repos.js │ │ │ └── feature-flags.js │ │ ├── approval │ │ │ ├── approval-dashboard-list.js │ │ │ ├── approval-process.js │ │ │ ├── collection-approval.js │ │ │ └── signing.js │ │ ├── collections │ │ │ ├── collection-detail.js │ │ │ ├── collection-upload.js │ │ │ ├── collection.js │ │ │ └── collections-list.js │ │ ├── community │ │ │ ├── compose.env │ │ │ ├── feature-flags.js │ │ │ ├── lightspeed-modal.js │ │ │ └── view-only.js │ │ ├── namespaces │ │ │ ├── api-token.js │ │ │ ├── docs-menu.js │ │ │ ├── execution-environments-edit.js │ │ │ ├── execution-environments.js │ │ │ ├── group-list.js │ │ │ ├── group-management.js │ │ │ ├── group-roles.js │ │ │ ├── l10n.js │ │ │ ├── login.js │ │ │ ├── menu.js │ │ │ ├── namespace-delete.js │ │ │ ├── namespace-detail.js │ │ │ ├── namespace-edit.js │ │ │ ├── namespace-form.js │ │ │ ├── namespace-list.js │ │ │ ├── profile.js │ │ │ ├── rbac-access.js │ │ │ ├── rbac-create.js │ │ │ ├── rbac-edit.js │ │ │ ├── rbac-list.js │ │ │ ├── rbac.js │ │ │ ├── task-list.js │ │ │ ├── task-management-detail.js │ │ │ ├── task-status.js │ │ │ ├── token-management.js │ │ │ ├── user-dashboard.js │ │ │ ├── user-detail.js │ │ │ ├── user-filter.js │ │ │ └── user-list.js │ │ ├── repo │ │ │ ├── container-signing.js │ │ │ ├── imports-filter-search.js │ │ │ ├── imports-filter.js │ │ │ ├── remote-registry.js │ │ │ ├── repository-list.js │ │ │ └── repository.js │ │ └── screenshots │ │ │ ├── compose.env │ │ │ └── screenshots.js │ ├── fixtures │ │ ├── collections │ │ │ ├── ansible-posix-1.4.0.tar.gz │ │ │ ├── invalid-collection-name-1.0.0-bad.tar.gz │ │ │ └── namespace_detail_test-invalid-1.0.0(1).tar.gz │ │ └── yaml │ │ │ └── test.yaml │ ├── plugins │ │ └── console-logger.js │ └── support │ │ ├── commands.js │ │ ├── e2e.js │ │ └── login.js ├── package-lock.json └── package.json └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/patchback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/patchback.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/cypress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/workflows/cypress.yml -------------------------------------------------------------------------------- /.github/workflows/cypress/cypress.env.json.community: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/workflows/cypress/cypress.env.json.community -------------------------------------------------------------------------------- /.github/workflows/cypress/cypress.env.json.standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/workflows/cypress/cypress.env.json.standalone -------------------------------------------------------------------------------- /.github/workflows/dev-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/workflows/dev-release.yml -------------------------------------------------------------------------------- /.github/workflows/i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/workflows/i18n.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/stable-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.github/workflows/stable-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.gitmodules -------------------------------------------------------------------------------- /.ls-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.ls-lint.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.tekton/automation-hub-frontend-pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.tekton/automation-hub-frontend-pull-request.yaml -------------------------------------------------------------------------------- /.tekton/automation-hub-frontend-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.tekton/automation-hub-frontend-push.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/.yamllint -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CHANGES/.TEMPLATE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/.TEMPLATE.rst -------------------------------------------------------------------------------- /CHANGES/2163.misc: -------------------------------------------------------------------------------- 1 | community - add trustarc 2 | -------------------------------------------------------------------------------- /CHANGES/2790.misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/2790.misc -------------------------------------------------------------------------------- /CHANGES/2833.misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/2833.misc -------------------------------------------------------------------------------- /CHANGES/2866.misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/2866.misc -------------------------------------------------------------------------------- /CHANGES/3039.misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/3039.misc -------------------------------------------------------------------------------- /CHANGES/3040.misc: -------------------------------------------------------------------------------- 1 | Bump patternfly to v5 2 | -------------------------------------------------------------------------------- /CHANGES/3073.misc: -------------------------------------------------------------------------------- 1 | insights: hardcode list of default filter tags 2 | -------------------------------------------------------------------------------- /CHANGES/5415.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/5415.bug -------------------------------------------------------------------------------- /CHANGES/5416.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/5416.bug -------------------------------------------------------------------------------- /CHANGES/5417.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/CHANGES/5417.bug -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/README.md -------------------------------------------------------------------------------- /ansible-hub-ui/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.11.0dev" 2 | -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/ci.sh -------------------------------------------------------------------------------- /community/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/community/Dockerfile -------------------------------------------------------------------------------- /community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/community/index.html -------------------------------------------------------------------------------- /community/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/community/nginx/nginx.conf -------------------------------------------------------------------------------- /community/nginx/nginx.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/community/nginx/nginx.d/default.conf -------------------------------------------------------------------------------- /config/community.dev.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/config/community.dev.webpack.config.js -------------------------------------------------------------------------------- /config/community.prod.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/config/community.prod.webpack.config.js -------------------------------------------------------------------------------- /config/insights.dev.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/config/insights.dev.webpack.config.js -------------------------------------------------------------------------------- /config/insights.prod.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/config/insights.prod.webpack.config.js -------------------------------------------------------------------------------- /config/standalone.dev.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/config/standalone.dev.webpack.config.js -------------------------------------------------------------------------------- /config/standalone.prod.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/config/standalone.prod.webpack.config.js -------------------------------------------------------------------------------- /config/webpack.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/config/webpack.base.config.js -------------------------------------------------------------------------------- /deploy/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/deploy/frontend.yaml -------------------------------------------------------------------------------- /developer_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/developer_guidelines.md -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lingui.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/lingui.config.js -------------------------------------------------------------------------------- /locale/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/en.js -------------------------------------------------------------------------------- /locale/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/en.po -------------------------------------------------------------------------------- /locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/es.js -------------------------------------------------------------------------------- /locale/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/es.po -------------------------------------------------------------------------------- /locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/fr.js -------------------------------------------------------------------------------- /locale/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/fr.po -------------------------------------------------------------------------------- /locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/ja.js -------------------------------------------------------------------------------- /locale/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/ja.po -------------------------------------------------------------------------------- /locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/ko.js -------------------------------------------------------------------------------- /locale/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/ko.po -------------------------------------------------------------------------------- /locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/nl.js -------------------------------------------------------------------------------- /locale/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/nl.po -------------------------------------------------------------------------------- /locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/ru.js -------------------------------------------------------------------------------- /locale/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/ru.po -------------------------------------------------------------------------------- /locale/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/zh.js -------------------------------------------------------------------------------- /locale/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/locale/zh.po -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/package.json -------------------------------------------------------------------------------- /pr_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/pr_check.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/actions/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/action.tsx -------------------------------------------------------------------------------- /src/actions/ansible-remote-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-remote-create.tsx -------------------------------------------------------------------------------- /src/actions/ansible-remote-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-remote-delete.tsx -------------------------------------------------------------------------------- /src/actions/ansible-remote-download-ca.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-remote-download-ca.tsx -------------------------------------------------------------------------------- /src/actions/ansible-remote-download-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-remote-download-client.tsx -------------------------------------------------------------------------------- /src/actions/ansible-remote-download-requirements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-remote-download-requirements.tsx -------------------------------------------------------------------------------- /src/actions/ansible-remote-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-remote-edit.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-collection-version-add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-collection-version-add.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-collection-version-remove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-collection-version-remove.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-copy.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-create.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-delete.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-edit.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-sync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-sync.tsx -------------------------------------------------------------------------------- /src/actions/ansible-repository-version-revert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/ansible-repository-version-revert.tsx -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/api/active-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/active-user.ts -------------------------------------------------------------------------------- /src/api/activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/activities.ts -------------------------------------------------------------------------------- /src/api/ai-deny-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/ai-deny-index.ts -------------------------------------------------------------------------------- /src/api/ansible-distribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/ansible-distribution.ts -------------------------------------------------------------------------------- /src/api/ansible-remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/ansible-remote.ts -------------------------------------------------------------------------------- /src/api/ansible-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/ansible-repository.ts -------------------------------------------------------------------------------- /src/api/application-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/application-info.ts -------------------------------------------------------------------------------- /src/api/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/base.ts -------------------------------------------------------------------------------- /src/api/certificate-upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/certificate-upload.ts -------------------------------------------------------------------------------- /src/api/collection-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/collection-version.ts -------------------------------------------------------------------------------- /src/api/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/collection.ts -------------------------------------------------------------------------------- /src/api/container-distribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/container-distribution.ts -------------------------------------------------------------------------------- /src/api/container-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/container-tag.ts -------------------------------------------------------------------------------- /src/api/execution-environment-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/execution-environment-namespace.ts -------------------------------------------------------------------------------- /src/api/execution-environment-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/execution-environment-registry.ts -------------------------------------------------------------------------------- /src/api/execution-environment-remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/execution-environment-remote.ts -------------------------------------------------------------------------------- /src/api/execution-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/execution-environment.ts -------------------------------------------------------------------------------- /src/api/feature-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/feature-flags.ts -------------------------------------------------------------------------------- /src/api/gateway-logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/gateway-logout.ts -------------------------------------------------------------------------------- /src/api/gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/gateway.ts -------------------------------------------------------------------------------- /src/api/generic-pulp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/generic-pulp.ts -------------------------------------------------------------------------------- /src/api/group-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/group-role.ts -------------------------------------------------------------------------------- /src/api/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/group.ts -------------------------------------------------------------------------------- /src/api/hub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/hub.ts -------------------------------------------------------------------------------- /src/api/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/import.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/legacy-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/legacy-import.ts -------------------------------------------------------------------------------- /src/api/legacy-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/legacy-namespace.ts -------------------------------------------------------------------------------- /src/api/legacy-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/legacy-role.ts -------------------------------------------------------------------------------- /src/api/legacy-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/legacy-sync.ts -------------------------------------------------------------------------------- /src/api/legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/legacy.ts -------------------------------------------------------------------------------- /src/api/my-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/my-namespace.ts -------------------------------------------------------------------------------- /src/api/my-synclist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/my-synclist.ts -------------------------------------------------------------------------------- /src/api/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/namespace.ts -------------------------------------------------------------------------------- /src/api/pulp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/pulp.ts -------------------------------------------------------------------------------- /src/api/response-types/ansible-remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/ansible-remote.ts -------------------------------------------------------------------------------- /src/api/response-types/ansible-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/ansible-repository.ts -------------------------------------------------------------------------------- /src/api/response-types/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/collection.ts -------------------------------------------------------------------------------- /src/api/response-types/execution-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/execution-environment.ts -------------------------------------------------------------------------------- /src/api/response-types/feature-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/feature-flags.ts -------------------------------------------------------------------------------- /src/api/response-types/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/image.ts -------------------------------------------------------------------------------- /src/api/response-types/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/import.ts -------------------------------------------------------------------------------- /src/api/response-types/legacy-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/legacy-import.ts -------------------------------------------------------------------------------- /src/api/response-types/legacy-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/legacy-namespace.ts -------------------------------------------------------------------------------- /src/api/response-types/legacy-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/legacy-role.ts -------------------------------------------------------------------------------- /src/api/response-types/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/namespace.ts -------------------------------------------------------------------------------- /src/api/response-types/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/permissions.ts -------------------------------------------------------------------------------- /src/api/response-types/pulp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/pulp.ts -------------------------------------------------------------------------------- /src/api/response-types/remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/remote.ts -------------------------------------------------------------------------------- /src/api/response-types/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/role.ts -------------------------------------------------------------------------------- /src/api/response-types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/settings.ts -------------------------------------------------------------------------------- /src/api/response-types/synclists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/synclists.ts -------------------------------------------------------------------------------- /src/api/response-types/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/task.ts -------------------------------------------------------------------------------- /src/api/response-types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/response-types/user.ts -------------------------------------------------------------------------------- /src/api/response-types/write-only-field.ts: -------------------------------------------------------------------------------- 1 | export class WriteOnlyFieldType { 2 | name: string; 3 | is_set: boolean; 4 | } 5 | -------------------------------------------------------------------------------- /src/api/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/role.ts -------------------------------------------------------------------------------- /src/api/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/settings.ts -------------------------------------------------------------------------------- /src/api/sign-collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/sign-collections.ts -------------------------------------------------------------------------------- /src/api/sign-containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/sign-containers.ts -------------------------------------------------------------------------------- /src/api/signing-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/signing-service.ts -------------------------------------------------------------------------------- /src/api/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/tag.ts -------------------------------------------------------------------------------- /src/api/task-management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/task-management.ts -------------------------------------------------------------------------------- /src/api/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/task.ts -------------------------------------------------------------------------------- /src/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/api/user.ts -------------------------------------------------------------------------------- /src/components/access-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/access-tab.tsx -------------------------------------------------------------------------------- /src/components/alert-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/alert-list.tsx -------------------------------------------------------------------------------- /src/components/ansible-repository-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/ansible-repository-form.tsx -------------------------------------------------------------------------------- /src/components/applied-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/applied-filters.tsx -------------------------------------------------------------------------------- /src/components/approval-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/approval-row.tsx -------------------------------------------------------------------------------- /src/components/approve-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/approve-modal.tsx -------------------------------------------------------------------------------- /src/components/base-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/base-header.tsx -------------------------------------------------------------------------------- /src/components/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/card-list-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/card-list-switcher.tsx -------------------------------------------------------------------------------- /src/components/cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/cards.scss -------------------------------------------------------------------------------- /src/components/collection-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-card.tsx -------------------------------------------------------------------------------- /src/components/collection-content-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-content-list.scss -------------------------------------------------------------------------------- /src/components/collection-content-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-content-list.tsx -------------------------------------------------------------------------------- /src/components/collection-dependencies-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-dependencies-list.tsx -------------------------------------------------------------------------------- /src/components/collection-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-dropdown.tsx -------------------------------------------------------------------------------- /src/components/collection-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-filter.ts -------------------------------------------------------------------------------- /src/components/collection-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-header.tsx -------------------------------------------------------------------------------- /src/components/collection-info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-info.scss -------------------------------------------------------------------------------- /src/components/collection-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-info.tsx -------------------------------------------------------------------------------- /src/components/collection-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-list-item.tsx -------------------------------------------------------------------------------- /src/components/collection-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-list.tsx -------------------------------------------------------------------------------- /src/components/collection-usedby-dependencies-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/collection-usedby-dependencies-list.tsx -------------------------------------------------------------------------------- /src/components/compound-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/compound-filter.tsx -------------------------------------------------------------------------------- /src/components/confirm-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/confirm-modal.tsx -------------------------------------------------------------------------------- /src/components/copy-collection-to-repository-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/copy-collection-to-repository-modal.tsx -------------------------------------------------------------------------------- /src/components/copy-url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/copy-url.tsx -------------------------------------------------------------------------------- /src/components/data-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/data-form.tsx -------------------------------------------------------------------------------- /src/components/date-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/date-component.tsx -------------------------------------------------------------------------------- /src/components/delete-ansible-remote-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/delete-ansible-remote-modal.tsx -------------------------------------------------------------------------------- /src/components/delete-ansible-repository-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/delete-ansible-repository-modal.tsx -------------------------------------------------------------------------------- /src/components/delete-collection-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/delete-collection-modal.tsx -------------------------------------------------------------------------------- /src/components/delete-execution-environment-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/delete-execution-environment-modal.tsx -------------------------------------------------------------------------------- /src/components/delete-group-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/delete-group-modal.tsx -------------------------------------------------------------------------------- /src/components/delete-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/delete-modal.tsx -------------------------------------------------------------------------------- /src/components/delete-user-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/delete-user-modal.tsx -------------------------------------------------------------------------------- /src/components/deprecated-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/deprecated-tag.tsx -------------------------------------------------------------------------------- /src/components/detail-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/detail-list.tsx -------------------------------------------------------------------------------- /src/components/details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/details.tsx -------------------------------------------------------------------------------- /src/components/download-count.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/download-count.tsx -------------------------------------------------------------------------------- /src/components/download-signature-grid-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/download-signature-grid-item.tsx -------------------------------------------------------------------------------- /src/components/empty-state-custom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/empty-state-custom.tsx -------------------------------------------------------------------------------- /src/components/empty-state-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/empty-state-filter.tsx -------------------------------------------------------------------------------- /src/components/empty-state-no-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/empty-state-no-data.tsx -------------------------------------------------------------------------------- /src/components/empty-state-unauthorized.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/empty-state-unauthorized.tsx -------------------------------------------------------------------------------- /src/components/empty-state-xs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/empty-state-xs.tsx -------------------------------------------------------------------------------- /src/components/execution-environment-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/execution-environment-header.tsx -------------------------------------------------------------------------------- /src/components/external-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/external-link.tsx -------------------------------------------------------------------------------- /src/components/form-field-helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/form-field-helper.tsx -------------------------------------------------------------------------------- /src/components/group-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/group-modal.tsx -------------------------------------------------------------------------------- /src/components/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/header.scss -------------------------------------------------------------------------------- /src/components/help-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/help-button.tsx -------------------------------------------------------------------------------- /src/components/hub-about-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/hub-about-modal.tsx -------------------------------------------------------------------------------- /src/components/hub-copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/hub-copy-button.tsx -------------------------------------------------------------------------------- /src/components/hub-list-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/hub-list-toolbar.tsx -------------------------------------------------------------------------------- /src/components/hub-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/hub-pagination.tsx -------------------------------------------------------------------------------- /src/components/import-console.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/import-console.tsx -------------------------------------------------------------------------------- /src/components/import-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/import-list.tsx -------------------------------------------------------------------------------- /src/components/import-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/import-modal.scss -------------------------------------------------------------------------------- /src/components/import-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/import-modal.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/landing-page-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/landing-page-card.tsx -------------------------------------------------------------------------------- /src/components/language-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/language-switcher.tsx -------------------------------------------------------------------------------- /src/components/lazy-distributions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/lazy-distributions.tsx -------------------------------------------------------------------------------- /src/components/lazy-repositories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/lazy-repositories.tsx -------------------------------------------------------------------------------- /src/components/lightspeed-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/lightspeed-modal.tsx -------------------------------------------------------------------------------- /src/components/link-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/link-tabs.tsx -------------------------------------------------------------------------------- /src/components/list-item-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/list-item-actions.tsx -------------------------------------------------------------------------------- /src/components/list-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/list-item.scss -------------------------------------------------------------------------------- /src/components/list-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/list-page.tsx -------------------------------------------------------------------------------- /src/components/loading-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/loading-page.tsx -------------------------------------------------------------------------------- /src/components/loading-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/loading-spinner.tsx -------------------------------------------------------------------------------- /src/components/login-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/login-link.tsx -------------------------------------------------------------------------------- /src/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/logo.tsx -------------------------------------------------------------------------------- /src/components/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/main.tsx -------------------------------------------------------------------------------- /src/components/markdown-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/markdown-editor.scss -------------------------------------------------------------------------------- /src/components/markdown-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/markdown-editor.tsx -------------------------------------------------------------------------------- /src/components/maybe-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/maybe-link.tsx -------------------------------------------------------------------------------- /src/components/multi-repo-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/multi-repo-modal.tsx -------------------------------------------------------------------------------- /src/components/multi-search-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/multi-search-search.tsx -------------------------------------------------------------------------------- /src/components/multiple-repo-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/multiple-repo-selector.tsx -------------------------------------------------------------------------------- /src/components/my-imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/my-imports.scss -------------------------------------------------------------------------------- /src/components/namespace-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/namespace-card.tsx -------------------------------------------------------------------------------- /src/components/namespace-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/namespace-form.scss -------------------------------------------------------------------------------- /src/components/namespace-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/namespace-form.tsx -------------------------------------------------------------------------------- /src/components/namespace-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/namespace-list-item.tsx -------------------------------------------------------------------------------- /src/components/namespace-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/namespace-modal.tsx -------------------------------------------------------------------------------- /src/components/numeric-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/numeric-label.tsx -------------------------------------------------------------------------------- /src/components/page-with-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/page-with-tabs.tsx -------------------------------------------------------------------------------- /src/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/page.tsx -------------------------------------------------------------------------------- /src/components/partner-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/partner-header.tsx -------------------------------------------------------------------------------- /src/components/patternfly-wrappers/l10n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/patternfly-wrappers/l10n.tsx -------------------------------------------------------------------------------- /src/components/patternfly-wrappers/label-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/patternfly-wrappers/label-group.tsx -------------------------------------------------------------------------------- /src/components/patternfly-wrappers/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/patternfly-wrappers/login-form.tsx -------------------------------------------------------------------------------- /src/components/patternfly-wrappers/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/patternfly-wrappers/tooltip.tsx -------------------------------------------------------------------------------- /src/components/permission-categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/permission-categories.tsx -------------------------------------------------------------------------------- /src/components/permission-chip-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/permission-chip-selector.tsx -------------------------------------------------------------------------------- /src/components/preview-roles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/preview-roles.tsx -------------------------------------------------------------------------------- /src/components/provider-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/provider-link.tsx -------------------------------------------------------------------------------- /src/components/pulp-labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/pulp-labels.tsx -------------------------------------------------------------------------------- /src/components/ratings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/ratings.tsx -------------------------------------------------------------------------------- /src/components/remote-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/remote-form.tsx -------------------------------------------------------------------------------- /src/components/render-plugin-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/render-plugin-doc.md -------------------------------------------------------------------------------- /src/components/render-plugin-doc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/render-plugin-doc.scss -------------------------------------------------------------------------------- /src/components/render-plugin-doc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/render-plugin-doc.tsx -------------------------------------------------------------------------------- /src/components/repository-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/repository-badge.tsx -------------------------------------------------------------------------------- /src/components/repository-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/repository-form.tsx -------------------------------------------------------------------------------- /src/components/resources-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/resources-form.tsx -------------------------------------------------------------------------------- /src/components/role-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-form.tsx -------------------------------------------------------------------------------- /src/components/role-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-header.tsx -------------------------------------------------------------------------------- /src/components/role-import-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-import-form.tsx -------------------------------------------------------------------------------- /src/components/role-import-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-import-list.tsx -------------------------------------------------------------------------------- /src/components/role-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-item.tsx -------------------------------------------------------------------------------- /src/components/role-list-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-list-table.tsx -------------------------------------------------------------------------------- /src/components/role-namespace-edit-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-namespace-edit-modal.tsx -------------------------------------------------------------------------------- /src/components/role-namespace-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-namespace-item.tsx -------------------------------------------------------------------------------- /src/components/role-namespace-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-namespace-modal.tsx -------------------------------------------------------------------------------- /src/components/role-permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-permissions.tsx -------------------------------------------------------------------------------- /src/components/role-sync-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/role-sync-form.tsx -------------------------------------------------------------------------------- /src/components/select-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/select-group.tsx -------------------------------------------------------------------------------- /src/components/select-roles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/select-roles.tsx -------------------------------------------------------------------------------- /src/components/select-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/select-user.tsx -------------------------------------------------------------------------------- /src/components/sha-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/sha-label.tsx -------------------------------------------------------------------------------- /src/components/sign-all-certificates-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/sign-all-certificates-modal.tsx -------------------------------------------------------------------------------- /src/components/sign-single-certificate-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/sign-single-certificate-modal.tsx -------------------------------------------------------------------------------- /src/components/signature-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/signature-badge.tsx -------------------------------------------------------------------------------- /src/components/small-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/small-logo.tsx -------------------------------------------------------------------------------- /src/components/sort-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/sort-table.scss -------------------------------------------------------------------------------- /src/components/sort-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/sort-table.tsx -------------------------------------------------------------------------------- /src/components/sort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/sort.tsx -------------------------------------------------------------------------------- /src/components/stateful-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/stateful-dropdown.tsx -------------------------------------------------------------------------------- /src/components/status-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/status-indicator.tsx -------------------------------------------------------------------------------- /src/components/switcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/switcher.scss -------------------------------------------------------------------------------- /src/components/table-of-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/table-of-contents.tsx -------------------------------------------------------------------------------- /src/components/tag-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/tag-label.tsx -------------------------------------------------------------------------------- /src/components/tag-manifest-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/tag-manifest-modal.tsx -------------------------------------------------------------------------------- /src/components/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/tag.tsx -------------------------------------------------------------------------------- /src/components/typeahead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/typeahead.tsx -------------------------------------------------------------------------------- /src/components/ui-version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/ui-version.tsx -------------------------------------------------------------------------------- /src/components/upload-signature-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/upload-signature-modal.tsx -------------------------------------------------------------------------------- /src/components/user-form-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/user-form-page.tsx -------------------------------------------------------------------------------- /src/components/user-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/user-form.tsx -------------------------------------------------------------------------------- /src/components/wizard-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/wizard-modal.tsx -------------------------------------------------------------------------------- /src/components/write-only-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/components/write-only-field.tsx -------------------------------------------------------------------------------- /src/containers/ansible-remote/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-remote/detail.tsx -------------------------------------------------------------------------------- /src/containers/ansible-remote/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-remote/edit.tsx -------------------------------------------------------------------------------- /src/containers/ansible-remote/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-remote/list.tsx -------------------------------------------------------------------------------- /src/containers/ansible-remote/tab-access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-remote/tab-access.tsx -------------------------------------------------------------------------------- /src/containers/ansible-remote/tab-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-remote/tab-details.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/detail.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/edit.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/list.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/tab-access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/tab-access.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/tab-collection-versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/tab-collection-versions.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/tab-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/tab-details.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/tab-distributions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/tab-distributions.tsx -------------------------------------------------------------------------------- /src/containers/ansible-repository/tab-repository-versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-repository/tab-repository-versions.tsx -------------------------------------------------------------------------------- /src/containers/ansible-role/imports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-role/imports.tsx -------------------------------------------------------------------------------- /src/containers/ansible-role/namespace-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-role/namespace-detail.tsx -------------------------------------------------------------------------------- /src/containers/ansible-role/namespace-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-role/namespace-list.tsx -------------------------------------------------------------------------------- /src/containers/ansible-role/role-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-role/role-detail.tsx -------------------------------------------------------------------------------- /src/containers/ansible-role/role-import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-role/role-import.tsx -------------------------------------------------------------------------------- /src/containers/ansible-role/role-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-role/role-list.tsx -------------------------------------------------------------------------------- /src/containers/ansible-role/role-sync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/ansible-role/role-sync.tsx -------------------------------------------------------------------------------- /src/containers/certification-dashboard/certification-dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/certification-dashboard/certification-dashboard.scss -------------------------------------------------------------------------------- /src/containers/certification-dashboard/certification-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/certification-dashboard/certification-dashboard.tsx -------------------------------------------------------------------------------- /src/containers/collection-detail/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/base.ts -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-content.tsx -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-dependencies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-dependencies.scss -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-dependencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-dependencies.tsx -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-detail.scss -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-detail.tsx -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-distributions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-distributions.tsx -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-docs.tsx -------------------------------------------------------------------------------- /src/containers/collection-detail/collection-import-log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/collection-detail/collection-import-log.tsx -------------------------------------------------------------------------------- /src/containers/edit-namespace/edit-namespace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/edit-namespace/edit-namespace.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment-detail/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-detail/base.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment-detail/execution-environment-detail-access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-detail/execution-environment-detail-access.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment-detail/execution-environment-detail-activities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-detail/execution-environment-detail-activities.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment-detail/execution-environment-detail-images.scss: -------------------------------------------------------------------------------- 1 | .hub-c-label-group-tags-column { 2 | max-width: 250px; 3 | } 4 | -------------------------------------------------------------------------------- /src/containers/execution-environment-detail/execution-environment-detail-images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-detail/execution-environment-detail-images.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment-detail/execution-environment-detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-detail/execution-environment-detail.scss -------------------------------------------------------------------------------- /src/containers/execution-environment-detail/execution-environment-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-detail/execution-environment-detail.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment-list/execution-environment-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-list/execution-environment-list.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment-list/execution-environment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-list/execution-environment.scss -------------------------------------------------------------------------------- /src/containers/execution-environment-manifest/execution-environment-manifest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-manifest/execution-environment-manifest.scss -------------------------------------------------------------------------------- /src/containers/execution-environment-manifest/execution-environment-manifest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment-manifest/execution-environment-manifest.tsx -------------------------------------------------------------------------------- /src/containers/execution-environment/registry-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/execution-environment/registry-list.tsx -------------------------------------------------------------------------------- /src/containers/group-management/group-detail-role-management/group-detail-role-management.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/group-management/group-detail-role-management/group-detail-role-management.scss -------------------------------------------------------------------------------- /src/containers/group-management/group-detail-role-management/group-detail-role-management.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/group-management/group-detail-role-management/group-detail-role-management.tsx -------------------------------------------------------------------------------- /src/containers/group-management/group-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/group-management/group-detail.tsx -------------------------------------------------------------------------------- /src/containers/group-management/group-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/group-management/group-list.tsx -------------------------------------------------------------------------------- /src/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/index.ts -------------------------------------------------------------------------------- /src/containers/landing/landing-page.scss: -------------------------------------------------------------------------------- 1 | .footer-link { 2 | padding-right: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /src/containers/landing/landing-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/landing/landing-page.tsx -------------------------------------------------------------------------------- /src/containers/login/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/login/login.tsx -------------------------------------------------------------------------------- /src/containers/my-imports/my-imports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/my-imports/my-imports.tsx -------------------------------------------------------------------------------- /src/containers/namespace-detail/namespace-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/namespace-detail/namespace-detail.tsx -------------------------------------------------------------------------------- /src/containers/namespace-list/my-namespaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/namespace-list/my-namespaces.tsx -------------------------------------------------------------------------------- /src/containers/namespace-list/namespace-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/namespace-list/namespace-list.scss -------------------------------------------------------------------------------- /src/containers/namespace-list/namespace-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/namespace-list/namespace-list.tsx -------------------------------------------------------------------------------- /src/containers/namespace-list/partners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/namespace-list/partners.tsx -------------------------------------------------------------------------------- /src/containers/not-found/dispatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/not-found/dispatch.tsx -------------------------------------------------------------------------------- /src/containers/not-found/not-found.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/not-found/not-found.scss -------------------------------------------------------------------------------- /src/containers/not-found/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/not-found/not-found.tsx -------------------------------------------------------------------------------- /src/containers/role-management/role-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/role-management/role-create.tsx -------------------------------------------------------------------------------- /src/containers/role-management/role-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/role-management/role-edit.tsx -------------------------------------------------------------------------------- /src/containers/role-management/role-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/role-management/role-list.tsx -------------------------------------------------------------------------------- /src/containers/search/multi-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/search/multi-search.tsx -------------------------------------------------------------------------------- /src/containers/search/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/search/search.scss -------------------------------------------------------------------------------- /src/containers/search/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/search/search.tsx -------------------------------------------------------------------------------- /src/containers/settings/user-profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/settings/user-profile.tsx -------------------------------------------------------------------------------- /src/containers/signature-keys/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/signature-keys/list.tsx -------------------------------------------------------------------------------- /src/containers/task-management/task-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/task-management/task-detail.tsx -------------------------------------------------------------------------------- /src/containers/task-management/task-list-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/task-management/task-list-view.tsx -------------------------------------------------------------------------------- /src/containers/task-management/task.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/task-management/task.scss -------------------------------------------------------------------------------- /src/containers/token/token-insights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/token/token-insights.tsx -------------------------------------------------------------------------------- /src/containers/token/token-standalone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/token/token-standalone.tsx -------------------------------------------------------------------------------- /src/containers/user-management/user-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/user-management/user-create.tsx -------------------------------------------------------------------------------- /src/containers/user-management/user-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/user-management/user-detail.tsx -------------------------------------------------------------------------------- /src/containers/user-management/user-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/user-management/user-edit.tsx -------------------------------------------------------------------------------- /src/containers/user-management/user-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/containers/user-management/user-list.tsx -------------------------------------------------------------------------------- /src/entry-insights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/entry-insights.tsx -------------------------------------------------------------------------------- /src/entry-standalone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/entry-standalone.tsx -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/index.html -------------------------------------------------------------------------------- /src/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/l10n.ts -------------------------------------------------------------------------------- /src/loaders/app-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/app-context.ts -------------------------------------------------------------------------------- /src/loaders/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/app.scss -------------------------------------------------------------------------------- /src/loaders/insights/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/insights/loader.tsx -------------------------------------------------------------------------------- /src/loaders/insights/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/insights/routes.tsx -------------------------------------------------------------------------------- /src/loaders/load-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/load-context.ts -------------------------------------------------------------------------------- /src/loaders/standalone/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/standalone/layout.tsx -------------------------------------------------------------------------------- /src/loaders/standalone/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/standalone/loader.tsx -------------------------------------------------------------------------------- /src/loaders/standalone/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/standalone/menu.tsx -------------------------------------------------------------------------------- /src/loaders/standalone/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/loaders/standalone/routes.tsx -------------------------------------------------------------------------------- /src/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/paths.ts -------------------------------------------------------------------------------- /src/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/permissions.ts -------------------------------------------------------------------------------- /src/utilities/assign-roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/assign-roles.ts -------------------------------------------------------------------------------- /src/utilities/can-sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/can-sign.ts -------------------------------------------------------------------------------- /src/utilities/content-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/content-summary.ts -------------------------------------------------------------------------------- /src/utilities/delete-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/delete-collection.ts -------------------------------------------------------------------------------- /src/utilities/download-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/download-data.ts -------------------------------------------------------------------------------- /src/utilities/fail-alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/fail-alerts.tsx -------------------------------------------------------------------------------- /src/utilities/filter-is-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/filter-is-set.ts -------------------------------------------------------------------------------- /src/utilities/get-human-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/get-human-size.ts -------------------------------------------------------------------------------- /src/utilities/get-repo-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/get-repo-url.ts -------------------------------------------------------------------------------- /src/utilities/has-permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/has-permission.ts -------------------------------------------------------------------------------- /src/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/index.ts -------------------------------------------------------------------------------- /src/utilities/last-sync-task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/last-sync-task.tsx -------------------------------------------------------------------------------- /src/utilities/login-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/login-url.ts -------------------------------------------------------------------------------- /src/utilities/map-error-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/map-error-messages.ts -------------------------------------------------------------------------------- /src/utilities/map-role-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/map-role-errors.ts -------------------------------------------------------------------------------- /src/utilities/namespace-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/namespace-title.ts -------------------------------------------------------------------------------- /src/utilities/param-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/param-helper.ts -------------------------------------------------------------------------------- /src/utilities/parse-pulp-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/parse-pulp-id.ts -------------------------------------------------------------------------------- /src/utilities/repo-signing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/repo-signing.ts -------------------------------------------------------------------------------- /src/utilities/repository-base-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/repository-base-path.ts -------------------------------------------------------------------------------- /src/utilities/repository-remove-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/repository-remove-collection.ts -------------------------------------------------------------------------------- /src/utilities/role-namespace-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/role-namespace-info.ts -------------------------------------------------------------------------------- /src/utilities/sanitize-docs-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/sanitize-docs-urls.ts -------------------------------------------------------------------------------- /src/utilities/task-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/task-alert.tsx -------------------------------------------------------------------------------- /src/utilities/translate-locked-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/translate-locked-role.ts -------------------------------------------------------------------------------- /src/utilities/translate-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/translate-task.ts -------------------------------------------------------------------------------- /src/utilities/truncate-sha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/truncate-sha.ts -------------------------------------------------------------------------------- /src/utilities/validate-url-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/validate-url-helper.ts -------------------------------------------------------------------------------- /src/utilities/wait-for-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/wait-for-task.ts -------------------------------------------------------------------------------- /src/utilities/with-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/with-router.tsx -------------------------------------------------------------------------------- /src/utilities/write-only-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/src/utilities/write-only-fields.ts -------------------------------------------------------------------------------- /static/images/default-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/images/default-logo.svg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/galaxy_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/images/galaxy_logo.svg -------------------------------------------------------------------------------- /static/images/logo_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/images/logo_large.svg -------------------------------------------------------------------------------- /static/images/logo_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/images/logo_small.svg -------------------------------------------------------------------------------- /static/images/not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/images/not_found.svg -------------------------------------------------------------------------------- /static/images/rh-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/images/rh-logo-white.svg -------------------------------------------------------------------------------- /static/scores/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/scores/collection.json -------------------------------------------------------------------------------- /static/scores/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/static/scores/role.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/README.md -------------------------------------------------------------------------------- /test/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress.config.js -------------------------------------------------------------------------------- /test/cypress.env.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress.env.json.template -------------------------------------------------------------------------------- /test/cypress/e2e/approval-modal/approval-multiple-repos-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/approval-modal/approval-multiple-repos-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/approval-modal/approval-multiple-repos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/approval-modal/approval-multiple-repos.js -------------------------------------------------------------------------------- /test/cypress/e2e/approval-modal/feature-flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/approval-modal/feature-flags.js -------------------------------------------------------------------------------- /test/cypress/e2e/approval/approval-dashboard-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/approval/approval-dashboard-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/approval/approval-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/approval/approval-process.js -------------------------------------------------------------------------------- /test/cypress/e2e/approval/collection-approval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/approval/collection-approval.js -------------------------------------------------------------------------------- /test/cypress/e2e/approval/signing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/approval/signing.js -------------------------------------------------------------------------------- /test/cypress/e2e/collections/collection-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/collections/collection-detail.js -------------------------------------------------------------------------------- /test/cypress/e2e/collections/collection-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/collections/collection-upload.js -------------------------------------------------------------------------------- /test/cypress/e2e/collections/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/collections/collection.js -------------------------------------------------------------------------------- /test/cypress/e2e/collections/collections-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/collections/collections-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/community/compose.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/community/compose.env -------------------------------------------------------------------------------- /test/cypress/e2e/community/feature-flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/community/feature-flags.js -------------------------------------------------------------------------------- /test/cypress/e2e/community/lightspeed-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/community/lightspeed-modal.js -------------------------------------------------------------------------------- /test/cypress/e2e/community/view-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/community/view-only.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/api-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/api-token.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/docs-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/docs-menu.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/execution-environments-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/execution-environments-edit.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/execution-environments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/execution-environments.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/group-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/group-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/group-management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/group-management.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/group-roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/group-roles.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/l10n.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/login.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/menu.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/namespace-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/namespace-delete.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/namespace-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/namespace-detail.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/namespace-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/namespace-edit.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/namespace-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/namespace-form.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/namespace-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/namespace-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/profile.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/rbac-access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/rbac-access.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/rbac-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/rbac-create.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/rbac-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/rbac-edit.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/rbac-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/rbac-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/rbac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/rbac.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/task-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/task-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/task-management-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/task-management-detail.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/task-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/task-status.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/token-management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/token-management.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/user-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/user-dashboard.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/user-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/user-detail.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/user-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/user-filter.js -------------------------------------------------------------------------------- /test/cypress/e2e/namespaces/user-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/namespaces/user-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/repo/container-signing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/repo/container-signing.js -------------------------------------------------------------------------------- /test/cypress/e2e/repo/imports-filter-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/repo/imports-filter-search.js -------------------------------------------------------------------------------- /test/cypress/e2e/repo/imports-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/repo/imports-filter.js -------------------------------------------------------------------------------- /test/cypress/e2e/repo/remote-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/repo/remote-registry.js -------------------------------------------------------------------------------- /test/cypress/e2e/repo/repository-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/repo/repository-list.js -------------------------------------------------------------------------------- /test/cypress/e2e/repo/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/repo/repository.js -------------------------------------------------------------------------------- /test/cypress/e2e/screenshots/compose.env: -------------------------------------------------------------------------------- 1 | PULP_GALAXY_ENABLE_LEGACY_ROLES='true' 2 | -------------------------------------------------------------------------------- /test/cypress/e2e/screenshots/screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/e2e/screenshots/screenshots.js -------------------------------------------------------------------------------- /test/cypress/fixtures/collections/ansible-posix-1.4.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/fixtures/collections/ansible-posix-1.4.0.tar.gz -------------------------------------------------------------------------------- /test/cypress/fixtures/collections/invalid-collection-name-1.0.0-bad.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/fixtures/collections/invalid-collection-name-1.0.0-bad.tar.gz -------------------------------------------------------------------------------- /test/cypress/fixtures/collections/namespace_detail_test-invalid-1.0.0(1).tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/fixtures/collections/namespace_detail_test-invalid-1.0.0(1).tar.gz -------------------------------------------------------------------------------- /test/cypress/fixtures/yaml/test.yaml: -------------------------------------------------------------------------------- 1 | collections: 2 | - name: awx.awx 3 | -------------------------------------------------------------------------------- /test/cypress/plugins/console-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/plugins/console-logger.js -------------------------------------------------------------------------------- /test/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/support/commands.js -------------------------------------------------------------------------------- /test/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/support/e2e.js -------------------------------------------------------------------------------- /test/cypress/support/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/cypress/support/login.js -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/test/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/ansible-hub-ui/HEAD/tsconfig.json --------------------------------------------------------------------------------