Closed GeneralVolkoV closed 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();
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?