ChangeLog 11 KB

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