Difference between revisions of "GenerateRoyalPages"
Jump to navigation
Jump to search
| (20 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | {{Action | + | __NOCACHE__{{Action |
|name=GenerateRoyalPages | |name=GenerateRoyalPages | ||
|servicetype=WikiTask | |servicetype=WikiTask | ||
| Line 12: | Line 12: | ||
|storemode=property | |storemode=property | ||
}} | }} | ||
| − | |||
= template = | = template = | ||
<source lang='java' id='dialog'> | <source lang='java' id='dialog'> | ||
| Line 24: | Line 23: | ||
@import com.bitplan.mediawiki.japi.Mediawiki | @import com.bitplan.mediawiki.japi.Mediawiki | ||
@import com.bitplan.mediawiki.japi.api.Api | @import com.bitplan.mediawiki.japi.api.Api | ||
| − | @include(wiki. | + | @include(wiki.PersonJava.Code) |
@args() { | @args() { | ||
String title | String title | ||
| Line 30: | Line 29: | ||
org.sidif.wiki.WikiTask wikiTask | org.sidif.wiki.WikiTask wikiTask | ||
org.sidif.triple.TripleStore tripleStore | org.sidif.triple.TripleStore tripleStore | ||
| + | } | ||
| + | @// get the Stacktrace | ||
| + | @def getStackTrace(Throwable th) { | ||
| + | @{ | ||
| + | StringWriter sw = new StringWriter(); | ||
| + | PrintWriter pw = new PrintWriter(sw); | ||
| + | th.printStackTrace(pw); | ||
| + | String sStackTrace = sw.toString(); | ||
| + | } | ||
| + | @(sStackTrace) | ||
| + | } | ||
| + | @// handle error | ||
| + | @def handleError(Throwable th) { | ||
| + | <span style='color:red'>Error: @(th.getClass().getName()): @(th.getMessage())</span> | ||
| + | === stacktrace === | ||
| + | <pre> | ||
| + | @getStackTrace(th) | ||
| + | </pre> | ||
} | } | ||
@// create the given person | @// create the given person | ||
| − | @def createPerson( | + | @def createPerson(Person p) { |
| + | # [[@(p.getName())]] | ||
@{ | @{ | ||
Throwable error=null; | Throwable error=null; | ||
try { | try { | ||
| − | String pageTitle= | + | String pageTitle=p.getName(); |
SSLWiki wiki=(SSLWiki)wikiTask.getWiki(); | SSLWiki wiki=(SSLWiki)wikiTask.getWiki(); | ||
| + | String pageContent=p.toWikiSon(); | ||
String summary="generated by GenerateRoyalPages at "+wiki.getIsoTimeStamp(); | String summary="generated by GenerateRoyalPages at "+wiki.getIsoTimeStamp(); | ||
wiki.edit(pageTitle,pageContent,summary); | wiki.edit(pageTitle,pageContent,summary); | ||
| Line 45: | Line 64: | ||
} | } | ||
@if (error) { | @if (error) { | ||
| − | + | @handleError(error) | |
} | } | ||
} | } | ||
@{ | @{ | ||
TripleQuery query=tripleStore.query(); | TripleQuery query=tripleStore.query(); | ||
| − | + | PersonManager pm=new PersonManager(query); | |
| + | FamilyManager fm=new FamilyManager(query); | ||
| + | int pCount=0; | ||
| + | int pMax=3; | ||
//Triple contextTriple=query.selectSingle(null,"isA","Context"); | //Triple contextTriple=query.selectSingle(null,"isA","Context"); | ||
//String contextName=contextTriple.getSubject().toString(); | //String contextName=contextTriple.getSubject().toString(); | ||
| Line 57: | Line 79: | ||
} | } | ||
@(wikiTask.getWiki().getIsoTimeStamp()) | @(wikiTask.getWiki().getIsoTimeStamp()) | ||
| − | @(query.size()) triples found | + | *@(query.size()) triples found |
| − | @createPerson( | + | *@(pm.getPersons().size()) persons found |
| + | *@(fm.getFamilies().size()) families found | ||
| + | @for (Person p:pm.getPersons()) { | ||
| + | @createPerson(p) | ||
| + | @{ | ||
| + | pCount++; | ||
| + | if (pCount>=pMax) { | ||
| + | break; | ||
| + | } | ||
} | } | ||
} | } | ||
| Line 66: | Line 96: | ||
= Links = | = Links = | ||
* {{Link|target=Royal92#sidif}} | * {{Link|target=Royal92#sidif}} | ||
| + | * {{Link|target=PersonJava}} | ||
* {{Link|target=Concept:Action}} | * {{Link|target=Concept:Action}} | ||
* {{Link|target=Template:Action}} | * {{Link|target=Template:Action}} | ||
* {{Link|target=Template:Wikitask}} | * {{Link|target=Template:Wikitask}} | ||
<headertabs/> | <headertabs/> | ||
Latest revision as of 08:57, 6 October 2017
| Action | |
|---|---|
| name | GenerateRoyalPages |
| servicetype | WikiTask |
| service | |
| inputtype | Page |
| input | Royal92#sidif |
| actionpage | GenerateRoyalPages#template |
| output | Royal92/pages |
| engine | rythm |
| author | Wf |
| since | 2017/10/06 |
| comment | Create wiki pages for Royal-Family |
login
reset
runtemplate -> Royal92/pages