Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/semanticmediawiki/semanticglossary
Allows you define terms and abbreviations together with a definition.
https://github.com/semanticmediawiki/semanticglossary
glossary mediawiki mw semantic semantic-mediawiki sg smw
Last synced: 5 days ago
JSON representation
Allows you define terms and abbreviations together with a definition.
- Host: GitHub
- URL: https://github.com/semanticmediawiki/semanticglossary
- Owner: SemanticMediaWiki
- License: other
- Created: 2015-01-29T11:36:16.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T09:46:08.000Z (3 months ago)
- Last Synced: 2024-10-30T05:43:10.803Z (about 2 months ago)
- Topics: glossary, mediawiki, mw, semantic, semantic-mediawiki, sg, smw
- Language: PHP
- Homepage: https://www.mediawiki.org/wiki/Extension:Semantic_Glossary
- Size: 285 KB
- Stars: 13
- Watchers: 11
- Forks: 12
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: COPYING
Awesome Lists containing this project
README
# Semantic Glossary
[![CI](https://github.com/SemanticMediaWiki/SemanticGlossary/actions/workflows/ci.yml/badge.svg)](https://github.com/SemanticMediaWiki/SemanticGlossary/actions/workflows/ci.yml)
[![codecov](https://codecov.io/github/SemanticMediaWiki/SemanticGlossary/graph/badge.svg?token=yoC0GYEOkx)](https://codecov.io/github/SemanticMediaWiki/SemanticGlossary)The [Semantic Glossary][mw-semantic-glossary] (a.k.a SG) is a [Semantic MediaWiki][smw] extension where
terms and abbreviations can be defined using semantic properties.## Requirements
- PHP 7.1 or later
- MediaWiki 1.31 or later
- [Semantic MediaWiki][smw] 3.1 or later
- [Lingo][lg] 3.1 or later## Installation
Note that the Semantic MediaWiki extension and the Lingo extension need to be installed first.
Moreover they need to be invoked earlier than this extension.The way to install this extension is by using [Composer][composer].
Just add the following to the MediaWiki "composer.local.json" file and run the
`php composer.phar install/update mediawiki/semantic-glossary` command.```json
{
"require": {
"mediawiki/semantic-glossary": "~4.0"
}
}
```Then add the following line to your "LocalSettings.php" file:
```php
wfLoadExtension( 'SemanticGlossary' );
```## Contribution and support
If you want to contribute work to the project please subscribe to the developers mailing list and
have a look at the contribution guideline.* Ask a question on [the mailing list](https://www.semantic-mediawiki.org/wiki/Mailing_list)
## Tests
This extension provides unit and integration tests that are run by a [continues integration platform][travis]
but can also be executed using `composer phpunit` from the extension base directory.## License
[GNU General Public License 2.0][license] or later.
[license]: https://www.gnu.org/copyleft/gpl.html
[mw-semantic-glossary]: https://www.mediawiki.org/wiki/Extension:Semantic_Glossary
[mw-lingo]: https://www.mediawiki.org/wiki/Extension:Lingo
[smw]: https://www.mediawiki.org/wiki/Extension:Semantic_MediaWiki
[lg]: https://www.mediawiki.org/wiki/Extension:Lingo
[composer]: https://getcomposer.org/
[travis]: https://www.travis-ci.com/github/SemanticMediaWiki/SemanticGlossary