MER-C / wiki-java

A MediaWiki bot framework in Java
GNU Affero General Public License v3.0
66 stars 58 forks source link

Getting the Revision Timestamp #146

Closed GeneralVolkoV closed 7 years ago

GeneralVolkoV commented 7 years ago

I try to write a bot to check in two different wikis using the same templates, which wiki has the newest version of each templates. For this I would need to get the actual revisions timestamp. How can I retrieve this?

GeneralVolkoV commented 7 years ago

Took a while, but I found out by myself:

    Revision[] revs1=wiki1.getPageHistory(title);
    Revision[] revs2=wiki2.getPageHistory(title);

    Calendar time1=revs1[0].getTimestamp();
    Calendar time2=revs2[0].getTimestamp();