ChangeLog 5.3 KB

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