├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── 4-bug.yml ├── dependabot.yml ├── release-drafter.yml ├── renovate.json └── workflows │ ├── codeql-analysis.yml │ └── release-drafter.yml ├── .gitignore ├── .nvmrc ├── .stylelintrc ├── .tool-versions ├── .typos.toml ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-outdated.cjs ├── releases │ └── yarn-4.12.0.cjs └── versions │ └── d94917b0.yml ├── .yarnrc.yml ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE.txt ├── README.md ├── babel.config.json ├── eslint.config.mjs ├── package.json ├── plugins ├── gatsby-jenkinsci-fieldextensions │ ├── babel.config.json │ ├── gatsby-node.mjs │ ├── gatsby-node.test.mjs │ └── package.json ├── gatsby-rehype-autolink-headers │ ├── __tests__ │ │ └── index.test.mjs │ ├── gatsby-browser.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── index.mjs │ └── package.json ├── gatsby-rehype-rewrite-ids │ ├── __tests__ │ │ └── index.test.mjs │ ├── gatsby-node.js │ ├── index.mjs │ └── package.json ├── gatsby-rehype-rewrite-img-src │ ├── __tests__ │ │ └── index.test.mjs │ ├── babel.config.json │ ├── gatsby-node.mjs │ ├── index.mjs │ ├── jest-global-setup.mjs │ └── package.json ├── gatsby-rehype-wrap-tables-bootstrap │ ├── __tests__ │ │ └── index.test.mjs │ ├── babel.config.json │ ├── gatsby-node.mjs │ ├── index.mjs │ ├── jest-global-setup.mjs │ └── package.json ├── gatsby-source-jenkinsplugins │ ├── .editorconfig │ ├── __mocks__ │ │ ├── plugin-doc.md │ │ ├── plugin-health-score.json │ │ ├── split-plugins.txt │ │ ├── table.md │ │ └── update-center.actual.json │ ├── __snapshots__ │ │ └── utils.test.mjs.snap │ ├── babel.config.json │ ├── categories.json │ ├── gatsby-node.mjs │ ├── index.mjs │ ├── jest-global-setup.mjs │ ├── package.json │ ├── utils.mjs │ └── utils.test.mjs ├── gatsby-transformer-rehype │ ├── .babelrc │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── __tests__ │ │ └── dummy.js │ ├── create-schema-customization.mjs │ ├── extend-node-type.mjs │ ├── gatsby-node.mjs │ ├── on-node-create.mjs │ └── package.json └── plugin-site │ ├── .editorconfig │ ├── .gitignore │ ├── __mocks__ │ ├── file-mock.js │ └── gatsby.js │ ├── __tests__ │ ├── pages │ │ └── 404.jsx │ └── src │ │ └── commons │ │ └── helper.test.js │ ├── gatsby-browser.js │ ├── gatsby-config.mjs │ ├── gatsby-node.mjs │ ├── jest-global-setup.js │ ├── jest-loadershim.js │ ├── jest-preprocess.js │ ├── jest-setup-test-env.js │ ├── jest.config.js │ ├── package.json │ ├── postcss.config.js │ └── src │ ├── commons │ └── helper.js │ ├── components │ ├── ActiveCategory.jsx │ ├── ActiveFilters.css │ ├── ActiveFilters.jsx │ ├── ActiveLabel.jsx │ ├── Categories.jsx │ ├── Category.jsx │ ├── Checksum.jsx │ ├── Checksum.module.css │ ├── ClipboardButton.jsx │ ├── ClipboardButton.module.css │ ├── Filters.css │ ├── Filters.jsx │ ├── FiltersHooks.jsx │ ├── Footer.jsx │ ├── Icon.jsx │ ├── InstallInstructions.jsx │ ├── InstallViaCLI.jsx │ ├── InstallViaCLI.module.css │ ├── JenkinsVoltron.jsx │ ├── Label.jsx │ ├── LineChart.jsx │ ├── LineChart.test.jsx │ ├── MavenDependency.jsx │ ├── Pages.jsx │ ├── Pagination.jsx │ ├── Plugin.jsx │ ├── PluginActiveWarnings.jsx │ ├── PluginDependencies.jsx │ ├── PluginDevelopers.jsx │ ├── PluginGovernanceStatus.jsx │ ├── PluginHealthScore.css │ ├── PluginHealthScore.jsx │ ├── PluginHealthScoreProgressBar.jsx │ ├── PluginInactiveWarnings.jsx │ ├── PluginIssueTrackers.jsx │ ├── PluginIssues.jsx │ ├── PluginLabels.jsx │ ├── PluginLastReleased.jsx │ ├── PluginLastReleased.test.jsx │ ├── PluginLink.jsx │ ├── PluginPageLayout.jsx │ ├── PluginPageTabs.jsx │ ├── PluginReadableInstalls.jsx │ ├── PluginReadableVersion.jsx │ ├── PluginReleases.css │ ├── PluginReleases.jsx │ ├── PluginWikiContent.jsx │ ├── PluginWikiContent.module.css │ ├── SearchBox.css │ ├── SearchBox.jsx │ ├── SearchByAlgolia.jsx │ ├── SearchByAlgolia.module.css │ ├── SearchResults.css │ ├── SearchResults.jsx │ ├── SeoHeader.jsx │ ├── SiteVersion.jsx │ ├── Sort.jsx │ ├── Spinner.jsx │ ├── SuspendedPlugins.jsx │ ├── ThankAContributorNote.jsx │ ├── View.jsx │ └── Views.jsx │ ├── fragments.js │ ├── hooks │ ├── useCopyToClipboard.js │ └── useMediaQuery.js │ ├── images │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── clipboard.svg │ ├── jar.png │ ├── jenkins-voltron-271x294x24.png │ ├── person-circle-outline.svg │ ├── plug_256px.png │ └── search-by-algolia-light-background.svg │ ├── pages │ └── 404.jsx │ ├── proptypes.js │ ├── styles │ ├── base.css │ ├── fonts │ │ ├── Lato-Black.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Light.ttf │ │ ├── Lato-Regular.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── TitilliumWeb-Thin.ttf │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Light.ttf │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ ├── ji.svg │ │ ├── ji.ttf │ │ └── ji.woff │ └── tooltip.css │ ├── templates │ ├── index.css │ ├── index.jsx │ ├── plugin_dependencies.jsx │ ├── plugin_dependencies.test.jsx │ ├── plugin_documentation.jsx │ ├── plugin_documentation.test.jsx │ ├── plugin_healthScore.jsx │ ├── plugin_issues.jsx │ ├── plugin_issues.test.jsx │ ├── plugin_releases.jsx │ ├── plugin_releases.test.jsx │ ├── search.jsx │ └── tombstone.jsx │ └── utils │ ├── algolia-queries.mjs │ ├── forceArray.mjs │ └── ucfirst.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jenkins-infra/plugin-site 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.github/ISSUE_TEMPLATE/4-bug.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.19.6 -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 20.19.6 2 | -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.typos.toml -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-outdated.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.yarn/plugins/@yarnpkg/plugin-outdated.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.12.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.yarn/releases/yarn-4.12.0.cjs -------------------------------------------------------------------------------- /.yarn/versions/d94917b0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.yarn/versions/d94917b0.yml -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/babel.config.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/package.json -------------------------------------------------------------------------------- /plugins/gatsby-jenkinsci-fieldextensions/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-jenkinsci-fieldextensions/babel.config.json -------------------------------------------------------------------------------- /plugins/gatsby-jenkinsci-fieldextensions/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-jenkinsci-fieldextensions/gatsby-node.mjs -------------------------------------------------------------------------------- /plugins/gatsby-jenkinsci-fieldextensions/gatsby-node.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-jenkinsci-fieldextensions/gatsby-node.test.mjs -------------------------------------------------------------------------------- /plugins/gatsby-jenkinsci-fieldextensions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-jenkinsci-fieldextensions/package.json -------------------------------------------------------------------------------- /plugins/gatsby-rehype-autolink-headers/__tests__/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-autolink-headers/__tests__/index.test.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-autolink-headers/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-autolink-headers/gatsby-browser.js -------------------------------------------------------------------------------- /plugins/gatsby-rehype-autolink-headers/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-autolink-headers/gatsby-node.js -------------------------------------------------------------------------------- /plugins/gatsby-rehype-autolink-headers/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-autolink-headers/gatsby-ssr.js -------------------------------------------------------------------------------- /plugins/gatsby-rehype-autolink-headers/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-autolink-headers/index.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-autolink-headers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-autolink-headers/package.json -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-ids/__tests__/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-ids/__tests__/index.test.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-ids/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-ids/gatsby-node.js -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-ids/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-ids/index.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-ids/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-ids/package.json -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-img-src/__tests__/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-img-src/__tests__/index.test.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-img-src/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-img-src/babel.config.json -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-img-src/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-img-src/gatsby-node.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-img-src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-img-src/index.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-img-src/jest-global-setup.mjs: -------------------------------------------------------------------------------- 1 | export default async () => { 2 | process.env.TZ = 'UTC'; 3 | }; 4 | -------------------------------------------------------------------------------- /plugins/gatsby-rehype-rewrite-img-src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-rewrite-img-src/package.json -------------------------------------------------------------------------------- /plugins/gatsby-rehype-wrap-tables-bootstrap/__tests__/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-wrap-tables-bootstrap/__tests__/index.test.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-wrap-tables-bootstrap/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-wrap-tables-bootstrap/babel.config.json -------------------------------------------------------------------------------- /plugins/gatsby-rehype-wrap-tables-bootstrap/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-wrap-tables-bootstrap/gatsby-node.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-wrap-tables-bootstrap/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-wrap-tables-bootstrap/index.mjs -------------------------------------------------------------------------------- /plugins/gatsby-rehype-wrap-tables-bootstrap/jest-global-setup.mjs: -------------------------------------------------------------------------------- 1 | export default async () => { 2 | process.env.TZ = 'UTC'; 3 | }; 4 | -------------------------------------------------------------------------------- /plugins/gatsby-rehype-wrap-tables-bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-rehype-wrap-tables-bootstrap/package.json -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/.editorconfig -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/__mocks__/plugin-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/__mocks__/plugin-doc.md -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/__mocks__/plugin-health-score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/__mocks__/plugin-health-score.json -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/__mocks__/split-plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/__mocks__/split-plugins.txt -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/__mocks__/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/__mocks__/table.md -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/__mocks__/update-center.actual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/__mocks__/update-center.actual.json -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/__snapshots__/utils.test.mjs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/__snapshots__/utils.test.mjs.snap -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/babel.config.json -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/categories.json -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/gatsby-node.mjs -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/index.mjs -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/jest-global-setup.mjs: -------------------------------------------------------------------------------- 1 | export default async () => { 2 | process.env.TZ = 'UTC'; 3 | }; 4 | -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/package.json -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/utils.mjs -------------------------------------------------------------------------------- /plugins/gatsby-source-jenkinsplugins/utils.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-source-jenkinsplugins/utils.test.mjs -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/.babelrc -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/.gitignore: -------------------------------------------------------------------------------- 1 | utils 2 | -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/.npmignore -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/README.md -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/__tests__/dummy.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/create-schema-customization.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/create-schema-customization.mjs -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/extend-node-type.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/extend-node-type.mjs -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/gatsby-node.mjs -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/on-node-create.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/on-node-create.mjs -------------------------------------------------------------------------------- /plugins/gatsby-transformer-rehype/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/gatsby-transformer-rehype/package.json -------------------------------------------------------------------------------- /plugins/plugin-site/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/.editorconfig -------------------------------------------------------------------------------- /plugins/plugin-site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/.gitignore -------------------------------------------------------------------------------- /plugins/plugin-site/__mocks__/file-mock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /plugins/plugin-site/__mocks__/gatsby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/__mocks__/gatsby.js -------------------------------------------------------------------------------- /plugins/plugin-site/__tests__/pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/__tests__/pages/404.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/__tests__/src/commons/helper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/__tests__/src/commons/helper.test.js -------------------------------------------------------------------------------- /plugins/plugin-site/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/gatsby-browser.js -------------------------------------------------------------------------------- /plugins/plugin-site/gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/gatsby-config.mjs -------------------------------------------------------------------------------- /plugins/plugin-site/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/gatsby-node.mjs -------------------------------------------------------------------------------- /plugins/plugin-site/jest-global-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/jest-global-setup.js -------------------------------------------------------------------------------- /plugins/plugin-site/jest-loadershim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/jest-loadershim.js -------------------------------------------------------------------------------- /plugins/plugin-site/jest-preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/jest-preprocess.js -------------------------------------------------------------------------------- /plugins/plugin-site/jest-setup-test-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/jest-setup-test-env.js -------------------------------------------------------------------------------- /plugins/plugin-site/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/jest.config.js -------------------------------------------------------------------------------- /plugins/plugin-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/package.json -------------------------------------------------------------------------------- /plugins/plugin-site/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/postcss.config.js -------------------------------------------------------------------------------- /plugins/plugin-site/src/commons/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/commons/helper.js -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/ActiveCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/ActiveCategory.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/ActiveFilters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/ActiveFilters.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/ActiveFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/ActiveFilters.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/ActiveLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/ActiveLabel.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Categories.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Category.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Checksum.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Checksum.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Checksum.module.css: -------------------------------------------------------------------------------- 1 | .checksums { 2 | font-size: 0.7rem; 3 | } -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/ClipboardButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/ClipboardButton.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/ClipboardButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/ClipboardButton.module.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Filters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Filters.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Filters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Filters.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/FiltersHooks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/FiltersHooks.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Footer.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Icon.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/InstallInstructions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/InstallInstructions.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/InstallViaCLI.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/InstallViaCLI.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/InstallViaCLI.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/InstallViaCLI.module.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/JenkinsVoltron.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/JenkinsVoltron.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Label.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Label.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/LineChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/LineChart.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/LineChart.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/LineChart.test.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/MavenDependency.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/MavenDependency.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Pages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Pages.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Pagination.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Plugin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Plugin.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginActiveWarnings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginActiveWarnings.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginDependencies.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginDependencies.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginDevelopers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginDevelopers.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginGovernanceStatus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginGovernanceStatus.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginHealthScore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginHealthScore.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginHealthScore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginHealthScore.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginHealthScoreProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginHealthScoreProgressBar.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginInactiveWarnings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginInactiveWarnings.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginIssueTrackers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginIssueTrackers.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginIssues.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginIssues.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginLabels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginLabels.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginLastReleased.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginLastReleased.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginLastReleased.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginLastReleased.test.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginLink.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginPageLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginPageLayout.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginPageTabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginPageTabs.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginReadableInstalls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginReadableInstalls.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginReadableVersion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginReadableVersion.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginReleases.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginReleases.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginReleases.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginReleases.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginWikiContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginWikiContent.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/PluginWikiContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/PluginWikiContent.module.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SearchBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SearchBox.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SearchBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SearchBox.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SearchByAlgolia.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SearchByAlgolia.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SearchByAlgolia.module.css: -------------------------------------------------------------------------------- 1 | .root { 2 | padding-left: 1em; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SearchResults.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SearchResults.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SearchResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SearchResults.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SeoHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SeoHeader.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SiteVersion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SiteVersion.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Sort.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Sort.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Spinner.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/SuspendedPlugins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/SuspendedPlugins.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/ThankAContributorNote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/ThankAContributorNote.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/View.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/components/Views.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/components/Views.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/fragments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/fragments.js -------------------------------------------------------------------------------- /plugins/plugin-site/src/hooks/useCopyToClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/hooks/useCopyToClipboard.js -------------------------------------------------------------------------------- /plugins/plugin-site/src/hooks/useMediaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/hooks/useMediaQuery.js -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/apple-touch-icon.png -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/clipboard.svg -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/jar.png -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/jenkins-voltron-271x294x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/jenkins-voltron-271x294x24.png -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/person-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/person-circle-outline.svg -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/plug_256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/plug_256px.png -------------------------------------------------------------------------------- /plugins/plugin-site/src/images/search-by-algolia-light-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/images/search-by-algolia-light-background.svg -------------------------------------------------------------------------------- /plugins/plugin-site/src/pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/pages/404.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/proptypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/proptypes.js -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/base.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/TitilliumWeb-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/TitilliumWeb-Thin.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/icomoon.eot -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/icomoon.svg -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/icomoon.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/icomoon.woff -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/ji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/ji.svg -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/ji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/ji.ttf -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/fonts/ji.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/fonts/ji.woff -------------------------------------------------------------------------------- /plugins/plugin-site/src/styles/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/styles/tooltip.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/index.css -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/index.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_dependencies.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_dependencies.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_dependencies.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_dependencies.test.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_documentation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_documentation.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_documentation.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_documentation.test.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_healthScore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_healthScore.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_issues.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_issues.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_issues.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_issues.test.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_releases.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_releases.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/plugin_releases.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/plugin_releases.test.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/search.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/templates/tombstone.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/templates/tombstone.jsx -------------------------------------------------------------------------------- /plugins/plugin-site/src/utils/algolia-queries.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/utils/algolia-queries.mjs -------------------------------------------------------------------------------- /plugins/plugin-site/src/utils/forceArray.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/utils/forceArray.mjs -------------------------------------------------------------------------------- /plugins/plugin-site/src/utils/ucfirst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/plugins/plugin-site/src/utils/ucfirst.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-infra/plugin-site/HEAD/yarn.lock --------------------------------------------------------------------------------