Matt

Results 15 comments of Matt
trafficstars

Note that I'm aware of `Tiny_Image::compress()`, but it requires `Tiny_Settings` which isn't easily available from `Tiny_Plugin`. For now `Tiny_Plugin::settings` is just vanilla ` new Tiny_settings()`, but who knows if it...

Can we help somehow to push this forward?

For what it's worth, I managed to import changes from #366 with slight modifications (mostly to config files, due to shifting from `define` to `Config::define`) and I can confirm that...

Sure, I'll try to prep it within few days. There's not mucg to do there, I'm just quite busy.

This seems to be a bug? Consider following request flow from user: `[1]` http://www.mystore.com/category/?filter_by=price `[2]` http://www.mystore.com/category/ While fetching `[2]` Turpentine would use `[1]` as current URL. ``` # Nexcessnet_Turpentine_EsiController::getBlockAction(), line...

From my understanding it isn't possible to pass URL of original request to ESI request in Varnish prior to version 4.1 Only in version 4.1 Varnish introduced `req_top` object which...

A test failed, but it seems unrelated to my changes? It looks like this is caused by comparing floats without delta. I can dig in if necessary, but I would...

If I said I'll do it then I'll do it, I don't need to be reminded about it every two years.... ;-) On a more serious note, I scheduled it...

Update: I imported changes from #366 into a new branch (it's not released yet) and did some tests. For the most part, it works, but I want to inspect one...

> the following solution worked for me fine: > > ```js > cy.window().document().then(function (doc) { > doc.addEventListener('click', () => { > setTimeout(function () { doc.location.reload() }, 5000) > }) >...