ChangeLog 11 KB

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