ChangeLog 9.0 KB

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