2014-06-18 66 views
1

摺疊的部分例如:Mediawiki的MobileFrontend:停止在默認情況下摺疊部分

MediaWiki的Mobilefrontend默認是部分默認情況下崩潰了,他們是未收縮時對部分標題用戶點擊。

我想改變它,以便uncollapsed是默認值。

我曾嘗試:

  1. 在所有MobileFrontend文件,我發現 「塌陷」 存在於這些(而且只有這些)文件

    MobileFrontend\javascripts\common\PageApi.js 
    MobileFrontend\less\common\enwp.less 
    MobileFrontend\less=common\reset.less 
    

    但我不確定如果這些與我嘗試做的事有關。

  2. 我嘗試將mediawiki的Manual:Collapsible_elements中的指導原則應用於這三個文件,但沒有奏效。

  3. 我使用Notepad ++的「查找文件」搜索「expandablesections」。

    後來我發現

    MobileFrontend\includes\api\ApiParseExtender.php 
    Line 82: $mf->enableExpandableSections(!$params['mainpage']); 
    MobileFrontend\includes\formatters\MobileFormatter.php 
    Line 23: protected $expandableSections = false; 
    Line 64: $formatter->enableExpandableSections(!$isMainPage && !$isSpecialPage); 
    Line 89: public function enableExpandableSections($flag = true) { 
    Line 90:  $this->expandableSections = $flag; 
    MobileFrontend\includes\formatters\MobileFormatterHTML.php 
    Line 24:  if ($this->expandableSections) { 
    MobileFrontend\tests\MobileFormatterTest.php 
    Line 24:  $mf->enableExpandableSections(); 
    
  4. 我試圖改變

    $expandableSections = false; 
    

    $expandableSections = true; 
    

    ,但它並沒有未塌陷的部分。

回答

1

在LocalSettings.php中:$wgMFCollapseSectionsByDefault = false;