Compat.browser 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!--
  2. This file defines some of the browsers that Microsoft's implementation provides in
  3. <windir>\Microsoft.NET\Framework\<ver>\CONFIG\Browsers\*.browser
  4. It is not derived from any file distributed with Microsoft's implementation. Since
  5. we can't distribute MS's browser files, we use browscap.ini to determine
  6. browser capabilities. Then, if and only if the application contains App_Browser/*.browser
  7. files and we are using .NET 2.0 or higher, we supplement the capabilities with the
  8. information in those files and the files in this directory. The primary goal of this file
  9. is provide browser definitions that might be referenced in App_Browser/*.browser files.
  10. -->
  11. <browsers>
  12. <defaultBrowser id="Default">
  13. </defaultBrowser>
  14. <browser id="Default">
  15. <identification>
  16. <userAgent match="." />
  17. </identification>
  18. </browser>
  19. <browser id="IE6to9" parentID="Default">
  20. <identification>
  21. <capability name="majorver" match="^[6-9]" />
  22. <capability name="browser" match="^(IE|AOL)$" />
  23. </identification>
  24. </browser>
  25. <browser id="Opera8to9" parentID="Default">
  26. <identification>
  27. <capability name="majorver" match="^[8-9]" />
  28. <capability name="browser" match="^Opera$" />
  29. </identification>
  30. </browser>
  31. <browser id="Safari" parentID="Default">
  32. <identification>
  33. <capability name="browser" match="^Safari$" />
  34. </identification>
  35. </browser>
  36. <browser id="Mozilla" parentID="Default">
  37. <identification>
  38. <capability name="browser" match="^Mozilla" />
  39. </identification>
  40. </browser>
  41. </browsers>