Feature #17988
closedEM should send TYPO3 version when connecting to TER
0%
Description
When the EM connects to the TER to fetch extensions or translations it currently does that without sending the TYPO3 version.
Having the TYPO3 version at hand it would be easy to change the TER in a way that f.e. only translations specific for a certain TYPO3 version are send.
This could also be used to track how many installations of which version of TYPO3 are installed out there. This again could ease decisions about backwards-compatibility or what not.
class.em_soap.php needs to get adjusted
(issue imported from #M7140)
Files
Updated by Ingo Renner almost 17 years ago
The EM should juts send a HTTP header like this:
$version = explode('.', TYPO3_version);
unset($version2);
$version = implode($version, '.');
$header = 'User-Agent: TYPO3/'.$version;
Updated by Ingo Renner almost 17 years ago
an additional xml fragment might be possible, too
<UserAgent>TYPO3/$version</UserAgent>
Updated by Benni Mack over 16 years ago
Could we get this in 4.2 still? And maybe in 4.1 and 4.0 too ?
Updated by Niels Pardon over 16 years ago
Patch above sends an HTML-header with e.g. "User-Agent: TYPO3/4.2-dev" in case of:
- an extension is fetched
- a translation is fetched
- a translation status is fetched
- any meta data is fetched