I have this extension showing some customer data plus an embedded video (MP4). It consists of a cached Plugin, because the data isn't changed, unless someone in the TYPO3-Backend makes changes to it and clears the Cache.
We wan't to use the new HTML5 Video-Tag to be able to play videos on iPhones/iPads & Co. which don't have Flash. To not have to store multiple videofiles on our servers for each customer, i made a fallback-method for flash-browsers (e.g. Firefox, which won't play MP4-Videos in the HTML5-Tag hurray). This method checks the Users Browser-Agent and upon this takes the corresponding Video-Tag (either FlahsPlayer or HTML5).
And here now comes the problem: if I clear Cache in TYPO3-Backend and then load the plugin with Firefox (uses Flash), then if I afterwards load the page on the iPhone, i get the cached version with Flashplayer. If however i clear TYPO3-Cache and then load the page with an iPhone, then the Firefox on a PC would afterwards get the HTML5-Version (which doesn't work with MP4).
Now the question: is it possible to just cache some parts of a plugin? I mean: the static customer data won't change that often and therefore caching would be perfect. But the Browser-Agent/used Video-Tag should be checked every time. I didn't find anything - or i searched the wrong way...