sync up wiki local settings with current settings
This commit is contained in:
parent
79cc6191f1
commit
10f759f718
1 changed files with 14 additions and 1 deletions
|
@ -187,7 +187,12 @@ $wgProxyKey = "b957b9365f724d22f666998b751507c551c66484bf75b1cc33802a67e92b0827"
|
||||||
|
|
||||||
## Default skin: you can change the default skin. Use the internal symbolic
|
## Default skin: you can change the default skin. Use the internal symbolic
|
||||||
## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook':
|
## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook':
|
||||||
|
{% if env != "staging" %}
|
||||||
|
wfLoadSkin( 'MonoBook' );
|
||||||
|
$wgDefaultSkin = 'MonoBook';
|
||||||
|
{% else %}
|
||||||
$wgDefaultSkin = 'fedora';
|
$wgDefaultSkin = 'fedora';
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
## For attaching licensing metadata to pages, and displaying an
|
## For attaching licensing metadata to pages, and displaying an
|
||||||
## appropriate copyright notice / icon. GNU Free Documentation
|
## appropriate copyright notice / icon. GNU Free Documentation
|
||||||
|
@ -335,8 +340,16 @@ $wgOpenIDAllowNewAccountname = false;
|
||||||
$wgOpenIDAllowExistingAccountSelection = false;
|
$wgOpenIDAllowExistingAccountSelection = false;
|
||||||
$wgOpenIDTrustEmailAddress = true;
|
$wgOpenIDTrustEmailAddress = true;
|
||||||
$wgOpenIDAllowAutomaticUsername = true;
|
$wgOpenIDAllowAutomaticUsername = true;
|
||||||
|
$wgOpenIDUseEmailAsNickname = true;
|
||||||
|
$wgOpenIDUseNicknameAsUsername = true;
|
||||||
// $wgOpenIDConsumerStorePath;
|
// $wgOpenIDConsumerStorePath;
|
||||||
$wgOpenIDForcedProvider = 'https://id.stg.fedoraproject.org/openid/';
|
$wgOpenIDForcedProvider = 'fedora';
|
||||||
|
$wgOpenIDProviders = array(
|
||||||
|
'fedora' => array(
|
||||||
|
'large-provider' => false,
|
||||||
|
'openid-url' => 'https://id.stg.fedoraproject.org/openid/'
|
||||||
|
),
|
||||||
|
);
|
||||||
{% endif %}
|
{% endif %}
|
||||||
require_once "$IP/extensions/fedmsg-emit.php";
|
require_once "$IP/extensions/fedmsg-emit.php";
|
||||||
require_once "$IP/extensions/HTTP302Found/HTTP302Found.php";
|
require_once "$IP/extensions/HTTP302Found/HTTP302Found.php";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue