Laajennus:SemanticDepedencyUpdater
Semantic Dependency Updater Julkaisustatus: vakaa |
|
---|---|
Toteutus | Käyttöliittymä |
Kuvaus | Monitors semantic data changes and updates depended pages |
Tekijä(t) | Simon Heimler, Alexander Gesinn |
Ylläpitäjä(t) | gesinn.it |
Viimeisin versio | 3.0.3 (2024-01-09) |
MediaWiki | 1.35+ |
Tietokantamuutokset | Ei |
Lisenssi | MIT-lisenssi |
Lataa | GitHub: Note: Releases |
|
|
Compatibility
|
|
The Semantic Dependency Updater (SDU) extension monitors pages for changes in their semantic data. If the "Semantic Dependency" property is found, this extension will update all pages that have been selected through that property. A common use case is change propagation where pages need to update (pull) their semantic data via an ask query from a changed page.
The "Semantic Dependency property" is evaluated as an ASK query. It is therefore possible to define either a list of pages directly or do more complex selections.
Asennus
- Download ja siirrä tiedosto(t)
extensions/
-kansiosi hakemistoon nimeltäSemanticDependencyUpdater
. - Lisää seuraava koodi LocalSettings.php -tiedostosi loppuosaan:
wfLoadExtension( 'SemanticDependencyUpdater' );
- Configure as required.
- Tehty – Mene wikisi sivulle Special:Version vahvistaaksesi, että laajennoksen asennus onnistui.
Instead of downloading the zip archive you may also check this extension out via Git:
git clone https://github.com/gesinn-it/SemanticDependencyUpdater.git extensions/SemanticDependencyUpdater
Määritys
Pakollinen
Make sure, a "Semantic Dependency" property exists, e.g. "Property:Semantic_Dependency" needs to exist and MUST be of the datatype Text
:
[[Has type::Text]]
Valinnainen
// Name of the Semantic Dependency property
$wgSDUProperty = 'Semantic Dependency';
// If enabled, SDU will create a Job for each update
$wgSDUUseJobQueue = false;
Käyttö
The value of the Semantic Dependency property is evaluated as an ASK query, except that [[
or ]]
must be ommitted.
If there are more conditions, combine them through AND
and OR
Esimerkit
Update Self
This will save the current page twice. Useful when the page stores semantic properties that are calculated from other properties of the same page.
[[Semantic Dependency::{{FULLPAGENAME}}]]
Update other page(s)
[[Semantic Dependency::Product:Test Product]] [[Semantic Dependency::{{{Target Page|}}}]]
Update pages with relation to current page
This will update all pages that link with Part Of
to the current page.
[[Semantic Dependency::Part Of::{{FULLPAGENAME}}]]
More Advanced Queries
Be careful that the query does not return too many pages, as this will result in a heavy load.
[[Semantic Dependency::Category:Product]] [[Semantic Dependency::Category:Product AND Tag::Demo]] [[Semantic Dependency::Category:Person OR Category:Organization]]
Esimerkki testitapauksesta
- Make sure, a page
Property:Semantic_Dependency
exists with content[[Has type::Text]]
- Make sure,
$wgSDUUseJobQueue = false;
- Create a page
A
with
[[Title::A]]
- Create a page
B
with
* [[Part Of::A| ]][[Title::{{#show:A|?Title}}.B]] * {{#show:{{FULLPAGENAME}}|?Title}}
- Now, change page
A
as follows
[[Title::XXX]]
As a result, you should see
- XXX.B - XXX.B
on page B
Virheenkorjaus
- Note, that on some systems logging to /tmp might not work
- Make sure, a log folder, writable by your web server, exists
> mkdir /var/log/mediawiki > chown -R www-data /var/log/mediawiki
- In your LocalSettings enable
$wgDebugLogGroups['SemanticDependencyUpdater'] = '/var/log/mediawiki/SDU.log';
- Watch the log file
> tail -f /var/log/mediawiki/SDU.log
- If things work as expected, this will look like:
2020-03-25 13:01:45 vagrant wikidb01-wk: [SDU] --> A 2020-03-25 13:01:45 vagrant wikidb01-wk: [SDU] -----> Data changes detected 2020-03-25 13:01:45 vagrant wikidb01-wk: [SDU] --------> [[Part Of::A]] 2020-03-25 13:01:45 vagrant wikidb01-wk: [SDU] --------> [Edit] B
Katso myös
This extension is included in the following wiki farms/hosts and/or packages: This is not an authoritative list. Some wiki farms/hosts and/or packages may contain this extension even if they are not listed here. Always check with your wiki farms/hosts or bundle to confirm. |
- Stable extensions/fi
- User interface extensions/fi
- MIT licensed extensions/fi
- Extensions in GitHub version control/fi
- SMW::SQLStore::AfterDataUpdateComplete extensions/fi
- All extensions/fi
- Extensions included in Canasta/fi
- Extensions included in semantic::core/fi
- Semantic MediaWiki extensions/fi
- Extensions by gesinn.it/fi