diff --git a/.gitignore b/.gitignore index cb925c764..89f676831 100644 --- a/.gitignore +++ b/.gitignore @@ -18,8 +18,12 @@ node_modules .parcel-cache Public/main.js Public/main.js.map +Public/shared.js +Public/shared.js.map Public/main.css Public/main.css.map +Public/shared.css +Public/shared.css.map Public/docc.css Public/docc.css.map Tests/AppTests/__Snapshots__/WebpageSnapshotTests/* diff --git a/FrontEnd/docc.scss b/FrontEnd/docc.scss index 6f2285146..4e594d259 100644 --- a/FrontEnd/docc.scss +++ b/FrontEnd/docc.scss @@ -18,9 +18,6 @@ $mobile-breakpoint: 740px; -@import 'styles/colors'; -@import 'styles/images'; - header.spi, footer.spi { position: sticky; diff --git a/FrontEnd/esbuild.mjs b/FrontEnd/esbuild.mjs index b23db5090..00038f3f4 100755 --- a/FrontEnd/esbuild.mjs +++ b/FrontEnd/esbuild.mjs @@ -17,7 +17,13 @@ import { sassPlugin } from 'esbuild-sass-plugin' try { const context = await esbuild.context({ - entryPoints: ['FrontEnd/main.js', 'FrontEnd/main.scss', 'FrontEnd/docc.scss'], + entryPoints: [ + 'FrontEnd/main.js', + 'FrontEnd/shared.js', + 'FrontEnd/main.scss', + 'FrontEnd/docc.scss', + 'FrontEnd/shared.scss', + ], outdir: 'Public', bundle: true, sourcemap: true, diff --git a/FrontEnd/main.scss b/FrontEnd/main.scss index aa4c05d54..b00e0f8b2 100644 --- a/FrontEnd/main.scss +++ b/FrontEnd/main.scss @@ -22,13 +22,11 @@ $mobile-breakpoint: 740px; @import 'styles/breadcrumbs'; @import 'styles/build_logs'; @import 'styles/build_monitor'; -@import 'styles/colors'; @import 'styles/copyable_input'; @import 'styles/error'; @import 'styles/github_highlighting'; @import 'styles/header_footer'; @import 'styles/home'; -@import 'styles/images'; @import 'styles/keywords'; @import 'styles/layout'; @import 'styles/maintainer_info'; diff --git a/FrontEnd/scripts/debug_panel.js b/FrontEnd/scripts/debug_panel.js new file mode 100644 index 000000000..33cd70d78 --- /dev/null +++ b/FrontEnd/scripts/debug_panel.js @@ -0,0 +1,91 @@ +// Copyright Dave Verwer, Sven A. Schmidt, and other contributors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +export class SPIDebugPanel extends HTMLElement { + connectedCallback() { + // Debug console is Hidden by default. Make it visble by typing: + // `localStorage.setItem('spiDebug', 'true');` + // into the browser console. + if (localStorage.getItem('spiDebug') === 'true') { + this.classList.remove('hidden') + + this.reset() + this.addButtons() + this.addCanonicalUrls() + } + } + + disconnectedCallback() { + console.log('SPIDebugPanel disconnectedCallback') + } + + reset() { + const buttonsContainer = this.querySelector('.buttons') + if (buttonsContainer) buttonsContainer.remove() + + const dynamicRowElements = this.querySelectorAll('tr:not([server-side])') + dynamicRowElements.forEach((row) => row.remove()) + } + + addButtons() { + const hideButton = document.createElement('button') + hideButton.innerText = 'Hide' + hideButton.title = 'Temporarily hide this panel' + hideButton.addEventListener('click', () => { + this.classList.add('hidden') + }) + + const disableButton = document.createElement('button') + disableButton.innerText = 'Disable' + disableButton.title = 'Disable the debug panel' + disableButton.addEventListener('click', () => { + localStorage.setItem('spiDebug', 'false') + this.classList.add('hidden') + }) + + const buttonsContainer = document.createElement('div') + buttonsContainer.classList.add('buttons') + buttonsContainer.appendChild(hideButton) + buttonsContainer.appendChild(disableButton) + this.prepend(buttonsContainer) + } + + newTableRow(title, value, valueCssClass) { + const tableElement = this.querySelector('table > tbody') + const rowElement = document.createElement('tr') + + const titleCellElement = document.createElement('td') + titleCellElement.innerText = title + + const valueSpanElement = document.createElement('span') + valueSpanElement.innerText = value + const valueCellElement = document.createElement('td') + valueCellElement.appendChild(valueSpanElement) + if (valueCssClass) valueCellElement.classList.add(valueCssClass) + + rowElement.appendChild(titleCellElement) + rowElement.appendChild(valueCellElement) + tableElement.appendChild(rowElement) + } + + addCanonicalUrls() { + const canonicalUrl = document.querySelector('link[rel="canonical"]').href + const windowUrl = window.location.href + const matchingCanonicalUrl = canonicalUrl === windowUrl + + this.newTableRow('Canonical URL', canonicalUrl) + this.newTableRow('Window URL', windowUrl) + this.newTableRow('Canonical Match', matchingCanonicalUrl, matchingCanonicalUrl ? 'green' : 'red') + } +} diff --git a/FrontEnd/shared.js b/FrontEnd/shared.js new file mode 100644 index 000000000..d7781af4f --- /dev/null +++ b/FrontEnd/shared.js @@ -0,0 +1,19 @@ +// Copyright Dave Verwer, Sven A. Schmidt, and other contributors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import { SPIDebugPanel } from './scripts/debug_panel.js' + +customElements.define('spi-debug-panel', SPIDebugPanel) + +//# sourceMappingURL=shared.js.map diff --git a/FrontEnd/shared.scss b/FrontEnd/shared.scss new file mode 100644 index 000000000..6074dd7bf --- /dev/null +++ b/FrontEnd/shared.scss @@ -0,0 +1,22 @@ +// Copyright Dave Verwer, Sven A. Schmidt, and other contributors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// ------------------------------------------------------------------------- +// Any styles shared between SPI and the SPI documentation pages. +// ------------------------------------------------------------------------- + +@import 'styles/colors'; +@import 'styles/utility'; +@import 'styles/debug_panel'; +@import 'styles/images'; diff --git a/FrontEnd/styles/base.scss b/FrontEnd/styles/base.scss index 3495d2f01..ec67efc9f 100644 --- a/FrontEnd/styles/base.scss +++ b/FrontEnd/styles/base.scss @@ -226,15 +226,6 @@ a.big-button { background-color: var(--announcement-background); } -.hidden { - display: none; -} - -.trimmed { - overflow: hidden; - text-overflow: ellipsis; -} - .count-tag { padding: 1px 5px; font-size: 10px; diff --git a/FrontEnd/styles/colors.scss b/FrontEnd/styles/colors.scss index d013ecefd..5d27d3c30 100644 --- a/FrontEnd/styles/colors.scss +++ b/FrontEnd/styles/colors.scss @@ -187,6 +187,10 @@ --avatar-shadow: 0 2px 2px 3px rgba(0, 0, 0, 5%); --rss-subscribe-color: var(--orange); + + --debug-console-background: var(--light-blue); + --debug-console-border: var(--grey); + --debug-console-button-hover: var(--light-grey); } // Dark mode. @@ -309,5 +313,9 @@ rgba(25, 25, 35, 0%) 50%, rgba(25, 25, 35, 100%) 100% ); + + --debug-console-background: var(--dark-blue); + --debug-console-border: var(--light-grey); + --debug-console-button-hover: var(--dark-grey); } } diff --git a/FrontEnd/styles/debug_panel.scss b/FrontEnd/styles/debug_panel.scss new file mode 100644 index 000000000..77d7d78b4 --- /dev/null +++ b/FrontEnd/styles/debug_panel.scss @@ -0,0 +1,89 @@ +// Copyright Dave Verwer, Sven A. Schmidt, and other contributors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// ------------------------------------------------------------------------- +// Debug console panel shared between the site and documentation. +// ------------------------------------------------------------------------- + +spi-debug-panel { + position: fixed; + bottom: 0; + left: 0; + right: 0; + z-index: 1000; + overflow-y: auto; + max-height: 500px; + min-height: 100px; + padding: 18px; + background-color: var(--debug-console-background); + border-top: 1px solid var(--debug-console-border); + + .buttons { + position: absolute; + top: 0; + right: 0; + display: flex; + gap: 10px; + padding: 5px; + + button { + cursor: pointer; + padding: 0 6px; + font-size: 10px; + color: var(--page-text); + background: none; + border: none; + border: 1px solid var(--debug-console-border); + border-radius: 50px; + + &:hover { + background-color: var(--debug-console-button-hover); + } + } + } + + table { + width: 100%; + border-collapse: collapse; + + tr { + > td:first-child { + width: 20%; + font-size: 14px; + font-weight: 600; + white-space: nowrap; + } + + > td:last-child { + width: 80%; + font-family: monospace; + font-size: 12px; + } + } + + td > span { + padding: 3px; + } + + td.green > span { + color: var(--very-light-grey); + background-color: var(--mid-green); + } + + td.red > span { + color: var(--very-light-grey); + background-color: var(--mid-red); + } + } +} diff --git a/FrontEnd/styles/utility.scss b/FrontEnd/styles/utility.scss new file mode 100644 index 000000000..7087304e9 --- /dev/null +++ b/FrontEnd/styles/utility.scss @@ -0,0 +1,26 @@ +// Copyright Dave Verwer, Sven A. Schmidt, and other contributors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// ------------------------------------------------------------------------- +// Shared utility styles. +// ------------------------------------------------------------------------- + +.hidden { + display: none; +} + +.trimmed { + overflow: hidden; + text-overflow: ellipsis; +} diff --git a/Sources/App/Views/DocumentationPageProcessor.swift b/Sources/App/Views/DocumentationPageProcessor.swift index 1db163505..d0b161e15 100644 --- a/Sources/App/Views/DocumentationPageProcessor.swift +++ b/Sources/App/Views/DocumentationPageProcessor.swift @@ -79,7 +79,8 @@ struct DocumentationPageProcessor { if let metaNoIndex = self.metaNoIndex { try document.head()?.prepend(metaNoIndex) } - try document.head()?.append(self.stylesheetLink) + try document.head()?.append(self.stylesheetLinks) + try document.head()?.append(self.javascriptLinks) if let canonicalUrl = self.canonicalUrl { try document.head()?.append( // We should not use `url` here as some of the DocC JavaScript lowercases @@ -93,6 +94,7 @@ struct DocumentationPageProcessor { } try document.body()?.prepend(self.header) try document.body()?.append(self.footer) + try document.body()?.append(self.frontEndDebugPanel) if let analyticsScript = self.analyticsScript { try document.head()?.append(analyticsScript) } @@ -109,10 +111,20 @@ struct DocumentationPageProcessor { ).render() } - var stylesheetLink: String { - Plot.Node.link( - .rel(.stylesheet), - .href(SiteURL.stylesheets("docc").relativeURL() + "?" + ResourceReloadIdentifier.value) + var stylesheetLinks: String { + Plot.Node.group(["docc", "shared"].map { stylesheetName -> Plot.Node in + .link( + .rel(.stylesheet), + .href(SiteURL.stylesheets(stylesheetName).relativeURL() + "?" + ResourceReloadIdentifier.value) + ) + }).render() + } + + var javascriptLinks: String { + Plot.Node.script( + .src(SiteURL.javascripts("shared").relativeURL() + "?" + ResourceReloadIdentifier.value), + .data(named: "turbolinks-track", value: "reload"), + .defer() ).render() } @@ -280,6 +292,10 @@ struct DocumentationPageProcessor { ).render() } + var frontEndDebugPanel: String { + Plot.Node.spiFrontEndDebugPanel(dataItems: []).render() + } + var processedPage: String { do { return try document.html() diff --git a/Sources/App/Views/PackageController/Builds/BuildShow+View.swift b/Sources/App/Views/PackageController/Builds/BuildShow+View.swift index 4fe92c0f1..da3f4fada 100644 --- a/Sources/App/Views/PackageController/Builds/BuildShow+View.swift +++ b/Sources/App/Views/PackageController/Builds/BuildShow+View.swift @@ -41,8 +41,10 @@ enum BuildShow { "Compatibility information for \(model.packageName). Check compatibility with \(model.buildInfo.swiftVersion.longDisplayName) on \(model.buildInfo.platform.displayName) with full build logs." } - override func bodyComments() -> Node { - .comment(model.versionId.uuidString) + override func frontEndDebugPanelData() -> [PublicPage.FrontEndDebugPanelDataItem] { + [ + .init(title: "Version ID", value: model.versionId.uuidString) + ] } override func breadcrumbs() -> [Breadcrumb] { diff --git a/Sources/App/Views/PackageController/PackageShow+View.swift b/Sources/App/Views/PackageController/PackageShow+View.swift index 320cd3f2a..2f74a6054 100644 --- a/Sources/App/Views/PackageController/PackageShow+View.swift +++ b/Sources/App/Views/PackageController/PackageShow+View.swift @@ -51,13 +51,6 @@ extension PackageShow { "package" } - override func bodyComments() -> Node { - .group( - .comment(model.packageId.uuidString), - .comment(model.score.map(String.init) ?? "unknown") - ) - } - override func breadcrumbs() -> [Breadcrumb] { [ Breadcrumb(title: "Home", url: SiteURL.home.relativeURL()), @@ -72,6 +65,13 @@ extension PackageShow { } } + override func frontEndDebugPanelData() -> [PublicPage.FrontEndDebugPanelDataItem] { + [ + .init(title: "Package ID", value: model.packageId.uuidString), + .init(title: "Score", value: model.score.map(String.init) ?? "No score.") + ] + } + override func content() -> Node { .group( .div( diff --git a/Sources/App/Views/Plot+Extensions.swift b/Sources/App/Views/Plot+Extensions.swift index 2dd366e84..85808b357 100644 --- a/Sources/App/Views/Plot+Extensions.swift +++ b/Sources/App/Views/Plot+Extensions.swift @@ -206,6 +206,29 @@ extension Node where Context: HTML.BodyContext { ) ) } + + static func spiFrontEndDebugPanel(dataItems: [PublicPage.FrontEndDebugPanelDataItem]) -> Node { + .element(named: "spi-debug-panel", nodes: [ + .class("hidden"), + .table( + .tbody( + .group( + dataItems.map({ dataItem -> Node in + .tr( + .attribute(named: "server-side"), + .td( + .text(dataItem.title) + ), + .td( + .text(dataItem.value) + ) + ) + }) + ) + ) + ) + ]) + } } extension Node where Context == HTML.FormContext { diff --git a/Sources/App/Views/PublicPage.swift b/Sources/App/Views/PublicPage.swift index 2b56bb72a..dc102ad81 100644 --- a/Sources/App/Views/PublicPage.swift +++ b/Sources/App/Views/PublicPage.swift @@ -52,11 +52,21 @@ class PublicPage { .socialImageLink(SiteURL.images("logo.png").absoluteURL()), .favicon(SiteURL.images("logo-tiny.png").relativeURL()), rssFeeds(), + .link( + .rel(.stylesheet), + .href(SiteURL.stylesheets("shared").relativeURL() + "?" + ResourceReloadIdentifier.value), + .data(named: "turbolinks-track", value: "reload") + ), .link( .rel(.stylesheet), .href(SiteURL.stylesheets("main").relativeURL() + "?" + ResourceReloadIdentifier.value), .data(named: "turbolinks-track", value: "reload") ), + .script( + .src(SiteURL.javascripts("shared").relativeURL() + "?" + ResourceReloadIdentifier.value), + .data(named: "turbolinks-track", value: "reload"), + .defer() + ), .script( .src(SiteURL.javascripts("main").relativeURL() + "?" + ResourceReloadIdentifier.value), .data(named: "turbolinks-track", value: "reload"), @@ -238,7 +248,6 @@ class PublicPage { .class(bodyClass() ?? ""), .forEach(bodyAttributes(), { .attribute($0) }), preBody(), - bodyComments(), stagingBanner(), header(), announcementBanner(), @@ -248,16 +257,11 @@ class PublicPage { postMain(), footer(), stagingBanner(), - postBody() + postBody(), + frontEndDebugPanel() ) } - /// Any page level HTML comments for hidden metadata. - /// - Returns: An element, or `group` of elements. - func bodyComments() -> Node { - .empty - } - /// A staging banner, which only appears on the staging/development server. /// - Returns: Either a
element, or nothing. final func stagingBanner() -> Node { @@ -458,6 +462,17 @@ class PublicPage { ) } + /// Output a hidden-by-default panel on the page showing useful debug information + /// - Returns: The HTML for the debug console element. + final func frontEndDebugPanel() -> Node { + .spiFrontEndDebugPanel(dataItems: frontEndDebugPanelData()) + } + + /// Returns the debug information that a page would like to show in the front-end debug console. + /// - Returns: An array of `DebugConsoleDataItem` structs that will be displayed by `frontEndDebugConsole()`. + func frontEndDebugPanelData() -> [FrontEndDebugPanelDataItem] { + [] + } } extension PublicPage { @@ -468,3 +483,10 @@ extension PublicPage { } } + +extension PublicPage { + struct FrontEndDebugPanelDataItem { + var title: String + var value: String + } +} diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.current-index.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.current-index.html index 04c5d034a..7a29ee144 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.current-index.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.current-index.html @@ -13,6 +13,8 @@ + +
@@ -60,5 +62,10 @@ visit swiftpackageindex.com.
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index-path.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index-path.html index 0fa89e95f..541913ee0 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index-path.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index-path.html @@ -13,6 +13,8 @@ + + @@ -55,5 +57,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index.html index 99f00ca2a..f48221940 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_issue_2287.ref-index.html @@ -13,6 +13,8 @@ + + @@ -61,5 +63,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index-mixed-case.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index-mixed-case.html index 46d40ce51..9eb813f3e 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index-mixed-case.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index-mixed-case.html @@ -13,6 +13,8 @@ + +
@@ -61,5 +63,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index.html index 73135ba86..6f0788057 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current.index.html @@ -13,6 +13,8 @@ + +
@@ -61,5 +63,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index-mixed-case.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index-mixed-case.html index 46d40ce51..9eb813f3e 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index-mixed-case.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index-mixed-case.html @@ -13,6 +13,8 @@ + +
@@ -61,5 +63,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index.html index 73135ba86..6f0788057 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_current_rewrite.index.html @@ -13,6 +13,8 @@ + +
@@ -61,5 +63,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b-mixed-case.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b-mixed-case.html index 7ad4a31c6..0b809c56b 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b-mixed-case.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b-mixed-case.html @@ -13,6 +13,8 @@ + + @@ -62,5 +64,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b.html index 63ed7ed2d..f49a102b0 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target-a-b.html @@ -13,6 +13,8 @@ + + @@ -62,5 +64,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target.html index cae9020a7..307101333 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_ref.index-target.html @@ -13,6 +13,8 @@ + + @@ -62,5 +64,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_tutorials.index.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_tutorials.index.html index 249570a2a..597bcf7f5 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_tutorials.index.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_documentation_routes_tutorials.index.html @@ -13,6 +13,8 @@ + +
@@ -54,5 +56,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_issue_2288.index.html b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_issue_2288.index.html index 97e778b25..bc240bf83 100644 --- a/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_issue_2288.index.html +++ b/Tests/AppTests/__Snapshots__/PackageController+routesTests/test_issue_2288.index.html @@ -13,6 +13,8 @@ + +
@@ -60,5 +62,10 @@ visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_AuthorShow.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_AuthorShow.1.html index ce4357bb5..958c8b043 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_AuthorShow.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_AuthorShow.1.html @@ -23,7 +23,9 @@ + + @@ -297,5 +299,10 @@

vapor-10

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_index.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_index.1.html index e1d156b30..1e9d9ad46 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_index.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_index.1.html @@ -21,7 +21,9 @@ + + @@ -172,5 +174,10 @@

Post three title

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_show.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_show.1.html index e241a119f..1e602edbb 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_show.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_Blog_show.1.html @@ -18,7 +18,9 @@ + + @@ -121,5 +123,10 @@

About this blog

The + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildIndex.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildIndex.1.html index 7c32dc4d3..5d1cca05f 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildIndex.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildIndex.1.html @@ -24,7 +24,9 @@ + + @@ -884,5 +886,10 @@

Swift 5.8

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildMonitorIndex.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildMonitorIndex.1.html index 67b3e9255..514f3c40f 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildMonitorIndex.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildMonitorIndex.1.html @@ -23,7 +23,9 @@ + + @@ -172,5 +174,10 @@

AccessibilitySnapshotColorBlindness + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildShow.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildShow.1.html index fc86c5d40..5111b4a39 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildShow.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_BuildShow.1.html @@ -24,11 +24,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate.1.html index 042456b5b..b9714a9e7 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate.1.html @@ -7,6 +7,8 @@ + + @@ -45,5 +47,10 @@ The Swift Package Index is entirely funded by sponsorship. Thank you to all our sponsors for their generosity. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_multipleVersions.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_multipleVersions.1.html index 0f6302c4d..3823cd623 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_multipleVersions.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_multipleVersions.1.html @@ -7,6 +7,8 @@ + + @@ -62,5 +64,10 @@ The Swift Package Index is entirely funded by sponsorship. Thank you to all our sponsors for their generosity. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_outdatedStableVersion.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_outdatedStableVersion.1.html index 6f40f9ab0..5d2a26f1d 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_outdatedStableVersion.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_DocCTemplate_outdatedStableVersion.1.html @@ -7,6 +7,8 @@ + + @@ -53,5 +55,10 @@ The Swift Package Index is entirely funded by sponsorship. Thank you to all our sponsors for their generosity. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ErrorPageView.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ErrorPageView.1.html index d4fae30ab..34ef33f07 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ErrorPageView.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ErrorPageView.1.html @@ -23,7 +23,9 @@ + + @@ -110,5 +112,10 @@

404 - Not Found

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView.1.html index b6a30ca21..c5721c3cc 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView.1.html @@ -23,7 +23,9 @@ + + @@ -241,5 +243,10 @@

Recent Releases

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView_development.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView_development.1.html index 9ddcb2681..b4c014958 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView_development.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_HomeIndexView_development.1.html @@ -24,7 +24,9 @@ + + @@ -247,5 +249,10 @@

Recent Releases

visit swiftpackageindex.com. + \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_KeywordShow.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_KeywordShow.1.html index 0be0bce0a..ad59f438d 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_KeywordShow.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_KeywordShow.1.html @@ -23,7 +23,9 @@ + + @@ -291,5 +293,10 @@

Networking Package 10

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MaintainerInfoIndex.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MaintainerInfoIndex.1.html index 3ed63be59..5f21d9e44 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MaintainerInfoIndex.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MaintainerInfoIndex.1.html @@ -24,7 +24,9 @@ + + @@ -245,5 +247,10 @@

Package Score

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPage.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPage.1.html index 3b8ce10da..67b21b8b9 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPage.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPage.1.html @@ -23,7 +23,9 @@ + + @@ -113,5 +115,10 @@

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPageStyling.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPageStyling.1.html index 057d58397..438f3f9d5 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPageStyling.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_MarkdownPageStyling.1.html @@ -23,7 +23,9 @@ + + @@ -105,5 +107,10 @@

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView.1.html index 30b473668..c4056f7fd 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_app_store_incompatible_license.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_app_store_incompatible_license.1.html index b74e0c1f8..dd5cdc5f7 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_app_store_incompatible_license.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_app_store_incompatible_license.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_binary_targets.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_binary_targets.1.html index 1f751fbbb..ddc93466b 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_binary_targets.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_binary_targets.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_canonicalURL_noImageSnapshots.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_canonicalURL_noImageSnapshots.1.html index 77b7ed8da..a899843ef 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_canonicalURL_noImageSnapshots.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_canonicalURL_noImageSnapshots.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_emoji_summary.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_emoji_summary.1.html index 033576955..6f33cd956 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_emoji_summary.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_emoji_summary.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_few_keywords.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_few_keywords.1.html index 730fc536b..5ec3aba82 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_few_keywords.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_few_keywords.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_many_keywords.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_many_keywords.1.html index 866766627..52366c96e 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_many_keywords.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_many_keywords.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_missingPackage.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_missingPackage.1.html index 3f2df9209..16a011a33 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_missingPackage.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_missingPackage.1.html @@ -23,7 +23,9 @@ + + @@ -106,5 +108,10 @@

Package not found

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_authors_activity.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_authors_activity.1.html index f74d828a5..6d0fbe910 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_authors_activity.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_authors_activity.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_builds.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_builds.1.html index 57eb2e6f5..deead96a8 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_builds.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_builds.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_license.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_license.1.html index 00870cba9..cd79d6d85 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_license.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_no_license.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_open_source_license.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_open_source_license.1.html index 410eff682..1c044cb91 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_open_source_license.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_open_source_license.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_other_license.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_other_license.1.html index f87725887..a1ab6e9fd 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_other_license.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_other_license.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_single_row_tables.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_single_row_tables.1.html index 53c69e9dd..a51df8247 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_single_row_tables.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_single_row_tables.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_withPackageFundingLinks.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_withPackageFundingLinks.1.html index e5711ffff..7808e9d6c 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_withPackageFundingLinks.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_withPackageFundingLinks.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_with_documentation_link.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_with_documentation_link.1.html index 17fb52ef8..a5dd40da8 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_with_documentation_link.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_PackageShowView_with_documentation_link.1.html @@ -23,11 +23,13 @@ + + - +
+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ReadyForSwift6Show.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ReadyForSwift6Show.1.html index 9b290a9ff..e69f6d7fa 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ReadyForSwift6Show.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ReadyForSwift6Show.1.html @@ -23,7 +23,9 @@ + + @@ -171,5 +173,10 @@

Frequently asked questions

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow.1.html index 3da623746..225cddb2b 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow.1.html @@ -23,7 +23,9 @@ + + @@ -284,5 +286,10 @@

Matching keywords

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withFilters.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withFilters.1.html index da682b323..4394839cd 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withFilters.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withFilters.1.html @@ -23,7 +23,9 @@ + + @@ -242,5 +244,10 @@

Matching keywords

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withXSSAttempt.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withXSSAttempt.1.html index 3509c0e15..d230f7a1f 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withXSSAttempt.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SearchShow_withXSSAttempt.1.html @@ -23,7 +23,9 @@ + + @@ -134,5 +136,10 @@

Matching packages

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SupportersShow.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SupportersShow.1.html index 881cd6186..bec345807 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SupportersShow.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_SupportersShow.1.html @@ -23,7 +23,9 @@ + + @@ -321,5 +323,10 @@

Community Supporters

+ \ No newline at end of file diff --git a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ValidateSPIManifest_show.1.html b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ValidateSPIManifest_show.1.html index ef556abd7..5ea8f4597 100644 --- a/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ValidateSPIManifest_show.1.html +++ b/Tests/AppTests/__Snapshots__/WebpageSnapshotTests/test_ValidateSPIManifest_show.1.html @@ -26,7 +26,9 @@ + + @@ -145,5 +147,10 @@

Validate a Swift Package Index manifest

+ \ No newline at end of file