站点日志

来自Wikioe
Eijux讨论 | 贡献2021年5月22日 (六) 22:12的版本 →‎2021/05/16
跳到导航 跳到搜索


站点日志

关于站点的安装、更新,扩展安装等操作,列出记录相关操作。

2020/09/06

站点更新(安装):Mediawiki-1.35.0-rc.3版本。

2020/09/02

安装扩展“VisualEditor”。

2021/05/16

添加编辑框自定义标签功能。

  1. 安装扩展“Gadgets”、“CharInsert”。所以可以配合使用???
  2. 修改以下内容:【均是新建】
    1. http://wiki.eijux.com/MediaWiki:Common.css |-Common.css
    2. http://wiki.eijux.com/MediaWiki:Edittools |自定义标签
    3. http://wiki.eijux.com/MediaWiki:Gadgets-definition |-Gadgets-definition
    4. http://wiki.eijux.com/MediaWiki:Gadget-Edittools.js |-Gadget-Edittools.js
    5. http://wiki.eijux.com/MediaWiki:Gadget-charinsert-core.js |-Gadget-charinsert-core.js
    6. http://wiki.eijux.com/MediaWiki:Gadget-charinsert-styles.css |-Gadget-charinsert-styles.css
    7. http://wiki.eijux.com/MediaWiki:Gadget-charinsert.js |-Gadget-charinsert.js
    8. http://wiki.eijux.com/MediaWiki:Gadget-charinsert |-Gadget-charinsert

【2021/05/16 2:01:19】但是还不知道如何将两个配合使用。(所以先注释了 Edittools 中的内容)

Edittools 定义的标签显示在页面底部(编辑时不方便),而 Gadget-charinsert-core.js 中定义的标签在编辑框底部(自定义标签时不方便);
Gadget-charinsert-core.js 中说“// Please make any changes to [[MediaWiki:Edittools]] as well, however, instead of using the ␥ symbol, use {{#ifeq:{{NAMESPACE}}|{{ns:0}}| | ”。

【2021/05/22 22:02:06】终于把 Gadget-charinsert-core.js 的设置方式试出来了:

  • 用“\”分隔一些不能直接保存的标签。如:“<br/>”写为“<br\/>”,“<syntaxhighlight”写为“<\syntaxhighlight”;
  • 用“.”代替标签中的空格。如:“<syntaxhighlight lang="xml" inline>”写为“<syntaxhighlight.lang="xml".inline>”;
  • 用“+”表示光标位置。如:“<code></code>”写为“<code>+</code>”
  • 可以使用诸如“\n”的转移字符。如:“<pre></pre>”写为“<pre>\n+\n</pre>”
  • 注意 js 中不能写入中文字符(空格等的字符不能是中文)。
  • 修改之后需要无缓存刷新(ctrl+F5)才能显示效果。
  • 如果遇到“修改之后直接不能加载自定义标签框,且改回原来内容仍然不能加载”的情况,可以通过重新提交该 js 的历史版本来解决。

2021/05/17

想要修改文章目录为浮动目录,没搞好。想要实现三效果如:BioHos生命健康创投百科

【2021/05/17 02:38:48】但还没弄好,好像是“JsonConfig”的配置有问题,相关模板页错误:“Lua错误 在模块:TNT的第159行:Missing JsonConfig extension; Cannot load https://commons.wikimedia.org/wiki/Data:I18n/Documentation.tab”。
网上类似问题链接:
https://www.mediawiki.org/wiki/Topic:Vbvr1uv3rw3qi8a4
https://www.mediawiki.org/wiki/Topic:V8zt7msvlfps3c8d
https://www.mediawiki.org/w/index.php?title=Topic:Vdtgrltwf1e5bmdx&topic_showPostId=vdtqrdm22gn9kidl#flow-post-vdtqrdm22gn9kidl
  1. 从 mediawiki.org 导入了:Template:TOC、Template:TOC-nopadding、Template:TOCright。
    • (跨wiki前缀写的是“mediawiki.org”不知道对不对。改为“commons”重新上传一次还是不好使)
  2. 安装扩展“Scribunto”、“TemplateStyles”、“JsonConfig”。
  3. 修改配置文件:
    # by Eijux, 2021/05/16 22:07:01
    # To import Template:TOC etc from mediawiki.org.
    wfLoadExtension( 'Scribunto' );
    wfLoadExtension( 'TemplateStyles' );
    wfLoadExtension( 'JsonConfig' );
    #
    #$wgJsonConfigEnableLuaSupport = true;
    # JsonConfig uses a very flexible (and a bit complicated) settings system. Both Commons wiki and all other wikis will need this code block to set up a cross-wiki shareable storage:
    #$wgJsonConfigModels['Tabular.JsonConfig'] = 'JsonConfig\JCTabularContent';
    #$wgJsonConfigs['Tabular.JsonConfig'] = array(
    #	'namespace' => 486, // === NS_DATA, but the constant is not defined yet
    #	'nsName' => 'Data',
    #	'isLocal' => false,
    #	'pattern' => '/.\.tab$/'
    #);
    # Commons wiki will need to specify that data should be stored locally:
    #$wgJsonConfigs['Tabular.JsonConfig']['store'] = true;
    # Other wikis will need to set how to access remote data:
    #$wgJsonConfigs['Tabular.JsonConfig']['remote'] = 'https://commons.wikimedia.org/w/api.php';
    if ( $wmgEnableJsonConfigDataMode ) {
    	// Safety: before extension.json, these values were initialized by JsonConfig.php
    	if ( !isset( $wgJsonConfigModels ) ) {
    		$wgJsonConfigModels = [];
    	}
    	if ( !isset( $wgJsonConfigs ) ) {
    		$wgJsonConfigs = [];
    	}
    
    	$wgJsonConfigEnableLuaSupport = true;
    
    	// https://www.mediawiki.org/wiki/Extension:JsonConfig#Configuration
    
    	$wgJsonConfigModels['Tabular.JsonConfig'] = 'JsonConfig\JCTabularContent';
    	$wgJsonConfigs['Tabular.JsonConfig'] = [
    		'namespace' => 486,
    		'nsName' => 'Data',
    		// page name must end in ".tab", and contain at least one symbol
    		'pattern' => '/.\.tab$/',
    		'license' => 'CC0-1.0',
    		'isLocal' => false,
    	];
    
    	$wgJsonConfigModels['Map.JsonConfig'] = 'JsonConfig\JCMapDataContent';
    	$wgJsonConfigs['Map.JsonConfig'] = [
    		'namespace' => 486,
    		'nsName' => 'Data',
    		// page name must end in ".map", and contain at least one symbol
    		'pattern' => '/.\.map$/',
    		'license' => 'CC0-1.0',
    		'isLocal' => false,
    	];
    
    	// Enable Tabular data namespace on Commons - T148745
    	// Enable Map (GeoJSON) data namespace on Commons - T149548
    	// TODO: Consider whether this hard-coding to Commons is appropriate
    	if ( $wgDBname === 'commonswiki' ) {
    		// Ensure we have a stable cross-wiki title resolution
    		// See JCSingleton::parseTitle()
    		$wgJsonConfigInterwikiPrefix = "meta";
    
    		$wgJsonConfigs['Tabular.JsonConfig']['store'] = true;
    		$wgJsonConfigs['Map.JsonConfig']['store'] = true;
    	} else {
    		$wgJsonConfigInterwikiPrefix = "commons";
    
    		$wgJsonConfigs['Tabular.JsonConfig']['remote'] = [
    			'url' => 'https://commons.wikimedia.org/w/api.php'
    		];
    		$wgJsonConfigs['Map.JsonConfig']['remote'] = [
    			'url' => 'https://commons.wikimedia.org/w/api.php'
    		];
    	}
    }
    
    
    
    # Scribunto Configuration
    $wgScribuntoDefaultEngine = 'luastandalone';
    # Integrating extensions: Then in your LocalSettings.php after all the extension registrations, add:
    $wgScribuntoUseGeSHi = true;
    $wgScribuntoUseCodeEditor = true;