ChangeLog 5.4 KB

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