Short description
From the XMLRPC API description:
- array getRecentChanges( Date timestamp ): Get list of changed pages since timestamp, which should be in UTC. The result is an array, where each element is a struct:
- name (utf8) : Name of the page.
- lastModified (date) : Date of last modification, in UTC.
- author (utf8) : Name of the author (if available).
- version (int) : Current version.
This returns all changes from all users and timestamp doesn't have an upper limit. In big wikis or when timestamp is well in the past it causes load on the server and the client code becomes slower.
Please add these parameters:
- author (utf8) : Return changes only from this author.
- before (date) : Return only changes made between [timestamp, before].
Posted by: atodorov redhat com