-
Notifications
You must be signed in to change notification settings - Fork 378
Integrate with Site Health #3886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
c7cabc5
Beging the Site Health integration
kienstra 92a04d2
Add debugging information for the AMP plugin
kienstra 8d7fd3f
Add the content types to the 'Templates enabled' information
kienstra b943f7e
Remove unnecessary add_theme_support() call
kienstra a7e4d73
Change the module filter to add intl, json, mbstring, and zip
kienstra 990ef7e
Merge branch 'develop' into add/2199-site-health
kienstra bca3dc1
Address failed PHPUnit tests
kienstra 2e459d6
Use a for loop instead of 3 calls of the same function
kienstra 2a8c88b
Remove esc_url() wrappers from plain string URLs, update DocBlocks
kienstra 54745fb
Merge branch 'develop' into add/2199-site-health
kienstra 08e5ec1
Merge branch 'develop' into add/2199-site-health
kienstra 067584c
Add a test for the ICU version, but this needs more thought
kienstra 3e95814
Add a translators comment above an esc_html__() call
kienstra 60970ce
Prefix the Site Health tests with 'amp_'
kienstra 8d19165
Unset global value in tearDown() method
kienstra 98db052
Merge branch 'develop' into add/2199-site-health
kienstra c06c68c
Merge branch 'develop' into add/2199-site-health
kienstra fb1d94f
Change minimum ICU version to 4.6
kienstra 27f7372
Add debugging information for 'Serve all templates as AMP?'
kienstra 54783a6
Always display the extra information about persistent object caching
kienstra 097c57d
Change %s to %d for a float, and change %1$d to %d
kienstra 4febeb6
In sprintf(), change %d back to %s, as %s does not allow multiple digits
kienstra 8c160d5
Update the package from AMP to Amp\AmpWP
kienstra 57ed521
Make the SiteHealth class final
kienstra cf97965
Correct the link for the curl documentation
kienstra 8184e80
Correct failed unit test: test_curl_multi_functions()
kienstra 5c8d4bb
Merge branch 'develop' into add/2199-site-health
kienstra 74e0326
Change debug information key from 'amp' to 'amp_wp'
kienstra 9fc127b
Represent versions as strings; improve escaping
westonruter d0e0a20
Remove periods from test labels
westonruter c3dde83
Improve cURL multi messages
westonruter af21727
Improve translated strings: de-duplicate and simplify
westonruter d1c4d05
Make tests more DRY by not copying translation strings
westonruter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
General note: it seems somewhat strange that these instances are completely inaccessible since the variables are scoped in the function. This is probably a wider issue that should be addressed later, as it's worse to pollute the global namespace with more variables. /cc @schlessera
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that's a good point. It'd be good to have some access to them.