ChangeLog 10 KB

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