gitextract_1t__d7yp/ ├── .eslintignore ├── .gitattributes ├── .github/ │ ├── files/ │ │ ├── autorelease.sh │ │ └── wp-svn-autopublish.sh │ └── workflows/ │ ├── autorelease.yml │ ├── autotagger.yml │ ├── changelogger.yml │ ├── e2e-tests.yml │ ├── linting.yml │ ├── php-tests.yml │ └── wp-svn-autopublish.yml ├── .gitignore ├── .phan/ │ ├── baseline.php │ ├── config.php │ └── stubs/ │ └── amp-stubs.php ├── .phpcs.xml.dist ├── .w.org-assets/ │ ├── README.md │ └── blueprints/ │ └── blueprint.json ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── advanced-cache.php ├── changelog/ │ ├── .gitkeep │ ├── add-check-type-for-supercache-last-cached-option │ ├── add-live-preview-blueprint │ ├── fix-audit_json_encode_flags_part_trois │ ├── fix-more-json-encode-flags │ ├── fix-null-wp-cache-home-path │ ├── fix-phpcompatibility-dev-run │ ├── remove-wpsc-outside-dep-device-detection │ ├── renovate-cheerio-1.x │ ├── renovate-js-unit-testing-packages │ ├── renovate-js-unit-testing-packages#2 │ ├── renovate-lock-file-maintenance │ ├── renovate-lock-file-maintenance#2 │ ├── renovate-lock-file-maintenance#3 │ ├── renovate-major-definitelytyped │ ├── renovate-npm-axios-vulnerability │ ├── renovate-wikimedia-testing-access-wrapper-4.x │ ├── update-composer-2.9 │ ├── update-gpl-license-address │ ├── update-minimum-wp-to-6.8 │ ├── update-node-24 │ ├── update-switch-to-tsgo │ ├── update-tooling-update_stable_tag_in_backport │ └── update-tsgo-fix-type-errors-in-e2e-projects ├── composer.json ├── eslint.config.mjs ├── inc/ │ ├── boost.php │ ├── delete-cache-button.js │ ├── delete-cache-button.php │ └── preload-notification.php ├── js/ │ ├── admin.js │ └── preload-notification.js ├── languages/ │ ├── wp-super-cache-be_BY.mo │ ├── wp-super-cache-be_BY.po │ ├── wp-super-cache-de_DE.mo │ ├── wp-super-cache-de_DE.po │ ├── wp-super-cache-es_ES.mo │ ├── wp-super-cache-es_ES.po │ ├── wp-super-cache-fr_FR.mo │ ├── wp-super-cache-fr_FR.po │ ├── wp-super-cache-it_IT.mo │ ├── wp-super-cache-it_IT.po │ ├── wp-super-cache-ja.mo │ ├── wp-super-cache-ja.po │ ├── wp-super-cache-lt_LT.mo │ ├── wp-super-cache-lt_LT.po │ ├── wp-super-cache-ro_RO.mo │ ├── wp-super-cache-ro_RO.po │ ├── wp-super-cache-ru_RU.mo │ ├── wp-super-cache-ru_RU.po │ ├── wp-super-cache-sr_RS.mo │ ├── wp-super-cache-sr_RS.po │ ├── wp-super-cache-sv_SE.mo │ ├── wp-super-cache-sv_SE.po │ ├── wp-super-cache-tr_TR.mo │ ├── wp-super-cache-tr_TR.po │ ├── wp-super-cache-ua_UA.mo │ ├── wp-super-cache-ua_UA.po │ ├── wp-super-cache-uk.mo │ ├── wp-super-cache-uk.po │ ├── wp-super-cache-zh_CN.mo │ ├── wp-super-cache-zh_CN.po │ ├── wp-super-cache-zh_TW.mo │ └── wp-super-cache-zh_TW.po ├── ossdl-cdn.php ├── package.json ├── partials/ │ ├── advanced.php │ ├── debug.php │ ├── easy.php │ ├── lockdown.php │ ├── preload.php │ ├── rejected_user_agents.php │ ├── restore.php │ └── tracking_parameters.php ├── phpunit.11.xml.dist ├── phpunit.12.xml.dist ├── phpunit.9.xml.dist ├── plugins/ │ ├── awaitingmoderation.php │ ├── badbehaviour.php │ ├── domain-mapping.php │ ├── dynamic-cache-test.php │ ├── jetpack.php │ ├── multisite.php │ └── wptouch.php ├── readme.txt ├── rest/ │ ├── class.wp-super-cache-rest-delete-cache.php │ ├── class.wp-super-cache-rest-get-cache.php │ ├── class.wp-super-cache-rest-get-plugins.php │ ├── class.wp-super-cache-rest-get-settings.php │ ├── class.wp-super-cache-rest-get-stats.php │ ├── class.wp-super-cache-rest-get-status.php │ ├── class.wp-super-cache-rest-preload.php │ ├── class.wp-super-cache-rest-test-cache.php │ ├── class.wp-super-cache-rest-update-plugins.php │ ├── class.wp-super-cache-rest-update-settings.php │ ├── class.wp-super-cache-settings-map.php │ └── load.php ├── src/ │ └── device-detection/ │ ├── class-device-detection.php │ ├── class-user-agent-info.php │ └── functions.php ├── styling/ │ └── dashboard.css ├── tests/ │ ├── e2e/ │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── eslint.config.mjs │ │ ├── jest.config.js │ │ ├── lib/ │ │ │ ├── CheerioForm.ts │ │ │ ├── docker-tools.ts │ │ │ ├── plugin-settings.ts │ │ │ ├── plugin-tools.ts │ │ │ ├── system-tools.ts │ │ │ ├── test-tools.ts │ │ │ └── wordpress-tools.ts │ │ ├── package.json │ │ ├── specs/ │ │ │ ├── activation.test.ts │ │ │ ├── default-settings.test.ts │ │ │ └── settings/ │ │ │ ├── cache-compression.test.ts │ │ │ ├── mod-rewrite.test.ts │ │ │ ├── no-cache-for-get.test.ts │ │ │ └── not-logged-in.test.ts │ │ ├── tools/ │ │ │ ├── apache2-wrapper.sh │ │ │ ├── htaccess.txt │ │ │ └── mu-test-helpers.php │ │ └── tsconfig.json │ └── php/ │ └── bootstrap.php ├── wp-cache-base.php ├── wp-cache-config-sample.php ├── wp-cache-phase1.php ├── wp-cache-phase2.php └── wp-cache.php