ChangeLog 7.3 KB

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