I'm pretty sure this doesn't exist, so it's probably a feature request. The idea is to be able to do something like this:
CODE
# Wikipedia
use 'http://www.datatables.org/mediawikiapi/mediawikiapi.user.xml'
with site = 'en.wikipedia.org'
as 'wmf.en.wikipedia.user';
use 'http://www.datatables.org/mediawikiapi/mediawikiapi.user.xml'
with site = 'de.wikipedia.org'
as 'wmf.de.wikipedia.user';
...
# Wiktionary
use 'http://www.datatables.org/mediawikiapi/mediawikiapi.user.xml'
with site = 'en.wiktionary.org'
as 'wmf.en.wiktionary.user';
use 'http://www.datatables.org/mediawikiapi/mediawikiapi.user.xml'
with site = 'de.wiktionary.org'
as 'wmf.de.wiktionary.user';
...
# Memory Alpha
use 'http://www.datatables.org/mediawikiapi/mediawikiapi.user.xml'
with site = 'memory-alpha.org', api_path = 'en'
as 'memoryalpha.en.user';
A data table definition that could support this (at least the "site" part, not "api_path") is here:
http://github.com/md5/yql-tables/blob/mast...imedia.user.xml. It is hard-coded to "en.wikipedia.org", but you can pass "site" in every query to switch it. That's why I want this feature

Also, not sure exactly how to get api_path to work since it could have embedded slashes and seems to cooperate poorly with URI templates.
-md