SO's Robots.txt file contains the following lines:
#
# disallow adsense bot, as we no longer do adsense. Sorry adsense,
# nothing personal, but you suck.
#
User-agent: Mediapartners-Google*
Disallow: /
(I was looking for suitable examples to add to my own site)
All well and good - however when using Google's Webmaster tools to check Robots.txt settings, I recieved the following:
Test results
Url | Googlebot | Mediapartners-Google
/ | Allowed by line 2: Allow: / | Allowed by line 2: Allow: /
/questions | Allowed by line 2: Allow: / | Allowed by line 2: Allow: /
Changing the Robots.txt to read:
User-agent: Mediapartners-Google
Disallow: /
I get what I expect you actually wanted:
Test results
Url | Googlebot | Mediapartners-Google
/ | Allowed by line 2: Allow: / | Blocked by line 19: Disallow: /
/questions | Allowed by line 2: Allow: / | Blocked by line 19: Disallow: /
Or is it that the Mediapartners spider treats the user-agent more flexibly than the test tool?