https://bugzilla.wikimedia.org/show_bug.cgi?id=32688
Reedy <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |minor --- Comment #1 from Reedy <[email protected]> 2011-11-28 18:15:11 UTC --- // Allow the entire list of modules at first, // but during module instantiation check if it can be used as a generator. $this->mAllowedGenerators = array_merge( $this->mListModuleNames, $this->mPropModuleNames ); It's prevented from being used in code $generator = new $className ( $this, $generatorName ); if ( !$generator instanceof ApiQueryGeneratorBase ) { $this->dieUsage( "Module $generatorName cannot be used as a generator", 'badgenerator' ); } Looks like it's just an output issue.. Because the filtering (in makeHelpMsgHelper) hasn't taken place Lowering level Needs a bit of refactoring to pull that code out, and the setup being done at the top... Or we just poke it and make the filtering before we build the list for paraminfo -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
