| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 2010-07-23 Sebastien Pouliot <[email protected]>
- * BaseDomainPolicy.cs: Add internal setter for Exception property
- * ClientAccessPolicy.cs: Re-order checks (to match SL) and throw
- NotSupportedException for invalid headers
- 2010-07-20 Sebastien Pouliot <[email protected]>
- * NoAccessPolicy.cs: Set default to SecurityException each time
- IsAllowed is called since we share a single instance of this type
- 2010-07-19 Sebastien Pouliot <[email protected]>
- * BaseDomainPolicy.cs:
- * ICrossDomainPolicy.cs:
- * NoAccessPolicy.cs:
- * PolicyDownloadPolicy.cs:
- * SiteOfOriginPolicy.cs:
- Allow throwing something else than a SecurityException
- which is pretty rare but we got a DRT for it
- 2010-05-14 Sebastien Pouliot <[email protected]>
- * FlashCrossDomainPolicy.cs: Reverse conditions order on secure=true
- since we're currently too severe. Fix DRT668
- 2010-04-13 Sebastien Pouliot <[email protected]>
- * CrossDomainPolicyManager.cs: Fix previous change since it
- breaks several valid cases (e.g. text/*, text/xml; charset=utf-8)
- and does not completely covers the application/xml case.
- Avoid possible ArgumentException while adding policies since it
- confuse the logs.
- 2010-04-13 Andreia Gaita <[email protected]>
- * CrossDomainPolicyManager.cs: make the contentType detection
- look for /xml at the end, it's more reliable
- (fixes olympics for moonlight)
- 2010-04-07 Sebastien Pouliot <[email protected]>
- * ClientAccessPolicy.cs: Fake a "GET" method when applying a
- policy to sockets
- 2010-04-07 Sebastien Pouliot <[email protected]>
- * BaseDomainPolicy.cs: Abstract-fy IsAllowed(WebRequest) and
- remove abstract IsAllowed(Uri,string[]) since it cannot provide
- enough information for the client access policy.
- * ClientAccessPolicy.cs: Replace IsAllowed(Uri,string[]) with
- IsAllowed(WebRequest) and add logic for AllowAnyMethod
- * ClientAccessPolicyParser.cs: Read "http-methods" attribute (new
- in SL3) and set the new AllowAnyMethod property if the value is
- "*" (the only legal value if the attribute is present).
- * FlashCrossDomainPolicy.cs: Add IsAllowed(WebRequest) since it's
- not part of BaseDomainPolicy anymore.
- 2010-04-06 Sebastien Pouliot <[email protected]>
- * ClientAccessPolicyParser.cs: Don't forget "http-request-headers"
- as a valid attribute
- 2010-04-06 Sebastien Pouliot <[email protected]>
- * ClientAccessPolicyParser.cs: Catch extra attributes that
- leads to an invalid (no-access) policy. Fix parts of DRT#666
- * CrossDomainPolicyManager.cs: Ignore policies sent with a
- Content-Type different than "text/*". Fix DRT#667
- * FlashCrossDomainPolicyParser.cs: Catch extra attributes and
- the case where a second policy is present (invalid xml). Fix
- parts of DRT#666
- 2010-03-10 Sebastien Pouliot <[email protected]>
- * BaseDomainPolicy.cs, ClientAccessPolicy[Parser].cs,
- CrossDomainPolicyManager.cs, FlashCrossDomainPolicy[Parser].cs,
- ICrossDomainPolicy.cs, NoAccessPolicy.cs, PolicyDownloadPolicy.cs,
- SiteOfOriginPolicy.cs: Moved from System.Net.dll with namespace
- and minor build adjustments.
|