ChangeLog 10 KB

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