Mark Henderson wrote: > I am using 1.13 alpha r32485. > > When I submit a page edit via the API, and I add [[Category]] tags > within it, they don't show up when I do a prop=categories query. > However, when I view them using Mediawiki they do. When I submit an edit > using the "real" mediawiki editor, they show up in the prop=categories > query so I think the bug is in action = edit. Has anybody else > experienced this? Is there a fix or a workaround? > > - Mark > > _______________________________________________ > Mediawiki-api mailing list > [email protected] > https://lists.wikimedia.org/mailman/listinfo/mediawiki-api > After being submitted via the API are edits automatically parsed, if not the relevant tables would not get updated. One of the beauties of the API is that you don't have to wait for the page to be parsed which takes a considerable amount of time, but without it things don't get filled in. Instantiating a parser object and using it to parse the page should be all that is needed, the return value obviously needn't be output so can simply be discarded.
MinuteElectron. _______________________________________________ Mediawiki-api mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-api
