ChangeLog 8.1 KB

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