I wrote a small "module" ( :D currently just one hook_cron function), which is cyclic reimports the translation packages, like the l10n_client's reimport packages function. Of course, the translation packages are cyclic refreshed too from my own l10n_server, but I like to get packages from the http://localize.drupal.org (or from other Localization Server, per language).
So, I like a feature: Get translation files from the l10n_server with HTTP GET method, without any form submission. For example, if I like to download the hungarian translation of the newest version of the Localization Client, then I like to send this GET request for the package:
http://localize.drupal.org/translate/languages/hu/get/l10n_client/6.x-1....
In canonical format:
http://SERVER/translate/languages/LANGCODE/GET/project/release/type/form...,
The APIkey is the users's valid Localization Server API key in the current server to avoid DoS, or unnecessary load. If this feature is works, then I plan to contribute the auto_reimport module, which is use this. What do you mean?
Comments
Comment #1
gábor hojtsySeems to be a duplicate of #591924: live_translation module will be very usefull for L.D.O is it? Please reopen if not.
In terms of simple GET downloads, generating static files and serving them with ultra-lightweight HTTP servers is in the plans. Using a heavy Apache-PHP-MySQL service to do this would very quickly crash down the servers. See http://drupal.org/project/issues/search?issue_tags=ldodomination
Comment #2
gábor hojtsyUhm, also I've edited out your API key. That is a secret key you are not supposed to share outside of your own account settings.
Comment #3
zoltán balogh commentedI edited too, that is not valid