ChangeLog 5.6 KB

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