WikiTodo: Difference between revisions

From Wiki Awoo
Jump to navigation Jump to search
Created page with "A todo list for things to change/do about the wiki"
 
Cleanup, favicon
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
A todo list for things to change/do about the wiki
A todo list for things to change/do about the wiki
* <s>Add "Angel of Islington" as a person of interest</s>
* <s>Fix CSS to make short articles render well on mobile.</s> (the wikipedia maintained mobile extension is not installed by default...) See below
* Fix favimg
=== So fixing mobile wiki view ===
For next upgrade:
* Install the MinervaNeue skin in the skins/ directory, wfLoadSkin()
* Install the MobileFrontend extension in extensions/ and snag config from below
* Copy https://wikiawoo.queer.me.uk/index.php/MediaWiki:Mobile.css from https://en.wikipedia.org/wiki/MediaWiki:Mobile.css
* https://wikiawoo.queer.me.uk/index.php/MediaWiki:Mobile.js should be <pre>mw.loader.using('mobile.site.styles')</pre>
<pre>/* LocalSettings.php */
wfLoadSkin( 'MinervaNeue' );
wfLoadExtension( 'MobileFrontend' );
$wgMFDefaultSkinClass = 'SkinMinerva'; // use Minerva skin</pre>

Latest revision as of 06:46, 28 September 2021

A todo list for things to change/do about the wiki

  • Add "Angel of Islington" as a person of interest
  • Fix CSS to make short articles render well on mobile. (the wikipedia maintained mobile extension is not installed by default...) See below
  • Fix favimg


So fixing mobile wiki view

For next upgrade:

/* LocalSettings.php */ 
wfLoadSkin( 'MinervaNeue' );
wfLoadExtension( 'MobileFrontend' );
$wgMFDefaultSkinClass = 'SkinMinerva'; // use Minerva skin