Jump to content

Extension:Semantic Watchlist: Difference between revisions

shortcut: SWL
From mediawiki.org
Content deleted Content added
New version, 0.2.1
New version, 0.2.2
Line 16: Line 16:
| image =
| image =
| imagesize = 200
| imagesize = 200
| version = 0.2.1
| version = 0.2.2
| update = September 2013
| update = December 2013
| mediawiki = 1.17.0 or higher
| mediawiki = 1.17.0 or higher
| license = GNU GPL v3+
| license = GNU GPL v3+
Line 141: Line 141:


This is a copy of the {{git file|project=mediawiki/extensions/SemanticWatchlist|file=RELEASE-NOTES|text=release notes file on Git}}, which might be more up to date than this page.
This is a copy of the {{git file|project=mediawiki/extensions/SemanticWatchlist|file=RELEASE-NOTES|text=release notes file on Git}}, which might be more up to date than this page.

=== Version 0.2.2 ===
2013-12-10

* Fix for Special:AdminLinks when using SMW 1.9+.


=== Version 0.2.1 ===
=== Version 0.2.1 ===

Revision as of 18:44, 10 December 2013

MediaWiki extensions manual
Semantic Watchlist
Release status: beta
Implementation Special page , API , User interface, Ajax
Description Watchlist and notifier for changes to semantic properties
Author(s) Jeroen De Dauw, Nischay Nahata
Latest version 0.2.2 (December 2013)
MediaWiki 1.17.0 or higher
PHP 5.2 or above
Database changes Yes
Composer mediawiki/semantic-watchlist
  • $wgDefaultUserOptions
    (swl_email, swl_watchlisttoplink)
  • $egSWLEnableEmailNotify
  • $egSWLMailPerChange
  • $egSWLMaxMails
  • $egSWLEnableTopLink
  • semanticwatch
  • semanticwatchgroups
Licence GNU GPL v3
Download
README
Translate the Semantic Watchlist extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

Semantic Watchlist (abbreviated as SWL) is a MediaWiki extension that enables users to "watch", i.e. monitor changes in, properties defined by the Semantic MediaWiki extension. SWL defines a new watchlist page that lists changes to these properties. Users can choose to follow one or more watchlist groups, which are administrator defined, and cover a set of properties and a set of pages (category, namespace, or SMW concept). Notification of changes to watched properties is also possible via email.

Rationale

Users often want to keep track of the changes made on a wiki. On small wikis the RecentChanges special page often suffices for this. For bigger wikis, you might only be interested in changes to some of the articles, for example those which you are knowledgeable about, or those which contain sensitive data. The MediaWiki watchlist is a great tool for watching content on per-article basis.

In semantic wikis, you might be interested in only watching changes to semantic properties that you care about. For example, on an auction wiki, the price of an item might be the only thing you are truly concerned about, on the page for that item. The Semantic Watchlist extension allows for such fine-grained watching of changes.

Feature overview

Requirements

Semantic Watchlist requires:

Download

The extension can be retrieved directly from Git [?]:

  • Browse code
  • Some extensions have tags for stable releases.
  • Each branch is associated with a past MediaWiki release. There is also a "master" branch containing the latest alpha version (might require an alpha version of MediaWiki).

Extract the snapshot and place it in the extensions/SemanticWatchlist/ directory of your MediaWiki installation.

If you are familiar with Git and have shell access to your server, you can also obtain the extension as follows:

cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/SemanticWatchlist.git

Installation

  • Download and move the extracted SemanticWatchlist folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/SemanticWatchlist
    
  • Add the following code at the bottom of your LocalSettings.php file:
    require_once "$IP/extensions/SemanticWatchlist/SemanticWatchlist.php";
    
  • Run the update script which will automatically create the necessary database tables that this extension needs.
  • Configure as required (see below)
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Updating from version 0.1

If you're updating from version 0.1 of Semantic Watchlist, you will need to add one more column to one of the SWL database tables. To do that, call the following SQL within the database:

ALTER TABLE /*$wgDBprefix*/swl_groups ADD COLUMN group_custom_texts BLOB null

Configuration

Configuration of Semantic Watchlist is done by setting various global variables in the LocalSettings.php file. These statements need to be placed AFTER the inclusion of Semantic Watchlist. The options, and their default values, are listed below.

Email notifications

  • $egSWLEnableEmailNotify - whether to email users on changes (default is true)
  • $egSWLMailPerChange - whether to send an email on every change, as opposed to a generic "something changed" email for the first $egSWLMaxMails changes (default is true)
  • $egSWLMaxMails - the maximum amount of generic emails to send about changes until the user actually checks their semantic watchlist (default is 1)
  • $wgDefaultUserOptions['swl_email'] - the value for the user preference to receive email notifications (default is true)
  • $wgDefaultUserOptions['swl_watchlisttoplink'] - the value for the user preference to view a top link to the semantic watchlist (default is true)
  • $egSWLEnableTopLink - whether to display a top link to the semantic watchlist (default is true)

Permissions

Semantic Watchlist adds 2 permissions to MediaWiki: one to use the semantic watchlist (i.e. Special:SemanticWatchlist) and one that allows configuring the watchlist groups (i.e .Special:WatchlistConditions).

Using the watchlist

Default:

# Users that can use the semantic watchlist.
$wgGroupPermissions['*'            ]['semanticwatch'] = false;
$wgGroupPermissions['user'         ]['semanticwatch'] = true;
$wgGroupPermissions['autoconfirmed']['semanticwatch'] = true;
$wgGroupPermissions['bot'          ]['semanticwatch'] = false;
$wgGroupPermissions['sysop'        ]['semanticwatch'] = true;

Configuring watchlist groups

Default:

# Users that can modify the watchlist groups via Special:WatchlistConditions
$wgGroupPermissions['*'            ]['semanticwatchgroups'] = false;
$wgGroupPermissions['user'         ]['semanticwatchgroups'] = false;
$wgGroupPermissions['autoconfirmed']['semanticwatchgroups'] = false;
$wgGroupPermissions['bot'          ]['semanticwatchgroups'] = false;
$wgGroupPermissions['sysop'        ]['semanticwatchgroups'] = true;

(Until version 0.2.1, Semantic Watchlist defined its own user group as well, 'swladmins'.)

Usage

The watchlist

Each user can view changes to properties they watch on Special:SemanticWatchlist, which looks and works similar to the regular watchlist. Items that have not been viewed yet on the watchlist will be indicated as 'NEW'.

Watchlist preferences

Each user can manage which watchlist groups they follow via their user preferences. They can also choose if they want to receive email notifications or not. These preferences can be found on Special:Preferences, which is linked at the right top of the page in most skins for logged in users.

Watchlist groups

The watchlist groups can be managed via the Special:WatchlistConditions page by people that have the 'semanticwatchgroups' right, by default only administrators. Each group has a name, which allows users to easily recognize the groups in their preferences, and a single category, namespace or concept it covers. Only changes to properties on pages in this category, namespace or concept will be shown to users watching this group. Each group also has a list of properties, which further restricts what property changes should be shown to the user.

Version history

This is a copy of the release notes file on Git, which might be more up to date than this page.

Version 0.2.2

2013-12-10

  • Fix for Special:AdminLinks when using SMW 1.9+.

Version 0.2.1

2013-09-26

  • 'swladmins' group removed.

Version 0.2

2012-11-15

  • Special:WatchlistConditions UI improved.
  • Custom text can be sent in emails.
  • Custom text can be set using Special:WatchlistConditions.
  • No email sent to a page's own editor, by default.
  • Fixed deleting of groups, which was not working.

Version 0.1

2011-07-30

Initial release with these features:

  • Special:SemanticWatchlist showing changes to properties watched by the user.
  • Per-user optional email notification per edit that changes properties.
  • Integration with user preferences to allow users to specify which watchlist groups they want to follow, and if they want to receive emails on changes.
  • Special:WatchListConditions as administration interface for watchlist groups.
  • API module to query property changes grouped by edit for a single user.
  • API modules to add, modify and delete the watchlist groups.

Extending Semantic Watchlist

Semantic Watchlist is in part a workflow extension, allowing other extensions and tools to interact with it. This is made possible via the hooks and API modules that Semantic Watchlist provides.

API modules:

  • addswlgroup: API module to add semantic watchlist groups.
  • deleteswlgroup: API module to delete semantic watchlist groups.
  • editswlgroup: API module to modify semantic watchlist groups.
  • semanticwatchlist: Returns a list of modified properties per page for a persons semantic watchlist.

Hooks:

  • SWLBeforeEmailNotify: $group, $user, $changeSet, $describeChanges, &$title, &$emailText
  • SWLBeforeEditInsert: &$this
  • SWLAfterEditInsert: &$this
  • SWLBeforeChangeSetInsert: &$this, &$groupsToAssociate, &$editId
  • SWLAfterChangeSetInsert: &$this, $groupsToAssociate, $editId

Internationalization

Semantic Watchlist is fully internationalized. Translation of Semantic Watchlist messages is done through translatewiki.net. The translation for this extension can be found here. To add language values or change existing ones, you should create an account on translatewiki.net, then request permission from the administrators to translate a certain language or languages on this page (this is a very simple process). Once you have permission for a given language, you can log in and add or edit whatever messages you want to in that language.

Authors

Semantic Watchlist was originally written by Jeroen De Dauw, as WikiWorks consultant for the IEEE. It was then modified by Nischay Nahata, again for WikiWorks and the IEEE. Code and design contributions were also made by Yaron Koren.

Screenshots

See also