ChangeLog 5.2 KB

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