Puppet Class: role::semantictitle

Defined in:
puppet/modules/role/manifests/semantictitle.pp

Overview

Class: role::semantictitle

The Semantic Title extension allows an alternate display title to be displayed on the title bar of a page and as the link text displayed for links to a page



5
6
7
8
9
10
11
12
13
14
15
# File 'puppet/modules/role/manifests/semantictitle.pp', line 5

class role::semantictitle {

    require ::role::mediawiki

    mediawiki::extension { 'SemanticTitle':
        settings => {
            'wgAllowDisplayTitle'    => true,
            'wgRestrictDisplayTitle' => false
        }
    }
}