professional-wiki / persistent-page-identifiers
Stable unique identifiers for your MediaWiki pages. UUID v7 or PURIs, accessible via parser function and REST API
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 6
Type:mediawiki-extension
Requires
- php: >=8.1
- composer/installers: ^2|^1.0.1
- ramsey/uuid: ^4.7.6
Requires (Dev)
- mediawiki/mediawiki-codesniffer: ^45.0.0
- phpstan/phpstan: ^2.0.1
This package is auto-updated.
Last update: 2024-11-20 13:18:54 UTC
README
Stable unique identifiers for your wiki pages. Maintain persistent references across MediaWiki page changes. Read more in the Persistent Page Identifiers documentation.
Table of Contents
Professional Wiki created this extension and provides MediaWiki Development, MediaWiki Hosting, and MediaWiki Consulting services.
Usage Documentation
See the Persistent Page Identifiers usage documentation.
Installation
See the Persistent Page Identifiers installation instructions.
Configuration
See the Persistent Page Identifiers configuration reference.
Development
Run composer install
in extensions/PersistentPageIdentifiers/
to make the code quality tools available.
Running Tests and CI Checks
You can use the Makefile
by running make commands in the PersistentPageIdentifiers
directory.
make ci
: Run everythingmake test
: Run all testsmake phpunit --filter FooBar
: run only PHPUnit tests with FooBar in their namemake phpcs
: Run all style checksmake cs
: Run all style checks and static analysis
Updating Baseline Files
Sometimes PHPStan generate errors or warnings we do not wish to fix.
These can be ignored by adding them to the respective baseline file. You can update
these files with make stan-baseline
.
Release Notes
Version 1.0.0 - 2024-11-20
- Generate a unique persistent identifier for each page
- Maintenance script to generate persistent identifiers for all pages without them
- Parser function to display the persistent identifier
- Include the persistent identifier in page information (
&action=info
) - API endpoint to get the persistent identifiers for pages
- Configurable format for the persistent identifier
- Compatibility with MediaWiki 1.39 up to 1.43
- Compatibility with PHP 8.1 up to 8.3