Extension:LandingCheck/ru

From mediawiki.org
This page is a translated version of the page Extension:LandingCheck and the translation is 62% complete.
Справка по расширениям MediaWiki
LandingCheck
Статус релиза: стабильно
Реализация Служебная страница
Описание Send users to localized landing pages with fallback options
Автор(ы) Ryan Kaldari
Последняя версия 2.1
MediaWiki >= 1.42
Лицензия GNU General Public License 2.0 или позднее
Скачать
  • landing_page
  • language
  • country
  • utm_source
  • utm_medium
  • utm_campaign
Ежеквартальные загрузки 1 (Ranked 139th)
Переведите расширение LandingCheck, если оно доступно на translatewiki.net
Проблемы Открытые задачи · Сообщить об ошибке

LandingCheck makes using localized and geotargeted landing pages easy. It was created as a replacement for the GeoLite extension.

When called with a landing page name and a set of user-specific parameters, the extension checks to see if a version of the landing page exists for the user's language and country. If not, it looks for a version localized for the user's language. If that doesn't exist either, it looks for the English version. If any of those exist, it then redirects the user.

Установка

  • Скачайте и распакуйте файл(ы) в папку с названием LandingCheck в вашей папке extensions/.
    Вместо этого разработчикам и соавторам кода следует установить расширение из Git, используя:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/LandingCheck
  • Добавьте следующий код в конце вашего файла LocalSettings.php :
    wfLoadExtension( 'LandingCheck' );
    
  • Yes Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.


Настройка

Configuration settings in extension.json
Параметр По умолчанию Комментарий
$wgPriorityCountries array() If there are any countries for which the country page should be the fallback rather than a language page, add its country code to this array.
$wgLandingCheckPriorityURLBase null It is possible to configure a separate server running LandingCheck to handle requests for priority countries and another for non-priority countries. By default, the local instance of LandingCheck will handle both unless these variables are configured. The URLs contained in these variables should be the full URL to the location of LandingCheck - the query string will be appended. For example:

$wgLandingCheckPriorityURLBase = '//wikimediafoundation.org/wiki/Special:LandingCheck';

$wgLandingCheckNormalURLBase null It is possible to configure a separate server running LandingCheck to handle requests for priority countries and another for non-priority countries. By default, the local instance of LandingCheck will handle both unless these variables are configured. The URLs contained in these variables should be the full URL to the location of LandingCheck - the query string will be appended. For example:

$wgLandingCheckNormalURLBase = '//wikimediafoundation.org/wiki/Special:LandingCheck';

Как это работает

GeoIP lookup: Normally LandingCheck does not perform a GeoIP lookup, but depends on the referring page to supply the user's country. If the country parameter is not supplied, the extension checks to see if the geoip_country_code_by_name() function exists (from the php5-geoip package), and if so, performs its own GeoIP lookup. (As of 2010, all Wikimedia page views perform a GeoIP lookup and record the user's country in the global JavaScript variable Geo.country.)

Language: LandingCheck looks for whatever landing pages correspond to the user's wgUserLanguage variable. If none exist, it tries to find landing pages in the corresponding fallback language. So, for example, if JimmyAppeal/pt-br doesn't exist, it looks for JimmyAppeal/pt, and then JimmyAppeal/en (English is the final fallback for all languages).

Использование

Set up landing pages

First, create a set of localized landing pages using the following naming scheme: <pagename>/<language>/<country>. For a fundraising campaign, you might set up the following pages:

  • JimmyAppeal/en - landing page localized to English
    • JimmyAppeal/en/US - landing page localized to English and customized for users in the United States
    • JimmyAppeal/en/GB - landing page localized to English and customized for users in the United Kingdom
    • JimmyAppeal/en/FR - landing page localized to English and customized for users in France
  • JimmyAppeal/fr - landing page localized to French
    • JimmyAppeal/fr/FR - landing page localized to French and customized for users in France
    • JimmyAppeal/fr/CA - landing page localized to French and customized for users in Canada

Создать ссылку

Next, set up a link that uses JavaScript to construct the LandingCheck URL with user-specific query string parameters.

Пример jQuery

<script type="text/javascript">
var cn_rewrite_url = function() {
  var baseUrl = 'http://wikimediafoundation.org/wiki/Special:LandingCheck';
  var queryString = jQuery.param({'landing_page':'JimmyAppeal', 'language':wgUserLanguage, 'country':Geo.country});
  jQuery("a.variable_lp").attr("href", baseUrl + '?' + queryString);
}
jQuery(document).ready(cn_rewrite_url);
</script>
<a class="variable_lp" href="">Read an Appeal by Jimmy Wales</a>

jQuery example with tracking

<script type="text/javascript">
var cn_rewrite_url = function() {
  var baseUrl = 'http://wikimediafoundation.org/wiki/Special:LandingCheck';
  var queryString = jQuery.param({'landing_page':'JimmyAppeal', 'language':wgUserLanguage, 'country':Geo.country, 'utm_source':'banner22', 'utm_medium':'sitenotice', 'utm_campaign':'2010fundraiser'});
  jQuery("a.variable_lp").attr("href", baseUrl + '?' + queryString);
}
jQuery(document).ready(cn_rewrite_url);
</script>
<a class="variable_lp" href="">Read an Appeal by Jimmy Wales</a>

Пример без jQuery

<a href="#" onclick="window.location.href='http://wikimediafoundation.org/wiki/Special:LandingCheck?landing_page=JimmyAppeal&language='+wgUserLanguage+'&country='+Geo.country">Read an Appeal by Jimmy Wales</a>

Add more landing pages

As additional localized and geotargeted landing pages are created, users will automatically start being directed to them. Make sure that any new landing pages added after your link has gone live are ready to use immediately. If you need to build new localized or geotargeted landing pages gradually, build them under different names and then move them into place once they are complete.

Overrides for level-1 chapters

During the 2010 fundraiser the Wikimedia Foundation was required to send all traffic from chapter countries to chapter-specific landing pages even if they did not support the user's language. To facilitate this, an override mechanism was built into LandingCheck. Level 1 chapters were instructed to build their landing pages using the following naming scheme: <pagename>/<country>/language>. For example:

The country codes of the level 1 chapters were then added to the $wgPriorityCountries global variable.