ChangeLog 9.8 KB

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