gitextract_7u5a0c3r/ ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONDUCT.md ├── LICENSE.md ├── README.md ├── app/ │ ├── code/ │ │ └── community/ │ │ └── Lesti/ │ │ └── Fpc/ │ │ ├── Block/ │ │ │ └── Catalog/ │ │ │ └── Product/ │ │ │ └── View/ │ │ │ └── Ajax.php │ │ ├── Core/ │ │ │ └── Block/ │ │ │ └── Messages.php │ │ ├── Helper/ │ │ │ ├── Abstract.php │ │ │ ├── Block/ │ │ │ │ └── Messages.php │ │ │ ├── Block.php │ │ │ └── Data.php │ │ ├── Model/ │ │ │ ├── Adminhtml/ │ │ │ │ └── System/ │ │ │ │ └── Config/ │ │ │ │ └── Source/ │ │ │ │ └── Gzcompress.php │ │ │ ├── Fpc/ │ │ │ │ └── CacheItem.php │ │ │ ├── Fpc.php │ │ │ ├── Observer/ │ │ │ │ ├── Clean.php │ │ │ │ ├── Parameters.php │ │ │ │ ├── Save.php │ │ │ │ └── Tags.php │ │ │ └── Observer.php │ │ ├── Test/ │ │ │ ├── Block/ │ │ │ │ ├── Catalog/ │ │ │ │ │ └── Product/ │ │ │ │ │ └── View/ │ │ │ │ │ ├── Ajax/ │ │ │ │ │ │ └── fixtures/ │ │ │ │ │ │ ├── get_ajax_url.yaml │ │ │ │ │ │ ├── get_ajax_url_disabled_recently_viewed_products.yaml │ │ │ │ │ │ ├── get_ajax_url_fpc_inactive.yaml │ │ │ │ │ │ ├── get_ajax_url_miss_cache_able_action.yaml │ │ │ │ │ │ └── get_ajax_url_no_current_product.yaml │ │ │ │ │ └── Ajax.php │ │ │ │ └── Core/ │ │ │ │ └── Messages.php │ │ │ ├── Controller/ │ │ │ │ └── Catalog/ │ │ │ │ ├── ProductController/ │ │ │ │ │ └── fixtures/ │ │ │ │ │ └── view_action_with_product.yaml │ │ │ │ └── ProductController.php │ │ │ ├── Helper/ │ │ │ │ ├── Block/ │ │ │ │ │ ├── Messages.php │ │ │ │ │ └── fixtures/ │ │ │ │ │ ├── are_lazy_blocks_valid.yaml │ │ │ │ │ ├── get_dynamic_blocks.yaml │ │ │ │ │ ├── get_dynamic_blocks_empty.yaml │ │ │ │ │ ├── get_lazy_blocks.yaml │ │ │ │ │ ├── get_lazy_blocks_empty.yaml │ │ │ │ │ ├── use_recently_viewed_products_false.yaml │ │ │ │ │ └── use_recently_viewed_products_true.yaml │ │ │ │ ├── Block.php │ │ │ │ ├── Data/ │ │ │ │ │ ├── fixtures/ │ │ │ │ │ │ ├── can_cache_request.yaml │ │ │ │ │ │ ├── get_bypass_handles.yaml │ │ │ │ │ │ ├── get_bypass_handles_empty.yaml │ │ │ │ │ │ ├── get_cacheable_actions.yaml │ │ │ │ │ │ ├── get_cacheable_actions_empty.yaml │ │ │ │ │ │ ├── get_refresh_actions.yaml │ │ │ │ │ │ ├── get_refresh_actions_empty.yaml │ │ │ │ │ │ └── regex_uri_params.yaml │ │ │ │ │ └── providers/ │ │ │ │ │ ├── testCanCacheRequest.yaml │ │ │ │ │ └── testRegexUriParams.yaml │ │ │ │ └── Data.php │ │ │ ├── Model/ │ │ │ │ ├── Fpc/ │ │ │ │ │ └── fixtures/ │ │ │ │ │ └── save_load_clean.yaml │ │ │ │ ├── Fpc.php │ │ │ │ ├── Observer/ │ │ │ │ │ ├── Clean.php │ │ │ │ │ ├── Parameters/ │ │ │ │ │ │ └── fixtures/ │ │ │ │ │ │ └── fpc_helper_collect_params.yaml │ │ │ │ │ ├── Parameters.php │ │ │ │ │ ├── Save.php │ │ │ │ │ ├── Tags/ │ │ │ │ │ │ ├── fixtures/ │ │ │ │ │ │ │ ├── fpc_observer_collect_cache_tags.yaml │ │ │ │ │ │ │ ├── get_catalog_product_view_cache_tags_configurable_prod.yaml │ │ │ │ │ │ │ ├── get_catalog_product_view_cache_tags_grouped_product.yaml │ │ │ │ │ │ │ ├── get_cms_index_index_cache_tags.yaml │ │ │ │ │ │ │ └── get_cms_index_index_cache_tags_zero.yaml │ │ │ │ │ │ └── providers/ │ │ │ │ │ │ └── testFpcObserverCollectCacheTags.yaml │ │ │ │ │ ├── Tags.php │ │ │ │ │ ├── fixtures/ │ │ │ │ │ │ └── controller_action_postdispatch.yaml │ │ │ │ │ └── providers/ │ │ │ │ │ └── controllerActionPostdispatch.yaml │ │ │ │ └── Observer.php │ │ │ └── TestCase.php │ │ ├── controllers/ │ │ │ └── Catalog/ │ │ │ └── ProductController.php │ │ └── etc/ │ │ ├── config.xml │ │ └── system.xml │ ├── design/ │ │ └── frontend/ │ │ └── base/ │ │ └── default/ │ │ ├── layout/ │ │ │ └── fpc.xml │ │ └── template/ │ │ └── fpc/ │ │ └── catalog/ │ │ └── product/ │ │ └── view/ │ │ └── ajax.phtml │ └── etc/ │ ├── fpc.xml.sample │ └── modules/ │ └── Lesti_Fpc.xml ├── composer.json └── modman