MediaWiki cheat sheet: Difference between revisions

From misc notes
Jump to navigation Jump to search
No edit summary
No edit summary
Line 36: Line 36:


外部リンク画像ファイルの表示
外部リンク画像ファイルの表示
$wgAllowExternalImages = true;
<syntaxhighlight lang="php">
$wgAllowExternalImages = true;
</syntaxhighlight>


varnish の設定
varnish の設定
$wgUseSquid = true;
<syntaxhighlight lang="php">
$wgSquidServers = array( 'xxx.xxx.xxx.xxx' , 'xxx.xxx.xxx.xxx' );
$wgUseSquid = true;
$wgSquidServersNoPurge = array('127.0.0.1');
$wgSquidServers = array( 'xxx.xxx.xxx.xxx' , 'xxx.xxx.xxx.xxx' );
$wgSquidServersNoPurge = array('127.0.0.1');
</syntaxhighlight>


不要な情報を隠す
不要な情報を隠す
$wgDisableCounters = true;
<syntaxhighlight lang="php">
$wgShowIPinHeader = false;
$wgDisableCounters = true;
$wgShowIPinHeader = false;
</syntaxhighlight>


*Skin (Vector) の設定
*Skin (Vector) の設定
余計なタブやフッターを隠す (MediaWiki:Vector.css の設定)
余計なタブやフッターを隠す (MediaWiki:Vector.css の設定)
<pre>
<syntaxhighlight lang="css">
#ca-talk { display: none !important; }
#ca-talk { display: none !important; }
#ca-history { display: none !important; }
#ca-history { display: none !important; }
Line 59: Line 65:
#footer-places-disclaimer { display: none; }
#footer-places-disclaimer { display: none; }
#footer-poweredbyico { display: none; }
#footer-poweredbyico { display: none; }
</pre>
</syntaxhighlight>


余計なフッターを隠す (MediaWiki:Privacy | MediaWiki:Privacypage | MediaWiki:Aboutsite | MediaWiki:Aboutpage | MediaWiki:Disclaimers | MediaWiki:Disclaimerpage にハイフン '-' を設定)
余計なフッターを隠す (MediaWiki:Privacy | MediaWiki:Privacypage | MediaWiki:Aboutsite | MediaWiki:Aboutpage | MediaWiki:Disclaimers | MediaWiki:Disclaimerpage にハイフン '-' を設定)
Line 65: Line 71:


余計なフッターを隠す (MediaWiki:Common.css の設定)
余計なフッターを隠す (MediaWiki:Common.css の設定)
<pre>
<syntaxhighlight lang="css">
#f-poweredbyico { display: none; }
#f-poweredbyico { display: none; }
#footer-icon-poweredby { display: none; }
#footer-icon-poweredby { display: none; }
#footer-icon-poweredbyico { display: none; }
#footer-icon-poweredbyico { display: none; }
#footer-poweredbyico { display: none; }
#footer-poweredbyico { display: none; }
</pre>
</syntaxhighlight>


ログインユーザにのみツールボックスを見せる (skins/Vector.php の変更)
ログインユーザにのみツールボックスを見せる (skins/Vector.php の変更)
<pre>
<syntaxhighlight lang="diff">
@@ -267,7 +267,11 @@
@@ -267,7 +267,11 @@
                         $portals['SEARCH'] = true;
                         $portals['SEARCH'] = true;
Line 87: Line 93:
                 if ( !isset( $portals['LANGUAGES'] ) ) {
                 if ( !isset( $portals['LANGUAGES'] ) ) {
                         $portals['LANGUAGES'] = true;
                         $portals['LANGUAGES'] = true;
</pre>
</syntaxhighlight>


*SyntaxHighlight GeSHi の下位互換性
*SyntaxHighlight GeSHi の下位互換性
インデントさせる為に MediaWiki:Geshi.css に設定
インデントさせる為に MediaWiki:Geshi.css に設定
<pre>
<syntaxhighlight lang="css">
div.mw-geshi {
div.mw-geshi {
   padding: 1em;  
   padding: 1em;  
Line 98: Line 104:
   background-color: #f9f9f9;
   background-color: #f9f9f9;
}
}
</pre>
</syntaxhighlight>


*HTMLets のメモ
*HTMLets のメモ
今はつかってないので忘れてしまいそう。すべてのページに挿入するには MediaWiki:Sitenotice に仕込む
今はつかってないので忘れてしまいそう。すべてのページに挿入するには MediaWiki:Sitenotice に仕込む

Revision as of 12:35, 14 April 2012

この MediaWiki の設定・運用メモ(忘れるので...)

  • Update を確認
MediaWiki.org
  • 使っている extentions も確認
Extension:HTMLets
Extension:SyntaxHighlight GeSHi
SyntaxHighlight の使い方
<syntaxhighlight lang="php">
fuga hoge
</syntaxhighlight>
  • LocalSettings.php の設定

PHP のメモリー設定

ini_set( 'memory_limit', '128M' );

MemCached の設定

$wgMainCacheType = CACHE_MEMCACHED;
$wgMemCachedServers = array('127.0.0.1:11211');
$wgSessionsInMemcached = true;
$wgUseMemCached = true;

匿名ユーザの制限

$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['*']['edit'] = false;
$wgDefaultUserOptions['editsection'] = false;
$wgDisableAnonTalk = true;

外部リンク画像ファイルの表示

$wgAllowExternalImages = true;

varnish の設定

$wgUseSquid = true;
$wgSquidServers = array( 'xxx.xxx.xxx.xxx' , 'xxx.xxx.xxx.xxx' );
$wgSquidServersNoPurge = array('127.0.0.1');

不要な情報を隠す

$wgDisableCounters = true;
$wgShowIPinHeader = false;
  • Skin (Vector) の設定

余計なタブやフッターを隠す (MediaWiki:Vector.css の設定)

#ca-talk { display: none !important; }
#ca-history { display: none !important; }
#ca-viewsource { display: none !important; }
/* #footer-info-lastmod { display: none; } */
#footer-info-copyright { display: none; }
#footer-places-privacy { display: none; }
#footer-places-about { display: none; }
#footer-places-disclaimer { display: none; }
#footer-poweredbyico { display: none; }

余計なフッターを隠す (MediaWiki:Privacy | MediaWiki:Privacypage | MediaWiki:Aboutsite | MediaWiki:Aboutpage | MediaWiki:Disclaimers | MediaWiki:Disclaimerpage にハイフン '-' を設定)

-

余計なフッターを隠す (MediaWiki:Common.css の設定)

#f-poweredbyico { display: none; }
#footer-icon-poweredby { display: none; }
#footer-icon-poweredbyico { display: none; }
#footer-poweredbyico { display: none; }

ログインユーザにのみツールボックスを見せる (skins/Vector.php の変更)

@@ -267,7 +267,11 @@
                        $portals['SEARCH'] = true;
                }
                if ( !isset( $portals['TOOLBOX'] ) ) {
-                       $portals['TOOLBOX'] = true;
+                       if($this->data['loggedin']) {
+                               $portals['TOOLBOX'] = true;
+                       } else {
+                               $portals['TOOLBOX'] = false;
+                       }
                }
                if ( !isset( $portals['LANGUAGES'] ) ) {
                        $portals['LANGUAGES'] = true;
  • SyntaxHighlight GeSHi の下位互換性

インデントさせる為に MediaWiki:Geshi.css に設定

div.mw-geshi {
  padding: 1em; 
  margin: 1em 0; 
  border: 1px dashed #2f6fab;
  background-color: #f9f9f9;
}
  • HTMLets のメモ

今はつかってないので忘れてしまいそう。すべてのページに挿入するには MediaWiki:Sitenotice に仕込む