Wiki: Difference between revisions
From Nasqueron Agora
(Created page with "== Installation == * {{port|lang/lua}} (Lua 5.1) == Extensions == * mw:Extension:Scribunto") |
(+Cite +ParserFunctions (geeneral purpose extensions). Categorization.) |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
* {{port|lang/lua}} (Lua 5.1) | * {{port|lang/lua}} (Lua 5.1) | ||
== Extensions == | == Installation guide == | ||
=== Configuration === | |||
<syntaxhighlight lang="php"> | |||
$wgServer = "http://wiki.nasqueron.org"; | |||
$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright | |||
$wgRightsUrl = "http://creativecommons.org/licenses/by/3.0/"; | |||
$wgRightsText = "Creative Commons Attribution"; | |||
$wgRightsIcon = "{$wgStylePath}/common/images/cc-by.png"; | |||
</syntaxhighlight> | |||
=== Extensions === | |||
We use a deployment script. | |||
==== General purpose extensions ==== | |||
cd extensions | |||
./deploy Poem | |||
./deploy Cite | |||
./deploy ParserFunctions | |||
==== Scribunto ==== | |||
cd extensions | |||
./deploy CodeEditor | |||
./deploy SyntaxHighlight_GeSHi | |||
./deploy Scribunto | |||
cat >> ../LocalSettings.php | |||
$wgScribuntoEngineConf['luastandalone']['luaPath'] = '/usr/local/bin/lua-5.1'; | |||
[[Category:Nasqueron web sites]] |
Latest revision as of 20:03, 24 October 2013
Installation
- lang/lua (Lua 5.1)
Installation guide
Configuration
$wgServer = "http://wiki.nasqueron.org";
$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
$wgRightsUrl = "http://creativecommons.org/licenses/by/3.0/";
$wgRightsText = "Creative Commons Attribution";
$wgRightsIcon = "{$wgStylePath}/common/images/cc-by.png";
Extensions
We use a deployment script.
General purpose extensions
cd extensions ./deploy Poem ./deploy Cite ./deploy ParserFunctions
Scribunto
cd extensions ./deploy CodeEditor ./deploy SyntaxHighlight_GeSHi ./deploy Scribunto cat >> ../LocalSettings.php $wgScribuntoEngineConf['luastandalone']['luaPath'] = '/usr/local/bin/lua-5.1';