Extension:ForcePreview/de-formal

This page is a translated version of the page Extension:ForcePreview and the translation is 22% complete.
MediaWiki extensions manual
ForcePreview
Release status: stable
Implementation User rights
Description Forces unprivileged users to preview before saving
Author(s) Ryan Schmidt (SkizzerzDiskussion)
Latest version 2.0.0 (2017-09-20)
MediaWiki 1.29+
Database changes No
License MIT License
Download
README
Example strategywiki.org
forcepreviewexempt
Quarterly downloads 10 (Ranked 130th)
Translate the ForcePreview extension if it is available at translatewiki.net

The ForcePreview forces unprivileged users to preview before saving.

Usage

Users without the forcepreviewexempt right will be forced to use the "Vorschau zeigen" (or "Live Preview", if enabled) button before being allowed to save the page.

Installation

  • Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens ForcePreview im Ordner extensions/ ablegen.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ForcePreview
  • Folgenden Code am Ende Ihrer LocalSettings.php -Datei hinzufügen:
    wfLoadExtension( 'ForcePreview' );
    // Does not force preview for registered users
    $wgGroupPermissions['user']['forcepreviewexempt'] = true;
    
  •   Done – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

Siehe auch

  • Manual:Force preview - JavaScript that performs the same function, albeit easier to work around (users can simply disable JavaScript on their browser to get around the restriction).