ChangeLog 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. 2010-04-13 Andreia Gaita <[email protected]>
  2. * CrossDomainPolicyManager.cs: make the contentType detection
  3. look for /xml at the end, it's more reliable
  4. (fixes olympics for moonlight)
  5. 2010-04-07 Sebastien Pouliot <[email protected]>
  6. * ClientAccessPolicy.cs: Fake a "GET" method when applying a
  7. policy to sockets
  8. 2010-04-07 Sebastien Pouliot <[email protected]>
  9. * BaseDomainPolicy.cs: Abstract-fy IsAllowed(WebRequest) and
  10. remove abstract IsAllowed(Uri,string[]) since it cannot provide
  11. enough information for the client access policy.
  12. * ClientAccessPolicy.cs: Replace IsAllowed(Uri,string[]) with
  13. IsAllowed(WebRequest) and add logic for AllowAnyMethod
  14. * ClientAccessPolicyParser.cs: Read "http-methods" attribute (new
  15. in SL3) and set the new AllowAnyMethod property if the value is
  16. "*" (the only legal value if the attribute is present).
  17. * FlashCrossDomainPolicy.cs: Add IsAllowed(WebRequest) since it's
  18. not part of BaseDomainPolicy anymore.
  19. 2010-04-06 Sebastien Pouliot <[email protected]>
  20. * ClientAccessPolicyParser.cs: Don't forget "http-request-headers"
  21. as a valid attribute
  22. 2010-04-06 Sebastien Pouliot <[email protected]>
  23. * ClientAccessPolicyParser.cs: Catch extra attributes that
  24. leads to an invalid (no-access) policy. Fix parts of DRT#666
  25. * CrossDomainPolicyManager.cs: Ignore policies sent with a
  26. Content-Type different than "text/*". Fix DRT#667
  27. * FlashCrossDomainPolicyParser.cs: Catch extra attributes and
  28. the case where a second policy is present (invalid xml). Fix
  29. parts of DRT#666
  30. 2010-03-10 Sebastien Pouliot <[email protected]>
  31. * BaseDomainPolicy.cs, ClientAccessPolicy[Parser].cs,
  32. CrossDomainPolicyManager.cs, FlashCrossDomainPolicy[Parser].cs,
  33. ICrossDomainPolicy.cs, NoAccessPolicy.cs, PolicyDownloadPolicy.cs,
  34. SiteOfOriginPolicy.cs: Moved from System.Net.dll with namespace
  35. and minor build adjustments.