ChangeLog 10 KB

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