├── .build.props ├── .gitattributes ├── .gitchange ├── .gitignore ├── .gitmodules ├── .travis.bash ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── comet-cache-pro.php ├── composer.json ├── composer.lock ├── plugin.php ├── readme.txt ├── src ├── .htaccess ├── client-s │ ├── css │ │ ├── admin-bar.min.css │ │ ├── admin-bar.min.css.map │ │ ├── admin-bar.scss │ │ ├── admin-bar │ │ │ ├── _ajax-response.scss │ │ │ ├── _animations.scss │ │ │ ├── _stats.scss │ │ │ └── _wipe-clear.scss │ │ ├── menu-pages.min.css │ │ ├── menu-pages.min.css.map │ │ ├── menu-pages.scss │ │ └── menu-pages │ │ │ ├── _animations.scss │ │ │ ├── _body.scss │ │ │ ├── _colors.scss │ │ │ ├── _elements.scss │ │ │ ├── _heading.scss │ │ │ ├── _html-tag.scss │ │ │ ├── _panels.scss │ │ │ ├── _save.scss │ │ │ ├── _sections.scss │ │ │ ├── _stats.scss │ │ │ └── _wpwrap.scss │ ├── images │ │ ├── apache.png │ │ ├── auto-clear-ss.png │ │ ├── bg.png │ │ ├── clear-cache-ops0-ss.png │ │ ├── clear-cache-ops1-ss.png │ │ ├── clear-cache-ops2-ss.png │ │ ├── clear-response.png │ │ ├── clear.png │ │ ├── cloudfront-logo.png │ │ ├── gzip.png │ │ ├── inline-icon-logo.svg │ │ ├── inline-icon.svg │ │ ├── keycdn-logo.png │ │ ├── maxcdn-logo.png │ │ ├── opcache.png │ │ ├── options-lite.png │ │ ├── options-pro.png │ │ ├── pro-updater.png │ │ ├── salt.png │ │ ├── source-code-ss.png │ │ ├── spinner.png │ │ ├── stats-fc-empty.png │ │ ├── stats-fs-empty.png │ │ ├── stats-preview.png │ │ ├── stats.png │ │ ├── tach.png │ │ ├── wipe-response.png │ │ └── wipe.png │ └── js │ │ ├── admin-bar.js │ │ ├── admin-bar.min.js │ │ ├── menu-pages.js │ │ └── menu-pages.min.js └── includes │ ├── api.php │ ├── classes │ ├── AbsBase.php │ ├── AbsBaseAp.php │ ├── Actions.php │ ├── AdvCacheBackCompat.php │ ├── AdvancedCache.php │ ├── ApiBase.php │ ├── AutoCache.php │ ├── CdnFilters.php │ ├── Conflicts.php │ ├── DirStats.php │ ├── FeedUtils.php │ ├── Memcached.php │ ├── MenuPage.php │ ├── MenuPage │ │ └── Options │ │ │ ├── ApacheOptimizations.php │ │ │ ├── AutoCacheEngine.php │ │ │ ├── AutomaticClearing.php │ │ │ ├── ClientSide.php │ │ │ ├── Developers.php │ │ │ ├── Directory.php │ │ │ ├── Enable.php │ │ │ ├── Expiration.php │ │ │ ├── FeedRequests.php │ │ │ ├── GetRequests.php │ │ │ ├── Heading.php │ │ │ ├── HostExclusions.php │ │ │ ├── HtmlCompressor.php │ │ │ ├── ImportExport.php │ │ │ ├── ManualClearing.php │ │ │ ├── Memcached.php │ │ │ ├── MobileMode.php │ │ │ ├── Nf404Requests.php │ │ │ ├── Notices.php │ │ │ ├── ProUpdater.php │ │ │ ├── RefererExclusions.php │ │ │ ├── Safeguards.php │ │ │ ├── StaticCdnFilters.php │ │ │ ├── Statistics.php │ │ │ ├── UriExclusions.php │ │ │ ├── UserAgentExclusions.php │ │ │ ├── UserRequests.php │ │ │ └── VersionSalt.php │ ├── MenuPageOptions.php │ ├── MenuPageStats.php │ ├── Notes.php │ ├── Plugin.php │ └── VsUpgrades.php │ ├── functions │ ├── i18n-utils.php │ └── wp-cache-postload.php │ ├── interfaces │ └── Shared │ │ ├── CachePathConsts.php │ │ ├── NcDebugConsts.php │ │ └── WcpEventConsts.php │ ├── plugin.php │ ├── stub.php │ ├── templates │ ├── ac-plugin.txt │ ├── advanced-cache.x-php │ └── htaccess │ │ ├── access-control-allow-origin-enable.txt │ │ ├── back-compat │ │ ├── v151114-2.txt │ │ └── v151114.txt │ │ ├── browser-caching-enable.txt │ │ ├── canonical-urls-no-ts-enable.txt │ │ ├── canonical-urls-ts-enable.txt │ │ ├── enforce-exact-host-name.txt │ │ └── gzip-enable.txt │ ├── traits │ ├── Ac │ │ ├── .build.php │ │ ├── AbortUtils.php │ │ ├── AcPluginUtils.php │ │ ├── CacheIoUtils.php │ │ ├── ClientSideUtils.php │ │ ├── HtmlCUtils.php │ │ ├── NcDebugUtils.php │ │ ├── ObUtils.php │ │ ├── PostloadUtils.php │ │ └── ShutdownUtils.php │ ├── Plugin │ │ ├── .build.php │ │ ├── ActionUtils.php │ │ ├── AdminBarUtils.php │ │ ├── AutoCacheUtils.php │ │ ├── BbPressUtils.php │ │ ├── CdnUtils.php │ │ ├── CleanupUtils.php │ │ ├── CondUtils.php │ │ ├── CronUtils.php │ │ ├── DbUtils.php │ │ ├── DirUtils.php │ │ ├── HtaccessUtils.php │ │ ├── HtmlCUtils.php │ │ ├── InstallUtils.php │ │ ├── MenuPageUtils.php │ │ ├── NoticeUtils.php │ │ ├── OptionUtils.php │ │ ├── PostUtils.php │ │ ├── StatsUtils.php │ │ ├── UpdateUtils.php │ │ ├── UrlUtils.php │ │ ├── UserUtils.php │ │ ├── WcpAuthorUtils.php │ │ ├── WcpCdnUtils.php │ │ ├── WcpCommentUtils.php │ │ ├── WcpDateArchiveUtils.php │ │ ├── WcpEvalUtils.php │ │ ├── WcpFeedUtils.php │ │ ├── WcpHomeBlogUtils.php │ │ ├── WcpHtmlCUtils.php │ │ ├── WcpJetpackUtils.php │ │ ├── WcpOpcacheUtils.php │ │ ├── WcpPluginUtils.php │ │ ├── WcpPostTypeUtils.php │ │ ├── WcpPostUtils.php │ │ ├── WcpS2cleanUtils.php │ │ ├── WcpSettingUtils.php │ │ ├── WcpSitemapUtils.php │ │ ├── WcpTermUtils.php │ │ ├── WcpTransientUtils.php │ │ ├── WcpUpdaterUtils.php │ │ ├── WcpUrlUtils.php │ │ ├── WcpUserUtils.php │ │ ├── WcpUtils.php │ │ └── WcpWooCommerceUtils.php │ └── Shared │ │ ├── .build.php │ │ ├── ArrayUtils.php │ │ ├── BlogUtils.php │ │ ├── CacheDirUtils.php │ │ ├── CacheLockUtils.php │ │ ├── CachePathUtils.php │ │ ├── ConditionalUtils.php │ │ ├── DomainMappingUtils.php │ │ ├── EscapeUtils.php │ │ ├── FsUtils.php │ │ ├── HookUtils.php │ │ ├── HttpUtils.php │ │ ├── I18nUtils.php │ │ ├── IpAddrUtils.php │ │ ├── MemoryUtils.php │ │ ├── PatternUtils.php │ │ ├── ReplaceUtils.php │ │ ├── ServerUtils.php │ │ ├── StringUtils.php │ │ ├── SysUtils.php │ │ ├── TokenUtils.php │ │ ├── TrimUtils.php │ │ ├── UaUtils.php │ │ └── UrlUtils.php │ ├── translations │ └── comet-cache-pro.pot │ └── uninstall.php ├── tests ├── casperjs │ └── ActiveTest.js ├── includes │ ├── casperjs.js │ └── phpunit.php ├── local │ └── browscap.php └── phpunit │ └── ActiveTest.php └── uninstall.php /.build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/.build.props -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitchange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/.gitchange -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/.travis.bash -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/README.md -------------------------------------------------------------------------------- /comet-cache-pro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/comet-cache-pro.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/composer.lock -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/plugin.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/readme.txt -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/client-s/css/admin-bar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/admin-bar.min.css -------------------------------------------------------------------------------- /src/client-s/css/admin-bar.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/admin-bar.min.css.map -------------------------------------------------------------------------------- /src/client-s/css/admin-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/admin-bar.scss -------------------------------------------------------------------------------- /src/client-s/css/admin-bar/_ajax-response.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/admin-bar/_ajax-response.scss -------------------------------------------------------------------------------- /src/client-s/css/admin-bar/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/admin-bar/_animations.scss -------------------------------------------------------------------------------- /src/client-s/css/admin-bar/_stats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/admin-bar/_stats.scss -------------------------------------------------------------------------------- /src/client-s/css/admin-bar/_wipe-clear.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/admin-bar/_wipe-clear.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages.min.css -------------------------------------------------------------------------------- /src/client-s/css/menu-pages.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages.min.css.map -------------------------------------------------------------------------------- /src/client-s/css/menu-pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_animations.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_body.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_colors.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_elements.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_heading.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_html-tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_html-tag.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_panels.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_save.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_save.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_sections.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_stats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_stats.scss -------------------------------------------------------------------------------- /src/client-s/css/menu-pages/_wpwrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/css/menu-pages/_wpwrap.scss -------------------------------------------------------------------------------- /src/client-s/images/apache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/apache.png -------------------------------------------------------------------------------- /src/client-s/images/auto-clear-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/auto-clear-ss.png -------------------------------------------------------------------------------- /src/client-s/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/bg.png -------------------------------------------------------------------------------- /src/client-s/images/clear-cache-ops0-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/clear-cache-ops0-ss.png -------------------------------------------------------------------------------- /src/client-s/images/clear-cache-ops1-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/clear-cache-ops1-ss.png -------------------------------------------------------------------------------- /src/client-s/images/clear-cache-ops2-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/clear-cache-ops2-ss.png -------------------------------------------------------------------------------- /src/client-s/images/clear-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/clear-response.png -------------------------------------------------------------------------------- /src/client-s/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/clear.png -------------------------------------------------------------------------------- /src/client-s/images/cloudfront-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/cloudfront-logo.png -------------------------------------------------------------------------------- /src/client-s/images/gzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/gzip.png -------------------------------------------------------------------------------- /src/client-s/images/inline-icon-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/inline-icon-logo.svg -------------------------------------------------------------------------------- /src/client-s/images/inline-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/inline-icon.svg -------------------------------------------------------------------------------- /src/client-s/images/keycdn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/keycdn-logo.png -------------------------------------------------------------------------------- /src/client-s/images/maxcdn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/maxcdn-logo.png -------------------------------------------------------------------------------- /src/client-s/images/opcache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/opcache.png -------------------------------------------------------------------------------- /src/client-s/images/options-lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/options-lite.png -------------------------------------------------------------------------------- /src/client-s/images/options-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/options-pro.png -------------------------------------------------------------------------------- /src/client-s/images/pro-updater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/pro-updater.png -------------------------------------------------------------------------------- /src/client-s/images/salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/salt.png -------------------------------------------------------------------------------- /src/client-s/images/source-code-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/source-code-ss.png -------------------------------------------------------------------------------- /src/client-s/images/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/spinner.png -------------------------------------------------------------------------------- /src/client-s/images/stats-fc-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/stats-fc-empty.png -------------------------------------------------------------------------------- /src/client-s/images/stats-fs-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/stats-fs-empty.png -------------------------------------------------------------------------------- /src/client-s/images/stats-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/stats-preview.png -------------------------------------------------------------------------------- /src/client-s/images/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/stats.png -------------------------------------------------------------------------------- /src/client-s/images/tach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/tach.png -------------------------------------------------------------------------------- /src/client-s/images/wipe-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/wipe-response.png -------------------------------------------------------------------------------- /src/client-s/images/wipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/images/wipe.png -------------------------------------------------------------------------------- /src/client-s/js/admin-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/js/admin-bar.js -------------------------------------------------------------------------------- /src/client-s/js/admin-bar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/js/admin-bar.min.js -------------------------------------------------------------------------------- /src/client-s/js/menu-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/js/menu-pages.js -------------------------------------------------------------------------------- /src/client-s/js/menu-pages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/client-s/js/menu-pages.min.js -------------------------------------------------------------------------------- /src/includes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/api.php -------------------------------------------------------------------------------- /src/includes/classes/AbsBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/AbsBase.php -------------------------------------------------------------------------------- /src/includes/classes/AbsBaseAp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/AbsBaseAp.php -------------------------------------------------------------------------------- /src/includes/classes/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/Actions.php -------------------------------------------------------------------------------- /src/includes/classes/AdvCacheBackCompat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/AdvCacheBackCompat.php -------------------------------------------------------------------------------- /src/includes/classes/AdvancedCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/AdvancedCache.php -------------------------------------------------------------------------------- /src/includes/classes/ApiBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/ApiBase.php -------------------------------------------------------------------------------- /src/includes/classes/AutoCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/AutoCache.php -------------------------------------------------------------------------------- /src/includes/classes/CdnFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/CdnFilters.php -------------------------------------------------------------------------------- /src/includes/classes/Conflicts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/Conflicts.php -------------------------------------------------------------------------------- /src/includes/classes/DirStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/DirStats.php -------------------------------------------------------------------------------- /src/includes/classes/FeedUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/FeedUtils.php -------------------------------------------------------------------------------- /src/includes/classes/Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/Memcached.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/ApacheOptimizations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/ApacheOptimizations.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/AutoCacheEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/AutoCacheEngine.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/AutomaticClearing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/AutomaticClearing.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/ClientSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/ClientSide.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Developers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Developers.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Directory.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Enable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Enable.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Expiration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Expiration.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/FeedRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/FeedRequests.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/GetRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/GetRequests.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Heading.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/HostExclusions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/HostExclusions.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/HtmlCompressor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/HtmlCompressor.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/ImportExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/ImportExport.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/ManualClearing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/ManualClearing.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Memcached.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/MobileMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/MobileMode.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Nf404Requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Nf404Requests.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Notices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Notices.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/ProUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/ProUpdater.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/RefererExclusions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/RefererExclusions.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Safeguards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Safeguards.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/StaticCdnFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/StaticCdnFilters.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/Statistics.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/UriExclusions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/UriExclusions.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/UserAgentExclusions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/UserAgentExclusions.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/UserRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/UserRequests.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPage/Options/VersionSalt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPage/Options/VersionSalt.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPageOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPageOptions.php -------------------------------------------------------------------------------- /src/includes/classes/MenuPageStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/MenuPageStats.php -------------------------------------------------------------------------------- /src/includes/classes/Notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/Notes.php -------------------------------------------------------------------------------- /src/includes/classes/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/Plugin.php -------------------------------------------------------------------------------- /src/includes/classes/VsUpgrades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/classes/VsUpgrades.php -------------------------------------------------------------------------------- /src/includes/functions/i18n-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/functions/i18n-utils.php -------------------------------------------------------------------------------- /src/includes/functions/wp-cache-postload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/functions/wp-cache-postload.php -------------------------------------------------------------------------------- /src/includes/interfaces/Shared/CachePathConsts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/interfaces/Shared/CachePathConsts.php -------------------------------------------------------------------------------- /src/includes/interfaces/Shared/NcDebugConsts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/interfaces/Shared/NcDebugConsts.php -------------------------------------------------------------------------------- /src/includes/interfaces/Shared/WcpEventConsts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/interfaces/Shared/WcpEventConsts.php -------------------------------------------------------------------------------- /src/includes/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/plugin.php -------------------------------------------------------------------------------- /src/includes/stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/stub.php -------------------------------------------------------------------------------- /src/includes/templates/ac-plugin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/ac-plugin.txt -------------------------------------------------------------------------------- /src/includes/templates/advanced-cache.x-php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/advanced-cache.x-php -------------------------------------------------------------------------------- /src/includes/templates/htaccess/access-control-allow-origin-enable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/access-control-allow-origin-enable.txt -------------------------------------------------------------------------------- /src/includes/templates/htaccess/back-compat/v151114-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/back-compat/v151114-2.txt -------------------------------------------------------------------------------- /src/includes/templates/htaccess/back-compat/v151114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/back-compat/v151114.txt -------------------------------------------------------------------------------- /src/includes/templates/htaccess/browser-caching-enable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/browser-caching-enable.txt -------------------------------------------------------------------------------- /src/includes/templates/htaccess/canonical-urls-no-ts-enable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/canonical-urls-no-ts-enable.txt -------------------------------------------------------------------------------- /src/includes/templates/htaccess/canonical-urls-ts-enable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/canonical-urls-ts-enable.txt -------------------------------------------------------------------------------- /src/includes/templates/htaccess/enforce-exact-host-name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/enforce-exact-host-name.txt -------------------------------------------------------------------------------- /src/includes/templates/htaccess/gzip-enable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/templates/htaccess/gzip-enable.txt -------------------------------------------------------------------------------- /src/includes/traits/Ac/.build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/.build.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/AbortUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/AbortUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/AcPluginUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/AcPluginUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/CacheIoUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/CacheIoUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/ClientSideUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/ClientSideUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/HtmlCUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/HtmlCUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/NcDebugUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/NcDebugUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/ObUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/ObUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/PostloadUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/PostloadUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Ac/ShutdownUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Ac/ShutdownUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/.build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/.build.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/ActionUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/ActionUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/AdminBarUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/AdminBarUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/AutoCacheUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/AutoCacheUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/BbPressUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/BbPressUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/CdnUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/CdnUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/CleanupUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/CleanupUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/CondUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/CondUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/CronUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/CronUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/DbUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/DbUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/DirUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/DirUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/HtaccessUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/HtaccessUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/HtmlCUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/HtmlCUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/InstallUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/InstallUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/MenuPageUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/MenuPageUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/NoticeUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/NoticeUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/OptionUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/OptionUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/PostUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/PostUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/StatsUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/StatsUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/UpdateUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/UpdateUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/UrlUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/UrlUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/UserUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/UserUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpAuthorUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpAuthorUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpCdnUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpCdnUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpCommentUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpCommentUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpDateArchiveUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpDateArchiveUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpEvalUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpEvalUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpFeedUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpFeedUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpHomeBlogUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpHomeBlogUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpHtmlCUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpHtmlCUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpJetpackUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpJetpackUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpOpcacheUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpOpcacheUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpPluginUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpPluginUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpPostTypeUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpPostTypeUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpPostUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpPostUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpS2cleanUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpS2cleanUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpSettingUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpSettingUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpSitemapUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpSitemapUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpTermUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpTermUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpTransientUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpTransientUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpUpdaterUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpUpdaterUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpUrlUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpUrlUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpUserUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpUserUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Plugin/WcpWooCommerceUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Plugin/WcpWooCommerceUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/.build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/.build.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/ArrayUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/ArrayUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/BlogUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/BlogUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/CacheDirUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/CacheDirUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/CacheLockUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/CacheLockUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/CachePathUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/CachePathUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/ConditionalUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/ConditionalUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/DomainMappingUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/DomainMappingUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/EscapeUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/EscapeUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/FsUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/FsUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/HookUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/HookUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/HttpUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/HttpUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/I18nUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/I18nUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/IpAddrUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/IpAddrUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/MemoryUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/MemoryUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/PatternUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/PatternUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/ReplaceUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/ReplaceUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/ServerUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/ServerUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/StringUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/StringUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/SysUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/SysUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/TokenUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/TokenUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/TrimUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/TrimUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/UaUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/UaUtils.php -------------------------------------------------------------------------------- /src/includes/traits/Shared/UrlUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/traits/Shared/UrlUtils.php -------------------------------------------------------------------------------- /src/includes/translations/comet-cache-pro.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/translations/comet-cache-pro.pot -------------------------------------------------------------------------------- /src/includes/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/src/includes/uninstall.php -------------------------------------------------------------------------------- /tests/casperjs/ActiveTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/tests/casperjs/ActiveTest.js -------------------------------------------------------------------------------- /tests/includes/casperjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/tests/includes/casperjs.js -------------------------------------------------------------------------------- /tests/includes/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/tests/includes/phpunit.php -------------------------------------------------------------------------------- /tests/local/browscap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/tests/local/browscap.php -------------------------------------------------------------------------------- /tests/phpunit/ActiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/tests/phpunit/ActiveTest.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpsharks/comet-cache-pro/HEAD/uninstall.php --------------------------------------------------------------------------------