Provides a watchlist and notifier for changes to semantic properties.
Semantic Watchlist is an extension to Semantic MediaWiki that enables users to
watch semantic properties by adding a new watchlist page (Special:SemanticWatchlist)
that lists changes to these properties.
Semantic Watchlist 1.3:
Semantic Watchlist 1.2:
Semantic Watchlist 1.1:
The recommended way to install Semantic Watchlist is by using Composer with an entry in MediaWiki’s composer.json
.
{
"require": {
"mediawiki/semantic-watchlist": "~1.0"
}
}
composer require mediawiki/semantic-watchlist:~1.0
php maintenance/update.php
from your MediaWiki installation directoryFor configuration, see the configuration documentation on MediaWiki.org.
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.
Find more detailed usage documentation on MediaWiki.org. Recent changes can be found in the release notes.
If you have remarks, questions, or suggestions, please send them to semediawiki-users@lists.sourceforge.net.
You can subscribe to this list here.
If you want to contribute work to the project please subscribe to the
developers mailing list and have a look at the contribution guildline.
A list of people who have made contributions in the past can be found here.
Semantic Watchlist is in part a workflow extension, which makes it important for other SMW/MW extensions
and tools to interact with it. This is possible via the hooks and API modules Semantic Watchlist provides:
addswlgroup
an API module to add semantic watchlist groups.deleteswlgroup
an API module to delete semantic watchlist groups.editswlgroup
an API module to modify semantic watchlist groups.semanticwatchlist
returns a list of modified properties per page for a persons semantic watchlist.SWLBeforeEmailNotify
SWLBeforeEditInsert
SWLAfterEditInsert
SWLBeforeChangeSetInsert
SWLAfterChangeSetInsert
This extension provides unit and integration tests that are run by a continues integration platform
but can also be executed using composer phpunit
from the extension base directory.