In XCode 4.2 Robert's fix needs a little change because the doc set path changed to /Library/Developer/Shared/Documentation/DocSets:
sudo egrep -lRZ "Prototype.Browser.Xcode4OrNewer=Prototype.Browser.XcodeVersion<1000;" /Library/Developer/Shared/Documentation/DocSets | xargs -0 -L % sudo sed -i '' -e 's/Prototype\.Browser\.Xcode4OrNewer\=Prototype\.Browser\.XcodeVersion\<1000\;/Prototype\.Browser\.Xcode4OrNewer\=false\;/g'
UPDATE: And for XCode 4.3 which installs as an App Store App the location moves to the user library:
sudo egrep -lRZ "Prototype.Browser.Xcode4OrNewer=Prototype.Browser.XcodeVersion<1000;" ~/Library/Developer/Shared/Documentation/DocSets | xargs -0 -L % sudo sed -i '' -e 's/Prototype\.Browser\.Xcode4OrNewer\=Prototype\.Browser\.XcodeVersion\<1000\;/Prototype\.Browser\.Xcode4OrNewer\=false\;/g'
UPDATE 2/2013. With OSX 10.8.2 and newer I ran into two more issues, one is the one mentioned by regulus6633: Some files bail with a comment that the file name is too long.
I solved it by switching to the docs folder (~/Library/Developer/Shared/Documentation/DocSets) and using a shortened command
sudo egrep -lRZ "Prototype.Browser.Xcode4OrNewer=Prototype.Browser.XcodeVersion<1000;" . | xargs -0 -L % sudo sed -i '' -e 's/Prototype\.Browser\.Xcode4OrNewer\=Prototype\.Browser\.XcodeVersion\<1000\;/Prototype\.Browser\.Xcode4OrNewer\=false\;/g'
The second problem was that I had one file blocking the process because it could not be changed. No idea, as to why, permissions looked OK (was reported as nonexistant which was obviously wrong).
I ran out of patience and fixed it by changing that one file manually.
There's another change in XCode 4.6, here the command for the new docsets needs to be (from the docset folder)
You might still need to run the old one, too, if you newly install legacy docsets
sudo egrep -lRZ "Prototype.Browser.Xcode4OrNewer=Prototype.Browser.XcodeVersion<1e3;" . | xargs -0 -L % sudo sed -i '' -e 's/Prototype\.Browser\.Xcode4OrNewer\=Prototype\.Browser\.XcodeVersion\<1000\;/Prototype\.Browser\.Xcode4OrNewer\=false\;/g'