ChangeLog 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. 2007-11-02 Juraj Skripsky <[email protected]>
  2. * AssemblyResourceLoader.cs: As the assembly name is encrypted via
  3. EncryptAssemblyResource, we mustn't UrlEncode it anymore.
  4. 2007-11-01 Marek Habersack <[email protected]>
  5. * AssemblyResourceLoader.cs: added GetHexString, copied from
  6. FormsAuthentication.cs. Encryption/decryption routines use methods
  7. from the new MachineKeySectionUtils class. This is needed for the
  8. same code to work from both System.Web and System.Web.Extensions.
  9. 2007-10-31 Marek Habersack <[email protected]>
  10. * AssemblyResourceLoader.cs: implemented assembly+resource name
  11. encryption in the URLs. This follows MS.NET behavior. Also the
  12. code is not varying the cache on the 't' parameter. Fixes bug
  13. #338051.
  14. 2007-10-30 Juraj Skripsky <[email protected]>
  15. * AssemblyResourceLoader.cs: Always use '&' as query parameter
  16. separator, as HttpUtility does not support ';' anymore.
  17. 2007-08-23 Igor Zelmanovich <[email protected]>
  18. * AssemblyResourceLoader.cs: for SYSTEM_WEB_EXTENSIONS only:
  19. fixed JSON serialization of resources.
  20. 2007-08-06 Rodrigo Kumpera <[email protected]>
  21. * AssemblyResourceLoader.cs: use the right static constructor name
  22. if SYSTEM_WEB_EXTENSIONS is defined.
  23. 2007-08-06 Vladimir Krasnov <[email protected]>
  24. * AssemblyResourceLoader.cs: performance optimization, caching urls for
  25. built-in resources
  26. fixed CacheControl, should be private
  27. added HttpException if resource is not found
  28. 2007-07-16 Igor Zelmanovich <[email protected]>
  29. * AssemblyResourceLoader.cs:
  30. fixed RegEx used for PerformSubstitution feature.
  31. 2007-07-11 Igor Zelmanovich <[email protected]>
  32. * AssemblyResourceLoader.cs:
  33. for System.Web.Extensions only:
  34. ScriptResourceName may include ".resource" suffix.
  35. 2007-07-03 Igor Zelmanovich <[email protected]>
  36. * AssemblyResourceLoader.cs:
  37. implemented WebResourceAttribute.PerformSubstitution feature.
  38. 2007-06-20 Vladimir Krasnov <[email protected]>
  39. * AssemblyResourceLoader.cs: GetResourceUrl, fixed typo
  40. 2007-06-18 Igor Zelmanovich <[email protected]>
  41. * AssemblyResourceLoader.cs: refactoring:
  42. make the code reusable in System.Web.Extensions.
  43. 2007-05-30 Vladimir Krasnov <[email protected]>
  44. * AssemblyResourceLoader.cs: GetResourceUrl, TARGET_JVM will use type's
  45. hashcode for resource url
  46. 2007-04-06 Marek Habersack <[email protected]>
  47. * AssemblyResourceLoader.cs: use the correct query parameter
  48. separator char for the current platform version. Fixes bug
  49. #80633.
  50. 2006-01-30 Gonzalo Paniagua Javier <[email protected]>
  51. * TraceHandler.cs: class status fixes.
  52. 2006-01-26 Chris Toshok <[email protected]>
  53. * AssemblyResourceLoader.cs (GetResourceUrl): if the assembly
  54. corresponds to an on-disk file, append the last write time to the
  55. url so we can enable client side caching.
  56. (ProcessRequest): tell the client to cache the url for 1 year, and
  57. have it vary by 'r' (resource name) and 't' (assembly timestamp).
  58. 2006-01-03 Gonzalo Paniagua Javier <[email protected]>
  59. * TraceHandler.cs: when clearing trace data, remove 'clear=1' from the
  60. query string. Fixes bug #77072.
  61. 2005-09-02 Sebastien Pouliot <[email protected]>
  62. * AssemblyResourceLoader.cs: Class is sealed in 2.0.
  63. * TraceHandler.cs: Added security permissions on class (LinkDemand and
  64. InheritanceDemand for AspNetHostingPermission) and on ctor (Demand for
  65. UnmanagedCode). Stubbed new protected methods for 2.0.
  66. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  67. * AssemblyResourceLoader.cs: Use a special name when encoding a resource
  68. from the System.Web assembly.
  69. 2004-10-06 Gonzalo Paniagua Javier <[email protected]>
  70. * TraceHandler.cs: error code is 403 and the message different when
  71. trace is enabled but not for remote clients.
  72. 2004-07-02 Gonzalo Paniagua Javier <[email protected]>
  73. * TraceHandler.cs: check that trace is enabled or throw.
  74. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  75. * TraceHandler.cs: Added protected missing members and attributes.
  76. 2004-01-10 Jackson Harper <[email protected]>
  77. * TraceHandler.cs: Obey localOnly attribute.
  78. 2004-01-10 Jackson Harper <[email protected]>
  79. * TraceHandler.cs: Implement.
  80. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  81. * AssemblyResourceLoader.cs: fixed compilation under MS. Ben already
  82. filed a bug report.
  83. 2003-11-04 Jackson Harper <[email protected]>
  84. * AssemblyResourceLoader.cs: No method body for v1. This fixes the
  85. build.
  86. 2003-11-04 Ben Maurer <[email protected]>
  87. * AssemblyResourceLoader.cs: New file. New v2 handler.
  88. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  89. * ChangeLog: New file.
  90. * TraceHandler.cs: stubbed out. This should generate the trace page
  91. when tracing is enabled.