ChangeLog 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. 2005-11-28 Robert Jordan <[email protected]>
  2. * SimpleWorkerRequest.cs: fixed MapPath () for the case
  3. app_virtual_dir.Length == 1 && path.Length == 1.
  4. * SimpleWorkerRequest.cs: implemented SendResponseFromMemory ().
  5. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  6. * ApplicationHost.cs: make this work with paths that that
  7. contain non-ASCII characters. Fixes bug #76807.
  8. 2005-11-02 Chris Toshok <[email protected]>
  9. * HostingEnvironment.cs: completely NIE'ed implementation of
  10. HostingEnvironment, just to get an MS example provider to compile.
  11. 2005-11-01 Gonzalo Paniagua Javier <[email protected]>
  12. * ApplicationHost.cs: use the AbsolutePath from the Uri to remove the
  13. schema prefix if present.
  14. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  15. * SimpleWorkerRequest.cs: all tests pass now.
  16. 2005-09-26 Gonzalo Paniagua Javier <[email protected]>
  17. * ApplicationHost.cs: append a directory separator char to the physical
  18. path. Fixes bug #76187.
  19. 2005-09-21 Gonzalo Paniagua Javier <[email protected]>
  20. * SimpleWorkerRequest.cs: fix GetUriPath() for paths ending in '/'.
  21. 2005-09-10 Sebastien Pouliot <[email protected]>
  22. * AppDomainFactory.cs: Added LinkDemand for Minimal. Added Demand for
  23. UnmanagedCode on ctor. Added TODO on unimplemented method.
  24. * ApplicationHost.cs: Added LinkDemand for Minimal. Added Demand for
  25. UnmanagedCode on ctor. Removed duplicate null checks.
  26. * ISAPIRuntime.cs: Fixed inheritance (added MarshalByRefObject and
  27. IRegisteredObject) for 2.0. Added LinkDemand for Minimal. Added Demand
  28. for UnmanagedCode on ctor.
  29. * SimpleWorkerRequest.cs: Added LinkDemand and InheritanceDemand (not
  30. sealed) for Minimal. Added Demands for UnmanagedCode on ctors. Added
  31. FileIOPermission for PathDiscovery before returning processed paths.
  32. 2005-09-10 Gonzalo Paniagua Javier <[email protected]>
  33. * ApplicationHost.cs: set the domain's DynamicBase property instead of
  34. guessing it in BaseCompiler.
  35. 2005-09-08 Eyal Alalouf <[email protected]>
  36. * ServletWorkerRequest.jvm.cs: Implement SendResponseFromFile
  37. 2005-07-24 Eyal Alalouf <[email protected]>
  38. * ServletWorkerRequest.jvm.cs: Put Console.WriteLine in #if DEBUG
  39. 2005-07-18 Eyal Alalouf <[email protected]>
  40. * Added ServletWorkerRequest.jvm.cs
  41. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  42. * IISAPIRuntime.cs: GUID changed.
  43. 2004-08-03 Atsushi Enomoto <[email protected]>
  44. * IApplicationHost.cs : missing namespace import.
  45. 2004-08-02 Duncan Mak <[email protected]>
  46. * IApplicationHost.cs (MapPath): Add [In] attribute.
  47. * IAppManagerAppDomainFactory.cs:
  48. * IProcessHostSupportFunction.cs: signature fixes.
  49. 2004-08-02 Duncan Mak <[email protected]>
  50. * IApplicationHost.cs:
  51. * IHttpWorkerRequestHandler.cs:
  52. * IProcessHost.cs:
  53. * IProcessHostFactoryHelper.cs:
  54. * IProcessHostSupportFunction.cs:
  55. * IProcessPingCallback.cs:
  56. * IQueueHost.cs:
  57. * IRegisteredObject.cs: Added interfaces.
  58. 2004-06-18 Gert Driesen <[email protected]>
  59. * IAppDomainFactory.cs: added missing marshalling attributes
  60. * IISAPIRuntime.cs: added missing marshalling attributes
  61. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  62. * AppDomainFactory.cs: set the Dynamic base for the AppDomain.
  63. 2004-03-18 Gonzalo Paniagua Javier <[email protected]>
  64. * SimpleWorkerRequest.cs: patch from Aleksey Demakov that fixes
  65. MapPath when the virtual directory is the root virtual directory.
  66. 2004-01-14 Andreas Nahr <[email protected]>
  67. * IISAPIRuntime.cs: Fixed wrong attribute
  68. 2004-01-11 Andreas Nahr <[email protected]>
  69. * SimpleWorkerRequest.cs: Added missing attribute
  70. * IISAPIRuntime.cs: Added attributes, fixed signature
  71. * IAppDomainFactory.cs: Added attributes, fixed signature
  72. 2003-08-29 Gonzalo Paniagua Javier <[email protected]>
  73. * ApplicationHost.cs: set hostingInstallDir.
  74. * SimpleWorkerRequest.cs: implemented a couple of properties.
  75. 2003-08-29 Gonzalo Paniagua Javier <[email protected]>
  76. * SimpleWorkerRequest.cs: fixed GetFilePathTranslated and added a
  77. paranoid condition to ExtractPathInfo.
  78. 2003-06-25 Eric Lindvall <[email protected]>
  79. * SimpleWorkerRequest.cs:
  80. -adds PATH_INFO support
  81. - updates GetFilePathTranslated() to make use of Path.Combine()
  82. - gets rid of the null check in GetPathInfo() (we're setting
  83. _PathInfo to String.Empty now)
  84. - fixed CreatePath() so that it doesn't return String.Empty if
  85. the _AppVirtualPath is not "/" (to match MS runtime -- does
  86. anyone know why it was returning String.Empty?)
  87. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  88. * AppDomainFactory.cs: hacks to work-around our buggy System.Uri.
  89. 2003-03-17 George Kodinov <[email protected]>
  90. * AppDomainFactory.cs: place the correct full path for Web.config when
  91. in Application host
  92. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  93. * AppDomainFactory.cs: Web.config takes precedence over web.config.
  94. * ApplicationHost.cs: removed hacks to work around an old bug.
  95. 2003-02-04 Tim Haynes <[email protected]>
  96. * SimpleWorkerRequest.cs: changed the initialised values of
  97. _App{Install,Virtual}Path variables
  98. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  99. * System.Web.Hosting/SimpleWorkerRequest.cs: we are now able to compile
  100. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  101. 2002-09-26 Gonzalo Paniagua Javier <[email protected]>
  102. * ApplicationHost.cs:
  103. * SimpleWorkerRequest.cs: workaround for bug #31245.
  104. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  105. * ApplicationHost.cs: little fixes.
  106. 2002-08-20 Gonzalo Paniagua Javier <[email protected]>
  107. * ApplicationHost.cs: use Assembly instead of Module.
  108. 2002-08-05 Gonzalo Paniagua Javier <[email protected]>
  109. * AppDomainFactory.cs: implemented.
  110. * ApplicationHost.cs: implemented.
  111. * SimpleWorkerRequest.cs: a few little fixes and reformatted. It's now
  112. fully implemented.
  113. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  114. * AppDomainFactory.cs:
  115. * IAppDomainFactory.cs:
  116. * IISAPIRuntime.cs:
  117. * ISAPIRuntime.cs: make them compile.
  118. 2002-04-10 Patrik Torstensson <[email protected]>
  119. * ApplicationHost.cs: Test implementation to support testing.
  120. * SimpleWorkerRequest.cs: Rewrite and a almost full implementation.
  121. 2001-08-30 Bob Smith <[email protected]>
  122. * AppDomainFactory.cs: Stubbed.
  123. * ApplicationHost.cs: Stubbed.
  124. * IAppDomainFactory.cs: Stubbed.
  125. * IISAPIRuntime.cs: Stubbed.
  126. * ISAPIRuntime.cs: Implemented.
  127. * SimpleWorkerRequest.cs: Implemented.