I have an application which maintains a table of places registered in the National Registry of Historic places. I'd like to reliably search for one of these places in Wikipedia, given it's NRHP "refnum".
The search I am currently using now looks like this:
http://en.wikipedia.org/w/index.php?title=Special:Search&search=refnum+66000539
(I use Python as my language, but I don't think this is especially relevant here. I construct the url, do a urlfetch, and see what comes back.)
But this example, and many others, turn up no results. However, when I go to the Wikipedia page for New York City Hall:
http://en.wikipedia.org/wiki/New_York_City_Hall
it clearly gives this exact "refnum" on the page. How can I construct a search, using the refnum, which I already know, so that I can reliably find this page?
Thanks,
Ted Gilchrist