Mediawiki 開發擴展:修訂版本之間的差異
出自六年制學程
(新頁面: 分類:Mediawiki) |
|||
第 1 行: | 第 1 行: | ||
[[分類:Mediawiki]] | [[分類:Mediawiki]] | ||
+ | ===視覺化編輯器(visual editer)=== | ||
+ | *需要 Parsoid | ||
+ | *設 $wgVisualEditorParsoidPrefix = 'localhost'; | ||
+ | *設 $wgVisualEditorParsoidURL = 'http://localhost:8000'; // Debian,port是8142 | ||
+ | *設 $wgDefaultUserOptions['visualeditor-enable'] = 1; | ||
+ | *$wgHiddenPrefs[] = 'visualeditor-enable'; // 不許關閉,若要用 wiki 碼編,不用此行 | ||
+ | *設 require_once "$IP/extensions/VisualEditor/VisualEditor.php"; | ||
+ | * MediaWiki 1.23,還需要額外的 PHP Parsoid 插件,之後的版本不用。 |
2015年9月26日 (六) 14:52的修訂版本
視覺化編輯器(visual editer)
- 需要 Parsoid
- 設 $wgVisualEditorParsoidPrefix = 'localhost';
- 設 $wgVisualEditorParsoidURL = 'http://localhost:8000'; // Debian,port是8142
- 設 $wgDefaultUserOptions['visualeditor-enable'] = 1;
- $wgHiddenPrefs[] = 'visualeditor-enable'; // 不許關閉,若要用 wiki 碼編,不用此行
- 設 require_once "$IP/extensions/VisualEditor/VisualEditor.php";
- MediaWiki 1.23,還需要額外的 PHP Parsoid 插件,之後的版本不用。